diff --git a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/TranscoderServiceClient.java b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/TranscoderServiceClient.java index 88ec3306..7c70f041 100644 --- a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/TranscoderServiceClient.java +++ b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/TranscoderServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2021 Google LLC + * Copyright 2022 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -46,6 +46,8 @@ * calls that map to API methods. Sample code to get started: * *
{@code
+ * // This snippet has been automatically generated for illustrative purposes only.
+ * // It may require modifications to work in your environment.
  * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
  *   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
  *   Job job = Job.newBuilder().build();
@@ -83,6 +85,8 @@
  * 

To customize credentials: * *

{@code
+ * // This snippet has been automatically generated for illustrative purposes only.
+ * // It may require modifications to work in your environment.
  * TranscoderServiceSettings transcoderServiceSettings =
  *     TranscoderServiceSettings.newBuilder()
  *         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
@@ -94,6 +98,8 @@
  * 

To customize the endpoint: * *

{@code
+ * // This snippet has been automatically generated for illustrative purposes only.
+ * // It may require modifications to work in your environment.
  * TranscoderServiceSettings transcoderServiceSettings =
  *     TranscoderServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
  * TranscoderServiceClient transcoderServiceClient =
@@ -162,6 +168,8 @@ public TranscoderServiceStub getStub() {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
    *   Job job = Job.newBuilder().build();
@@ -190,6 +198,8 @@ public final Job createJob(LocationName parent, Job job) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
    *   Job job = Job.newBuilder().build();
@@ -214,6 +224,8 @@ public final Job createJob(String parent, Job job) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   CreateJobRequest request =
    *       CreateJobRequest.newBuilder()
@@ -238,6 +250,8 @@ public final Job createJob(CreateJobRequest request) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   CreateJobRequest request =
    *       CreateJobRequest.newBuilder()
@@ -261,6 +275,8 @@ public final UnaryCallable createJobCallable() {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
    *   for (Job element : transcoderServiceClient.listJobs(parent).iterateAll()) {
@@ -285,6 +301,8 @@ public final ListJobsPagedResponse listJobs(LocationName parent) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
    *   for (Job element : transcoderServiceClient.listJobs(parent).iterateAll()) {
@@ -308,6 +326,8 @@ public final ListJobsPagedResponse listJobs(String parent) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   ListJobsRequest request =
    *       ListJobsRequest.newBuilder()
@@ -337,6 +357,8 @@ public final ListJobsPagedResponse listJobs(ListJobsRequest request) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   ListJobsRequest request =
    *       ListJobsRequest.newBuilder()
@@ -365,6 +387,8 @@ public final UnaryCallable listJobsPaged
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   ListJobsRequest request =
    *       ListJobsRequest.newBuilder()
@@ -400,6 +424,8 @@ public final UnaryCallable listJobsCallable()
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   JobName name = JobName.of("[PROJECT]", "[LOCATION]", "[JOB]");
    *   Job response = transcoderServiceClient.getJob(name);
@@ -423,6 +449,8 @@ public final Job getJob(JobName name) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   String name = JobName.of("[PROJECT]", "[LOCATION]", "[JOB]").toString();
    *   Job response = transcoderServiceClient.getJob(name);
@@ -445,6 +473,8 @@ public final Job getJob(String name) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   GetJobRequest request =
    *       GetJobRequest.newBuilder()
@@ -468,6 +498,8 @@ public final Job getJob(GetJobRequest request) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   GetJobRequest request =
    *       GetJobRequest.newBuilder()
@@ -490,6 +522,8 @@ public final UnaryCallable getJobCallable() {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   JobName name = JobName.of("[PROJECT]", "[LOCATION]", "[JOB]");
    *   transcoderServiceClient.deleteJob(name);
@@ -513,6 +547,8 @@ public final void deleteJob(JobName name) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   String name = JobName.of("[PROJECT]", "[LOCATION]", "[JOB]").toString();
    *   transcoderServiceClient.deleteJob(name);
@@ -535,6 +571,8 @@ public final void deleteJob(String name) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   DeleteJobRequest request =
    *       DeleteJobRequest.newBuilder()
@@ -559,6 +597,8 @@ public final void deleteJob(DeleteJobRequest request) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   DeleteJobRequest request =
    *       DeleteJobRequest.newBuilder()
@@ -582,6 +622,8 @@ public final UnaryCallable deleteJobCallable() {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
    *   JobTemplate jobTemplate = JobTemplate.newBuilder().build();
@@ -618,6 +660,8 @@ public final JobTemplate createJobTemplate(
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
    *   JobTemplate jobTemplate = JobTemplate.newBuilder().build();
@@ -654,6 +698,8 @@ public final JobTemplate createJobTemplate(
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   CreateJobTemplateRequest request =
    *       CreateJobTemplateRequest.newBuilder()
@@ -679,6 +725,8 @@ public final JobTemplate createJobTemplate(CreateJobTemplateRequest request) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   CreateJobTemplateRequest request =
    *       CreateJobTemplateRequest.newBuilder()
@@ -704,6 +752,8 @@ public final UnaryCallable createJobTempl
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
    *   for (JobTemplate element : transcoderServiceClient.listJobTemplates(parent).iterateAll()) {
@@ -731,6 +781,8 @@ public final ListJobTemplatesPagedResponse listJobTemplates(LocationName parent)
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
    *   for (JobTemplate element : transcoderServiceClient.listJobTemplates(parent).iterateAll()) {
@@ -756,6 +808,8 @@ public final ListJobTemplatesPagedResponse listJobTemplates(String parent) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   ListJobTemplatesRequest request =
    *       ListJobTemplatesRequest.newBuilder()
@@ -785,6 +839,8 @@ public final ListJobTemplatesPagedResponse listJobTemplates(ListJobTemplatesRequ
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   ListJobTemplatesRequest request =
    *       ListJobTemplatesRequest.newBuilder()
@@ -815,6 +871,8 @@ public final ListJobTemplatesPagedResponse listJobTemplates(ListJobTemplatesRequ
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   ListJobTemplatesRequest request =
    *       ListJobTemplatesRequest.newBuilder()
@@ -852,6 +910,8 @@ public final ListJobTemplatesPagedResponse listJobTemplates(ListJobTemplatesRequ
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   JobTemplateName name = JobTemplateName.of("[PROJECT]", "[LOCATION]", "[JOB_TEMPLATE]");
    *   JobTemplate response = transcoderServiceClient.getJobTemplate(name);
@@ -875,6 +935,8 @@ public final JobTemplate getJobTemplate(JobTemplateName name) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   String name = JobTemplateName.of("[PROJECT]", "[LOCATION]", "[JOB_TEMPLATE]").toString();
    *   JobTemplate response = transcoderServiceClient.getJobTemplate(name);
@@ -897,6 +959,8 @@ public final JobTemplate getJobTemplate(String name) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   GetJobTemplateRequest request =
    *       GetJobTemplateRequest.newBuilder()
@@ -920,6 +984,8 @@ public final JobTemplate getJobTemplate(GetJobTemplateRequest request) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   GetJobTemplateRequest request =
    *       GetJobTemplateRequest.newBuilder()
@@ -943,6 +1009,8 @@ public final UnaryCallable getJobTemplateCal
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   JobTemplateName name = JobTemplateName.of("[PROJECT]", "[LOCATION]", "[JOB_TEMPLATE]");
    *   transcoderServiceClient.deleteJobTemplate(name);
@@ -968,6 +1036,8 @@ public final void deleteJobTemplate(JobTemplateName name) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   String name = JobTemplateName.of("[PROJECT]", "[LOCATION]", "[JOB_TEMPLATE]").toString();
    *   transcoderServiceClient.deleteJobTemplate(name);
@@ -990,6 +1060,8 @@ public final void deleteJobTemplate(String name) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   DeleteJobTemplateRequest request =
    *       DeleteJobTemplateRequest.newBuilder()
@@ -1014,6 +1086,8 @@ public final void deleteJobTemplate(DeleteJobTemplateRequest request) {
    * 

Sample code: * *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
    * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
    *   DeleteJobTemplateRequest request =
    *       DeleteJobTemplateRequest.newBuilder()
diff --git a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/TranscoderServiceSettings.java b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/TranscoderServiceSettings.java
index eb6546c1..341c0958 100644
--- a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/TranscoderServiceSettings.java
+++ b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/TranscoderServiceSettings.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -54,6 +54,8 @@
  * 

For example, to set the total timeout of createJob to 30 seconds: * *

{@code
+ * // This snippet has been automatically generated for illustrative purposes only.
+ * // It may require modifications to work in your environment.
  * TranscoderServiceSettings.Builder transcoderServiceSettingsBuilder =
  *     TranscoderServiceSettings.newBuilder();
  * transcoderServiceSettingsBuilder
diff --git a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/package-info.java b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/package-info.java
index fd437b33..0f527c44 100644
--- a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/package-info.java
+++ b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/package-info.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 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,6 +28,8 @@
  * 

Sample for TranscoderServiceClient: * *

{@code
+ * // This snippet has been automatically generated for illustrative purposes only.
+ * // It may require modifications to work in your environment.
  * try (TranscoderServiceClient transcoderServiceClient = TranscoderServiceClient.create()) {
  *   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
  *   Job job = Job.newBuilder().build();
diff --git a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/GrpcTranscoderServiceCallableFactory.java b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/GrpcTranscoderServiceCallableFactory.java
index 4681f28c..4a375db6 100644
--- a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/GrpcTranscoderServiceCallableFactory.java
+++ b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/GrpcTranscoderServiceCallableFactory.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/GrpcTranscoderServiceStub.java b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/GrpcTranscoderServiceStub.java
index 780124b8..e38d7fc4 100644
--- a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/GrpcTranscoderServiceStub.java
+++ b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/GrpcTranscoderServiceStub.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/TranscoderServiceStub.java b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/TranscoderServiceStub.java
index ae96e04c..45d9e32f 100644
--- a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/TranscoderServiceStub.java
+++ b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/TranscoderServiceStub.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/TranscoderServiceStubSettings.java b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/TranscoderServiceStubSettings.java
index d372681e..1b5d8ffe 100644
--- a/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/TranscoderServiceStubSettings.java
+++ b/google-cloud-video-transcoder/src/main/java/com/google/cloud/video/transcoder/v1/stub/TranscoderServiceStubSettings.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 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,8 @@
  * 

For example, to set the total timeout of createJob to 30 seconds: * *

{@code
+ * // This snippet has been automatically generated for illustrative purposes only.
+ * // It may require modifications to work in your environment.
  * TranscoderServiceStubSettings.Builder transcoderServiceSettingsBuilder =
  *     TranscoderServiceStubSettings.newBuilder();
  * transcoderServiceSettingsBuilder
diff --git a/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/MockTranscoderService.java b/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/MockTranscoderService.java
index 324fd18a..3ffdb3d5 100644
--- a/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/MockTranscoderService.java
+++ b/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/MockTranscoderService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/MockTranscoderServiceImpl.java b/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/MockTranscoderServiceImpl.java
index 56d8ce2b..3e894acd 100644
--- a/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/MockTranscoderServiceImpl.java
+++ b/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/MockTranscoderServiceImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/TranscoderServiceClientTest.java b/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/TranscoderServiceClientTest.java
index bb3eb224..140b10b2 100644
--- a/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/TranscoderServiceClientTest.java
+++ b/google-cloud-video-transcoder/src/test/java/com/google/cloud/video/transcoder/v1/TranscoderServiceClientTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/JobName.java b/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/JobName.java
index 47a2b55e..5b8ba8a0 100644
--- a/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/JobName.java
+++ b/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/JobName.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/JobTemplateName.java b/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/JobTemplateName.java
index c43c5b7b..45a1dc58 100644
--- a/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/JobTemplateName.java
+++ b/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/JobTemplateName.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/LocationName.java b/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/LocationName.java
index dce528d7..12617959 100644
--- a/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/LocationName.java
+++ b/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/LocationName.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021 Google LLC
+ * Copyright 2022 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.