Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Commit 562af02

Browse files
yoshi-automationchingor13
authored andcommitted
chore(regen): updated license year for generated files (#45)
1 parent a7f245b commit 562af02

21 files changed

+25
-680
lines changed

google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1/CloudSchedulerClient.java

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -303,7 +303,6 @@ public final UnaryCallable<ListJobsRequest, ListJobsResponse> listJobsCallable()
303303
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
304304
*/
305305
public final Job getJob(JobName name) {
306-
307306
GetJobRequest request =
308307
GetJobRequest.newBuilder().setName(name == null ? null : name.toString()).build();
309308
return getJob(request);
@@ -327,7 +326,6 @@ public final Job getJob(JobName name) {
327326
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
328327
*/
329328
public final Job getJob(String name) {
330-
331329
GetJobRequest request = GetJobRequest.newBuilder().setName(name).build();
332330
return getJob(request);
333331
}
@@ -401,7 +399,6 @@ public final UnaryCallable<GetJobRequest, Job> getJobCallable() {
401399
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
402400
*/
403401
public final Job createJob(LocationName parent, Job job) {
404-
405402
CreateJobRequest request =
406403
CreateJobRequest.newBuilder()
407404
.setParent(parent == null ? null : parent.toString())
@@ -434,7 +431,6 @@ public final Job createJob(LocationName parent, Job job) {
434431
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
435432
*/
436433
public final Job createJob(String parent, Job job) {
437-
438434
CreateJobRequest request = CreateJobRequest.newBuilder().setParent(parent).setJob(job).build();
439435
return createJob(request);
440436
}
@@ -518,7 +514,6 @@ public final UnaryCallable<CreateJobRequest, Job> createJobCallable() {
518514
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
519515
*/
520516
public final Job updateJob(Job job, FieldMask updateMask) {
521-
522517
UpdateJobRequest request =
523518
UpdateJobRequest.newBuilder().setJob(job).setUpdateMask(updateMask).build();
524519
return updateJob(request);
@@ -607,7 +602,6 @@ public final UnaryCallable<UpdateJobRequest, Job> updateJobCallable() {
607602
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
608603
*/
609604
public final void deleteJob(JobName name) {
610-
611605
DeleteJobRequest request =
612606
DeleteJobRequest.newBuilder().setName(name == null ? null : name.toString()).build();
613607
deleteJob(request);
@@ -631,7 +625,6 @@ public final void deleteJob(JobName name) {
631625
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
632626
*/
633627
public final void deleteJob(String name) {
634-
635628
DeleteJobRequest request = DeleteJobRequest.newBuilder().setName(name).build();
636629
deleteJob(request);
637630
}
@@ -705,7 +698,6 @@ public final UnaryCallable<DeleteJobRequest, Empty> deleteJobCallable() {
705698
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
706699
*/
707700
public final Job pauseJob(JobName name) {
708-
709701
PauseJobRequest request =
710702
PauseJobRequest.newBuilder().setName(name == null ? null : name.toString()).build();
711703
return pauseJob(request);
@@ -735,7 +727,6 @@ public final Job pauseJob(JobName name) {
735727
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
736728
*/
737729
public final Job pauseJob(String name) {
738-
739730
PauseJobRequest request = PauseJobRequest.newBuilder().setName(name).build();
740731
return pauseJob(request);
741732
}
@@ -821,7 +812,6 @@ public final UnaryCallable<PauseJobRequest, Job> pauseJobCallable() {
821812
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
822813
*/
823814
public final Job resumeJob(JobName name) {
824-
825815
ResumeJobRequest request =
826816
ResumeJobRequest.newBuilder().setName(name == null ? null : name.toString()).build();
827817
return resumeJob(request);
@@ -851,7 +841,6 @@ public final Job resumeJob(JobName name) {
851841
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
852842
*/
853843
public final Job resumeJob(String name) {
854-
855844
ResumeJobRequest request = ResumeJobRequest.newBuilder().setName(name).build();
856845
return resumeJob(request);
857846
}
@@ -934,7 +923,6 @@ public final UnaryCallable<ResumeJobRequest, Job> resumeJobCallable() {
934923
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
935924
*/
936925
public final Job runJob(JobName name) {
937-
938926
RunJobRequest request =
939927
RunJobRequest.newBuilder().setName(name == null ? null : name.toString()).build();
940928
return runJob(request);
@@ -961,7 +949,6 @@ public final Job runJob(JobName name) {
961949
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
962950
*/
963951
public final Job runJob(String name) {
964-
965952
RunJobRequest request = RunJobRequest.newBuilder().setName(name).build();
966953
return runJob(request);
967954
}

google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1/CloudSchedulerSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1/stub/CloudSchedulerStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1/stub/CloudSchedulerStubSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1/stub/GrpcCloudSchedulerCallableFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1/stub/GrpcCloudSchedulerStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1beta1/CloudSchedulerClient.java

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -303,7 +303,6 @@ public final UnaryCallable<ListJobsRequest, ListJobsResponse> listJobsCallable()
303303
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
304304
*/
305305
public final Job getJob(JobName name) {
306-
307306
GetJobRequest request =
308307
GetJobRequest.newBuilder().setName(name == null ? null : name.toString()).build();
309308
return getJob(request);
@@ -327,7 +326,6 @@ public final Job getJob(JobName name) {
327326
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
328327
*/
329328
public final Job getJob(String name) {
330-
331329
GetJobRequest request = GetJobRequest.newBuilder().setName(name).build();
332330
return getJob(request);
333331
}
@@ -401,7 +399,6 @@ public final UnaryCallable<GetJobRequest, Job> getJobCallable() {
401399
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
402400
*/
403401
public final Job createJob(LocationName parent, Job job) {
404-
405402
CreateJobRequest request =
406403
CreateJobRequest.newBuilder()
407404
.setParent(parent == null ? null : parent.toString())
@@ -434,7 +431,6 @@ public final Job createJob(LocationName parent, Job job) {
434431
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
435432
*/
436433
public final Job createJob(String parent, Job job) {
437-
438434
CreateJobRequest request = CreateJobRequest.newBuilder().setParent(parent).setJob(job).build();
439435
return createJob(request);
440436
}
@@ -518,7 +514,6 @@ public final UnaryCallable<CreateJobRequest, Job> createJobCallable() {
518514
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
519515
*/
520516
public final Job updateJob(Job job, FieldMask updateMask) {
521-
522517
UpdateJobRequest request =
523518
UpdateJobRequest.newBuilder().setJob(job).setUpdateMask(updateMask).build();
524519
return updateJob(request);
@@ -603,7 +598,6 @@ public final UnaryCallable<UpdateJobRequest, Job> updateJobCallable() {
603598
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
604599
*/
605600
public final void deleteJob(JobName name) {
606-
607601
DeleteJobRequest request =
608602
DeleteJobRequest.newBuilder().setName(name == null ? null : name.toString()).build();
609603
deleteJob(request);
@@ -627,7 +621,6 @@ public final void deleteJob(JobName name) {
627621
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
628622
*/
629623
public final void deleteJob(String name) {
630-
631624
DeleteJobRequest request = DeleteJobRequest.newBuilder().setName(name).build();
632625
deleteJob(request);
633626
}
@@ -701,7 +694,6 @@ public final UnaryCallable<DeleteJobRequest, Empty> deleteJobCallable() {
701694
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
702695
*/
703696
public final Job pauseJob(JobName name) {
704-
705697
PauseJobRequest request =
706698
PauseJobRequest.newBuilder().setName(name == null ? null : name.toString()).build();
707699
return pauseJob(request);
@@ -731,7 +723,6 @@ public final Job pauseJob(JobName name) {
731723
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
732724
*/
733725
public final Job pauseJob(String name) {
734-
735726
PauseJobRequest request = PauseJobRequest.newBuilder().setName(name).build();
736727
return pauseJob(request);
737728
}
@@ -817,7 +808,6 @@ public final UnaryCallable<PauseJobRequest, Job> pauseJobCallable() {
817808
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
818809
*/
819810
public final Job resumeJob(JobName name) {
820-
821811
ResumeJobRequest request =
822812
ResumeJobRequest.newBuilder().setName(name == null ? null : name.toString()).build();
823813
return resumeJob(request);
@@ -847,7 +837,6 @@ public final Job resumeJob(JobName name) {
847837
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
848838
*/
849839
public final Job resumeJob(String name) {
850-
851840
ResumeJobRequest request = ResumeJobRequest.newBuilder().setName(name).build();
852841
return resumeJob(request);
853842
}
@@ -930,7 +919,6 @@ public final UnaryCallable<ResumeJobRequest, Job> resumeJobCallable() {
930919
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
931920
*/
932921
public final Job runJob(JobName name) {
933-
934922
RunJobRequest request =
935923
RunJobRequest.newBuilder().setName(name == null ? null : name.toString()).build();
936924
return runJob(request);
@@ -957,7 +945,6 @@ public final Job runJob(JobName name) {
957945
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
958946
*/
959947
public final Job runJob(String name) {
960-
961948
RunJobRequest request = RunJobRequest.newBuilder().setName(name).build();
962949
return runJob(request);
963950
}

google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1beta1/CloudSchedulerSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1beta1/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)