From d0b16af008017492f9cab9beecf88b818b28dec3 Mon Sep 17 00:00:00 2001 From: shollyman Date: Fri, 28 Jun 2019 15:28:40 -0700 Subject: [PATCH 01/58] bigquery: reduce test flakiness when testing job cancellation. (#5592) BigQuery's cancellation mechanism is best-effort notification to the job server running cancellation. Depending on a timing factors, the cancellation can be ignored, arrive after job completion, or arrive in time to trigger state transition (which will yield an error). This change removes the expectation that cancelling a job won't yield an error, which is incorrect for the last case. --- .../test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/google-cloud-clients/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java b/google-cloud-clients/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java index f2feffbaad73..7ce38134d5a5 100644 --- a/google-cloud-clients/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java +++ b/google-cloud-clients/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java @@ -1451,7 +1451,6 @@ public void testCancelJob() throws InterruptedException, TimeoutException { Job remoteJob = bigquery.create(JobInfo.of(configuration)); assertTrue(remoteJob.cancel()); remoteJob = remoteJob.waitFor(); - assertNull(remoteJob.getStatus().getError()); } @Test From 90627893fcc9362cfdcee0948dd727892a383c9d Mon Sep 17 00:00:00 2001 From: Rahul Kesharwani <42969463+rahulKQL@users.noreply.github.com> Date: Mon, 1 Jul 2019 20:46:19 +0530 Subject: [PATCH 02/58] Fixes Query#toProto state change effect (#5621) This change address the hashcode change problem of Query after calling toProto. --- .../cloud/bigtable/data/v2/models/Query.java | 8 ++++-- .../bigtable/data/v2/models/QueryTest.java | 28 +++++++++++++++++++ 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/google-cloud-clients/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/Query.java b/google-cloud-clients/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/Query.java index 5288ee0109a2..2cbb6d6f370e 100644 --- a/google-cloud-clients/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/Query.java +++ b/google-cloud-clients/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/Query.java @@ -291,12 +291,15 @@ public boolean equals(Object o) { } Query query = (Query) o; return Objects.equal(tableId, query.tableId) - && Objects.equal(builder.build(), query.builder.build()); + && Objects.equal(builder.getRows(), query.builder.getRows()) + && Objects.equal(builder.getFilter(), query.builder.getFilter()) + && Objects.equal(builder.getRowsLimit(), query.builder.getRowsLimit()); } @Override public int hashCode() { - return Objects.hashCode(tableId, builder.build()); + return Objects.hashCode( + tableId, builder.getRows(), builder.getFilter(), builder.getRowsLimit()); } @Override @@ -308,6 +311,7 @@ public String toString() { .add("keys", request.getRows().getRowKeysList()) .add("ranges", request.getRows().getRowRangesList()) .add("filter", request.getFilter()) + .add("limit", request.getRowsLimit()) .toString(); } } diff --git a/google-cloud-clients/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/models/QueryTest.java b/google-cloud-clients/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/models/QueryTest.java index 857a90916d14..7cf424694337 100644 --- a/google-cloud-clients/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/models/QueryTest.java +++ b/google-cloud-clients/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/models/QueryTest.java @@ -258,4 +258,32 @@ public void testFromProtoWithEmptyTableId() { expect.expect(IllegalArgumentException.class); expect.expectMessage("Invalid table name:"); } + + @Test + public void testEquality() { + Query request = + Query.create(TABLE_ID) + .rowKey("row-key") + .range("a", "z") + .limit(3) + .filter(FILTERS.family().exactMatch("test")); + + // Query#toProto should not change the Query instance state + request.toProto(requestContext); + assertThat(request) + .isEqualTo( + Query.create(TABLE_ID) + .rowKey("row-key") + .range("a", "z") + .limit(3) + .filter(FILTERS.family().exactMatch("test"))); + + assertThat(Query.create(TABLE_ID).rowKey("row-key")) + .isNotEqualTo(Query.create(TABLE_ID).rowKey("row-key-1")); + assertThat(Query.create(TABLE_ID).range("a", "z")) + .isNotEqualTo(Query.create(TABLE_ID).range("a", "s")); + assertThat(Query.create(TABLE_ID).filter(FILTERS.family().regex("test"))) + .isNotEqualTo(Query.create(TABLE_ID).filter(FILTERS.family().exactMatch("test-one"))); + assertThat(Query.create(TABLE_ID).limit(4)).isNotEqualTo(Query.create(TABLE_ID).limit(5)); + } } From b18e396c61444d2571f292286d0769a55e4bddb3 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 1 Jul 2019 21:24:43 +0530 Subject: [PATCH 03/58] Cleanup unused dependencies in google-cloud-contrib (#5616) * cleanup unused dependency of contrib-google-cloud-logging-logback * cleanup unused dependency of contrib-google-cloud-nio-examples * cleanup unused dependency of contrib-google-cloud-notification * cleanup unused dependency of contrib-google-cloud-logging-logback * cleanup unused dependency of contrib-google-cloud-nio * cleanup unused dependency of contrib-google-cloud-notification --- .../google-cloud-logging-logback/pom.xml | 17 ++----- .../google-cloud-nio-examples/pom.xml | 8 +--- .../google-cloud-nio/pom.xml | 8 ---- .../google-cloud-notification/pom.xml | 44 ++----------------- 4 files changed, 7 insertions(+), 70 deletions(-) diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml index c84857181e27..4e955d2b7cc6 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml @@ -1,7 +1,7 @@ + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-logging-logback @@ -38,21 +38,10 @@ easymock test - - org.objenesis - objenesis - test - - - junit - junit - 4.12 - test - com.google.truth truth test - + \ No newline at end of file diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml index 75c34b48bfda..eb66dd639851 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml @@ -17,12 +17,6 @@ google-cloud-nio-examples - - - ${project.groupId} - google-cloud-storage - - @@ -34,4 +28,4 @@ - + \ No newline at end of file diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml index ab9a78375da1..24feecef5627 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml @@ -22,14 +22,6 @@ ${project.groupId} google-cloud-storage - - com.google.guava - guava - - - com.google.code.findbugs - jsr305 - javax.inject javax.inject diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml index 3ad549928944..e2f0d5379088 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml @@ -1,7 +1,7 @@ + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-notification 0.98.1-beta-SNAPSHOT @@ -21,10 +21,6 @@ google-cloud-notification - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-storage @@ -33,39 +29,10 @@ ${project.groupId} google-cloud-pubsub - - ${project.groupId} - google-cloud-core-grpc - - - com.google.api - gax-grpc - - - com.google.api - api-common - com.google.api.grpc proto-google-cloud-pubsub-v1 - - com.google.api.grpc - grpc-google-cloud-pubsub-v1 - test - - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -73,10 +40,5 @@ junit test - - org.mockito - mockito-all - test - - + \ No newline at end of file From 075fd217b4610b58f1853697871c4b60e577e68d Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 1 Jul 2019 21:25:30 +0530 Subject: [PATCH 04/58] Container Analysis : Cleanup unused dependencies (#5615) * cleanup unused dependency of google-cloud-containeranalysis * remove unused dependency of containeranalysis --- .../google-cloud-containeranalysis/pom.xml | 22 +++---------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/google-cloud-clients/google-cloud-containeranalysis/pom.xml b/google-cloud-clients/google-cloud-containeranalysis/pom.xml index 4e95da195eee..e00ab766f709 100644 --- a/google-cloud-clients/google-cloud-containeranalysis/pom.xml +++ b/google-cloud-clients/google-cloud-containeranalysis/pom.xml @@ -1,7 +1,7 @@ + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-containeranalysis 0.98.1-beta-SNAPSHOT @@ -21,10 +21,6 @@ google-cloud-containeranalysis - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -41,18 +37,6 @@ io.grafeas grafeas - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -112,4 +96,4 @@ - + \ No newline at end of file From c72891a8d89ce91a462f69acb4c888700e081c60 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 1 Jul 2019 21:26:02 +0530 Subject: [PATCH 05/58] Container: Cleanup unused dependencies (#5614) * cleanup unused dependency of google-cloud-container * remove unused dependency of container --- .../google-cloud-container/pom.xml | 38 +------------------ 1 file changed, 1 insertion(+), 37 deletions(-) diff --git a/google-cloud-clients/google-cloud-container/pom.xml b/google-cloud-clients/google-cloud-container/pom.xml index 9c5d986c42fb..6bbc7f6ea306 100644 --- a/google-cloud-clients/google-cloud-container/pom.xml +++ b/google-cloud-clients/google-cloud-container/pom.xml @@ -19,10 +19,6 @@ ${project.version} - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -35,18 +31,6 @@ com.google.api.grpc grpc-google-cloud-container-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -54,26 +38,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - - - com.google.truth - truth - test - - - com.google.api.grpc - grpc-google-iam-v1 - test - com.google.api @@ -108,4 +72,4 @@ - + \ No newline at end of file From 0f8f524059d822a5d0d1de739e65fc1287b09f40 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 1 Jul 2019 21:48:37 +0530 Subject: [PATCH 06/58] BigQuery DataTransfer: Cleanup unused dependencies (#5611) * cleanup unused dependency of google-cloud-bigquerydatatransfer * remove unsed dependency from bigquery datatransfer --- .../google-cloud-bigquerydatatransfer/pom.xml | 29 +------------------ 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml b/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml index e3cfa1b5b1e8..6d04d6726295 100644 --- a/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml +++ b/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml @@ -19,10 +19,6 @@ ${project.version} - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -35,35 +31,12 @@ com.google.api.grpc grpc-google-cloud-bigquerydatatransfer-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - - junit junit test - - org.objenesis - objenesis - test - - - com.google.truth - truth - test - com.google.api @@ -98,4 +71,4 @@ - + \ No newline at end of file From d3a6732eba058a6b1c70a9736278be5b3ed904c8 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 1 Jul 2019 21:51:11 +0530 Subject: [PATCH 07/58] BigQuery Storage: Cleanup unused dependencies (#5612) * cleanup unused dependency of google-cloud-bigquerystorage * remove unsed dependency from bigquerystorage * remove whitespace --- .../google-cloud-bigquerystorage/pom.xml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/google-cloud-clients/google-cloud-bigquerystorage/pom.xml b/google-cloud-clients/google-cloud-bigquerystorage/pom.xml index 6e73f4b1a86a..df5958024510 100644 --- a/google-cloud-clients/google-cloud-bigquerystorage/pom.xml +++ b/google-cloud-clients/google-cloud-bigquerystorage/pom.xml @@ -7,7 +7,7 @@ Google Cloud Bigquery Storage https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-bigquerystorage - BigQuery Storage API provides fast access to BigQuery table data. + BigQuery Storage API provides fast access to BigQuery table data. com.google.cloud @@ -18,14 +18,6 @@ google-cloud-bigquerystorage - - ${project.groupId} - google-cloud-core - - - ${project.groupId} - google-cloud-core-grpc - com.google.api.grpc proto-google-cloud-bigquerystorage-v1beta1 @@ -36,11 +28,6 @@ - - com.google.api - gax-grpc - test - com.google.cloud google-cloud-bigquery @@ -115,4 +102,4 @@ - + \ No newline at end of file From 3f35385909a27b074aafd9e33ee74d0c17d317fa Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 1 Jul 2019 21:51:43 +0530 Subject: [PATCH 08/58] Bigtable: Cleanup unused dependencies (#5613) * cleanup unused dependency of google-cloud-bigtable * remove unsed depenedency of bigtable --- .../google-cloud-bigtable/pom.xml | 24 +------------------ 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/google-cloud-clients/google-cloud-bigtable/pom.xml b/google-cloud-clients/google-cloud-bigtable/pom.xml index 859a71b959e5..8fc2cb4e9200 100644 --- a/google-cloud-clients/google-cloud-bigtable/pom.xml +++ b/google-cloud-clients/google-cloud-bigtable/pom.xml @@ -18,10 +18,6 @@ google-cloud-bigtable - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -34,19 +30,6 @@ com.google.api.grpc proto-google-cloud-bigtable-admin-v2 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - - com.google.auto.value auto-value @@ -64,11 +47,6 @@ grpc-google-cloud-bigtable-admin-v2 test - - junit - junit - test - org.mockito mockito-all @@ -207,4 +185,4 @@ - + \ No newline at end of file From 3f94ea6efa332dbe16808b9ca54a4941a323b085 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 1 Jul 2019 22:32:46 +0530 Subject: [PATCH 09/58] Datalabeling : Cleanup dependency (#5620) * cleanup unused dependency of contrib-google-cloud-datalabeling * remove unused dependency of datalabeling * Update pom.xml --- .../google-cloud-datalabeling/pom.xml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/google-cloud-clients/google-cloud-datalabeling/pom.xml b/google-cloud-clients/google-cloud-datalabeling/pom.xml index 2a6795354048..095fb9d4b960 100644 --- a/google-cloud-clients/google-cloud-datalabeling/pom.xml +++ b/google-cloud-clients/google-cloud-datalabeling/pom.xml @@ -30,18 +30,6 @@ com.google.api.grpc grpc-google-cloud-datalabeling-v1beta1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - From a2223d53855ccf9176f7064ac3ebf623a763a47c Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 1 Jul 2019 22:32:57 +0530 Subject: [PATCH 10/58] Datacatalog : Cleanup dependency (#5619) * cleanup unused dependency of contrib-google-cloud-datacatalog * remove unused dependency of datacatelog * Update pom.xml --- .../google-cloud-datacatalog/pom.xml | 37 ------------------- 1 file changed, 37 deletions(-) diff --git a/google-cloud-clients/google-cloud-datacatalog/pom.xml b/google-cloud-clients/google-cloud-datacatalog/pom.xml index 3b3a7dcebfb1..d68ffaeaad29 100644 --- a/google-cloud-clients/google-cloud-datacatalog/pom.xml +++ b/google-cloud-clients/google-cloud-datacatalog/pom.xml @@ -18,10 +18,6 @@ google-cloud-datacatalog - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -34,49 +30,16 @@ com.google.api.grpc grpc-google-cloud-datacatalog-v1beta1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - - - ${project.groupId} - google-cloud-core - test-jar - test - junit junit test - - org.easymock - easymock - test - org.objenesis objenesis test - - com.google.truth - truth - test - - - com.google.api.grpc - grpc-google-iam-v1 - test - com.google.api gax-grpc From 397ea968baf7cf16acaaeef2aa2c544fc6c0d6fc Mon Sep 17 00:00:00 2001 From: Jeff Ching Date: Mon, 1 Jul 2019 11:11:39 -0700 Subject: [PATCH 11/58] Add missing integration test configuration (#5623) * Add integration test config for all remaining clients. These are added regardless of whether or not the client actually contains any integration tests yet. * Include smoke tests in integration test runs * If specifying includes for failsafe, we must specify all patterns --- .kokoro/continuous/asset-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/automl-it.cfg | 27 +++++++++++++++++++ .../continuous/bigquerydatatransfer-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/containeranalysis-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/datacatalog-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/datalabeling-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/dialogflow-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/dlp-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/iamcredentials-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/os-login-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/phishingprotection-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/recaptchaenterprise-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/redis-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/resourcemanager-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/scheduler-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/securitycenter-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/talent-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/tasks-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/webrisk-it.cfg | 27 +++++++++++++++++++ .kokoro/continuous/websecurityscanner-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/asset-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/automl-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/bigquerydatatransfer-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/containeranalysis-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/datacatalog-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/datalabeling-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/dialogflow-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/dlp-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/iamcredentials-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/os-login-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/phishingprotection-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/recaptchaenterprise-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/redis-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/resourcemanager-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/scheduler-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/securitycenter-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/talent-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/tasks-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/webrisk-it.cfg | 27 +++++++++++++++++++ .kokoro/nightly/websecurityscanner-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/asset-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/automl-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/bigquerydatatransfer-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/containeranalysis-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/datacatalog-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/datalabeling-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/dialogflow-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/dlp-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/ebrisk-it.cfg | 0 .kokoro/presubmit/ebsecurityscanner-it.cfg | 0 .kokoro/presubmit/iamcredentials-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/os-login-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/phishingprotection-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/recaptchaenterprise-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/redis-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/resourcemanager-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/scheduler-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/securitycenter-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/talent-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/tasks-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/webrisk-it.cfg | 27 +++++++++++++++++++ .kokoro/presubmit/websecurityscanner-it.cfg | 27 +++++++++++++++++++ google-cloud-clients/pom.xml | 5 +++- 63 files changed, 1624 insertions(+), 1 deletion(-) create mode 100644 .kokoro/continuous/asset-it.cfg create mode 100644 .kokoro/continuous/automl-it.cfg create mode 100644 .kokoro/continuous/bigquerydatatransfer-it.cfg create mode 100644 .kokoro/continuous/containeranalysis-it.cfg create mode 100644 .kokoro/continuous/datacatalog-it.cfg create mode 100644 .kokoro/continuous/datalabeling-it.cfg create mode 100644 .kokoro/continuous/dialogflow-it.cfg create mode 100644 .kokoro/continuous/dlp-it.cfg create mode 100644 .kokoro/continuous/iamcredentials-it.cfg create mode 100644 .kokoro/continuous/os-login-it.cfg create mode 100644 .kokoro/continuous/phishingprotection-it.cfg create mode 100644 .kokoro/continuous/recaptchaenterprise-it.cfg create mode 100644 .kokoro/continuous/redis-it.cfg create mode 100644 .kokoro/continuous/resourcemanager-it.cfg create mode 100644 .kokoro/continuous/scheduler-it.cfg create mode 100644 .kokoro/continuous/securitycenter-it.cfg create mode 100644 .kokoro/continuous/talent-it.cfg create mode 100644 .kokoro/continuous/tasks-it.cfg create mode 100644 .kokoro/continuous/webrisk-it.cfg create mode 100644 .kokoro/continuous/websecurityscanner-it.cfg create mode 100644 .kokoro/nightly/asset-it.cfg create mode 100644 .kokoro/nightly/automl-it.cfg create mode 100644 .kokoro/nightly/bigquerydatatransfer-it.cfg create mode 100644 .kokoro/nightly/containeranalysis-it.cfg create mode 100644 .kokoro/nightly/datacatalog-it.cfg create mode 100644 .kokoro/nightly/datalabeling-it.cfg create mode 100644 .kokoro/nightly/dialogflow-it.cfg create mode 100644 .kokoro/nightly/dlp-it.cfg create mode 100644 .kokoro/nightly/iamcredentials-it.cfg create mode 100644 .kokoro/nightly/os-login-it.cfg create mode 100644 .kokoro/nightly/phishingprotection-it.cfg create mode 100644 .kokoro/nightly/recaptchaenterprise-it.cfg create mode 100644 .kokoro/nightly/redis-it.cfg create mode 100644 .kokoro/nightly/resourcemanager-it.cfg create mode 100644 .kokoro/nightly/scheduler-it.cfg create mode 100644 .kokoro/nightly/securitycenter-it.cfg create mode 100644 .kokoro/nightly/talent-it.cfg create mode 100644 .kokoro/nightly/tasks-it.cfg create mode 100644 .kokoro/nightly/webrisk-it.cfg create mode 100644 .kokoro/nightly/websecurityscanner-it.cfg create mode 100644 .kokoro/presubmit/asset-it.cfg create mode 100644 .kokoro/presubmit/automl-it.cfg create mode 100644 .kokoro/presubmit/bigquerydatatransfer-it.cfg create mode 100644 .kokoro/presubmit/containeranalysis-it.cfg create mode 100644 .kokoro/presubmit/datacatalog-it.cfg create mode 100644 .kokoro/presubmit/datalabeling-it.cfg create mode 100644 .kokoro/presubmit/dialogflow-it.cfg create mode 100644 .kokoro/presubmit/dlp-it.cfg create mode 100644 .kokoro/presubmit/ebrisk-it.cfg create mode 100644 .kokoro/presubmit/ebsecurityscanner-it.cfg create mode 100644 .kokoro/presubmit/iamcredentials-it.cfg create mode 100644 .kokoro/presubmit/os-login-it.cfg create mode 100644 .kokoro/presubmit/phishingprotection-it.cfg create mode 100644 .kokoro/presubmit/recaptchaenterprise-it.cfg create mode 100644 .kokoro/presubmit/redis-it.cfg create mode 100644 .kokoro/presubmit/resourcemanager-it.cfg create mode 100644 .kokoro/presubmit/scheduler-it.cfg create mode 100644 .kokoro/presubmit/securitycenter-it.cfg create mode 100644 .kokoro/presubmit/talent-it.cfg create mode 100644 .kokoro/presubmit/tasks-it.cfg create mode 100644 .kokoro/presubmit/webrisk-it.cfg create mode 100644 .kokoro/presubmit/websecurityscanner-it.cfg diff --git a/.kokoro/continuous/asset-it.cfg b/.kokoro/continuous/asset-it.cfg new file mode 100644 index 000000000000..d88a1a12a57d --- /dev/null +++ b/.kokoro/continuous/asset-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-asset" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/automl-it.cfg b/.kokoro/continuous/automl-it.cfg new file mode 100644 index 000000000000..a667d7ad92c4 --- /dev/null +++ b/.kokoro/continuous/automl-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-automl" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/bigquerydatatransfer-it.cfg b/.kokoro/continuous/bigquerydatatransfer-it.cfg new file mode 100644 index 000000000000..2c94526fea8d --- /dev/null +++ b/.kokoro/continuous/bigquerydatatransfer-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-bigquerydatatransfer" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/containeranalysis-it.cfg b/.kokoro/continuous/containeranalysis-it.cfg new file mode 100644 index 000000000000..4e31091ed0d0 --- /dev/null +++ b/.kokoro/continuous/containeranalysis-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-containeranalysis" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/datacatalog-it.cfg b/.kokoro/continuous/datacatalog-it.cfg new file mode 100644 index 000000000000..a37a6822c390 --- /dev/null +++ b/.kokoro/continuous/datacatalog-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-datacatalog" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/datalabeling-it.cfg b/.kokoro/continuous/datalabeling-it.cfg new file mode 100644 index 000000000000..cb3d8506c979 --- /dev/null +++ b/.kokoro/continuous/datalabeling-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-datalabeling" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/dialogflow-it.cfg b/.kokoro/continuous/dialogflow-it.cfg new file mode 100644 index 000000000000..b05fa09f2366 --- /dev/null +++ b/.kokoro/continuous/dialogflow-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-dialogflow" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/dlp-it.cfg b/.kokoro/continuous/dlp-it.cfg new file mode 100644 index 000000000000..ba4500b16e6b --- /dev/null +++ b/.kokoro/continuous/dlp-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-dlp" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/iamcredentials-it.cfg b/.kokoro/continuous/iamcredentials-it.cfg new file mode 100644 index 000000000000..8dca77c683a3 --- /dev/null +++ b/.kokoro/continuous/iamcredentials-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-iamcredentials" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/os-login-it.cfg b/.kokoro/continuous/os-login-it.cfg new file mode 100644 index 000000000000..ebab3f5f6110 --- /dev/null +++ b/.kokoro/continuous/os-login-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-os-login" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/phishingprotection-it.cfg b/.kokoro/continuous/phishingprotection-it.cfg new file mode 100644 index 000000000000..82a0b49cf345 --- /dev/null +++ b/.kokoro/continuous/phishingprotection-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-phishingprotection" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/recaptchaenterprise-it.cfg b/.kokoro/continuous/recaptchaenterprise-it.cfg new file mode 100644 index 000000000000..6d217f195a63 --- /dev/null +++ b/.kokoro/continuous/recaptchaenterprise-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-recaptchaenterprise" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/redis-it.cfg b/.kokoro/continuous/redis-it.cfg new file mode 100644 index 000000000000..3575005db217 --- /dev/null +++ b/.kokoro/continuous/redis-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-redis" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/resourcemanager-it.cfg b/.kokoro/continuous/resourcemanager-it.cfg new file mode 100644 index 000000000000..5352fe60b5a4 --- /dev/null +++ b/.kokoro/continuous/resourcemanager-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-resourcemanager" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/scheduler-it.cfg b/.kokoro/continuous/scheduler-it.cfg new file mode 100644 index 000000000000..25a022aa6160 --- /dev/null +++ b/.kokoro/continuous/scheduler-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-scheduler" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/securitycenter-it.cfg b/.kokoro/continuous/securitycenter-it.cfg new file mode 100644 index 000000000000..ad9dbd6b11aa --- /dev/null +++ b/.kokoro/continuous/securitycenter-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-securitycenter" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/talent-it.cfg b/.kokoro/continuous/talent-it.cfg new file mode 100644 index 000000000000..73d0c482d74d --- /dev/null +++ b/.kokoro/continuous/talent-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-talent" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/tasks-it.cfg b/.kokoro/continuous/tasks-it.cfg new file mode 100644 index 000000000000..e38bac680709 --- /dev/null +++ b/.kokoro/continuous/tasks-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-tasks" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/webrisk-it.cfg b/.kokoro/continuous/webrisk-it.cfg new file mode 100644 index 000000000000..11e6bd3480d6 --- /dev/null +++ b/.kokoro/continuous/webrisk-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-webrisk" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/continuous/websecurityscanner-it.cfg b/.kokoro/continuous/websecurityscanner-it.cfg new file mode 100644 index 000000000000..274de012bc58 --- /dev/null +++ b/.kokoro/continuous/websecurityscanner-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-websecurityscanner" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/asset-it.cfg b/.kokoro/nightly/asset-it.cfg new file mode 100644 index 000000000000..d88a1a12a57d --- /dev/null +++ b/.kokoro/nightly/asset-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-asset" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/automl-it.cfg b/.kokoro/nightly/automl-it.cfg new file mode 100644 index 000000000000..a667d7ad92c4 --- /dev/null +++ b/.kokoro/nightly/automl-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-automl" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/bigquerydatatransfer-it.cfg b/.kokoro/nightly/bigquerydatatransfer-it.cfg new file mode 100644 index 000000000000..2c94526fea8d --- /dev/null +++ b/.kokoro/nightly/bigquerydatatransfer-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-bigquerydatatransfer" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/containeranalysis-it.cfg b/.kokoro/nightly/containeranalysis-it.cfg new file mode 100644 index 000000000000..4e31091ed0d0 --- /dev/null +++ b/.kokoro/nightly/containeranalysis-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-containeranalysis" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/datacatalog-it.cfg b/.kokoro/nightly/datacatalog-it.cfg new file mode 100644 index 000000000000..a37a6822c390 --- /dev/null +++ b/.kokoro/nightly/datacatalog-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-datacatalog" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/datalabeling-it.cfg b/.kokoro/nightly/datalabeling-it.cfg new file mode 100644 index 000000000000..cb3d8506c979 --- /dev/null +++ b/.kokoro/nightly/datalabeling-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-datalabeling" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/dialogflow-it.cfg b/.kokoro/nightly/dialogflow-it.cfg new file mode 100644 index 000000000000..b05fa09f2366 --- /dev/null +++ b/.kokoro/nightly/dialogflow-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-dialogflow" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/dlp-it.cfg b/.kokoro/nightly/dlp-it.cfg new file mode 100644 index 000000000000..ba4500b16e6b --- /dev/null +++ b/.kokoro/nightly/dlp-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-dlp" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/iamcredentials-it.cfg b/.kokoro/nightly/iamcredentials-it.cfg new file mode 100644 index 000000000000..8dca77c683a3 --- /dev/null +++ b/.kokoro/nightly/iamcredentials-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-iamcredentials" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/os-login-it.cfg b/.kokoro/nightly/os-login-it.cfg new file mode 100644 index 000000000000..ebab3f5f6110 --- /dev/null +++ b/.kokoro/nightly/os-login-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-os-login" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/phishingprotection-it.cfg b/.kokoro/nightly/phishingprotection-it.cfg new file mode 100644 index 000000000000..82a0b49cf345 --- /dev/null +++ b/.kokoro/nightly/phishingprotection-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-phishingprotection" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/recaptchaenterprise-it.cfg b/.kokoro/nightly/recaptchaenterprise-it.cfg new file mode 100644 index 000000000000..6d217f195a63 --- /dev/null +++ b/.kokoro/nightly/recaptchaenterprise-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-recaptchaenterprise" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/redis-it.cfg b/.kokoro/nightly/redis-it.cfg new file mode 100644 index 000000000000..3575005db217 --- /dev/null +++ b/.kokoro/nightly/redis-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-redis" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/resourcemanager-it.cfg b/.kokoro/nightly/resourcemanager-it.cfg new file mode 100644 index 000000000000..5352fe60b5a4 --- /dev/null +++ b/.kokoro/nightly/resourcemanager-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-resourcemanager" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/scheduler-it.cfg b/.kokoro/nightly/scheduler-it.cfg new file mode 100644 index 000000000000..25a022aa6160 --- /dev/null +++ b/.kokoro/nightly/scheduler-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-scheduler" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/securitycenter-it.cfg b/.kokoro/nightly/securitycenter-it.cfg new file mode 100644 index 000000000000..ad9dbd6b11aa --- /dev/null +++ b/.kokoro/nightly/securitycenter-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-securitycenter" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/talent-it.cfg b/.kokoro/nightly/talent-it.cfg new file mode 100644 index 000000000000..73d0c482d74d --- /dev/null +++ b/.kokoro/nightly/talent-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-talent" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/tasks-it.cfg b/.kokoro/nightly/tasks-it.cfg new file mode 100644 index 000000000000..e38bac680709 --- /dev/null +++ b/.kokoro/nightly/tasks-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-tasks" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/webrisk-it.cfg b/.kokoro/nightly/webrisk-it.cfg new file mode 100644 index 000000000000..11e6bd3480d6 --- /dev/null +++ b/.kokoro/nightly/webrisk-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-webrisk" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/nightly/websecurityscanner-it.cfg b/.kokoro/nightly/websecurityscanner-it.cfg new file mode 100644 index 000000000000..274de012bc58 --- /dev/null +++ b/.kokoro/nightly/websecurityscanner-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-websecurityscanner" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/asset-it.cfg b/.kokoro/presubmit/asset-it.cfg new file mode 100644 index 000000000000..d88a1a12a57d --- /dev/null +++ b/.kokoro/presubmit/asset-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-asset" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/automl-it.cfg b/.kokoro/presubmit/automl-it.cfg new file mode 100644 index 000000000000..a667d7ad92c4 --- /dev/null +++ b/.kokoro/presubmit/automl-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-automl" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/bigquerydatatransfer-it.cfg b/.kokoro/presubmit/bigquerydatatransfer-it.cfg new file mode 100644 index 000000000000..2c94526fea8d --- /dev/null +++ b/.kokoro/presubmit/bigquerydatatransfer-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-bigquerydatatransfer" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/containeranalysis-it.cfg b/.kokoro/presubmit/containeranalysis-it.cfg new file mode 100644 index 000000000000..4e31091ed0d0 --- /dev/null +++ b/.kokoro/presubmit/containeranalysis-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-containeranalysis" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/datacatalog-it.cfg b/.kokoro/presubmit/datacatalog-it.cfg new file mode 100644 index 000000000000..a37a6822c390 --- /dev/null +++ b/.kokoro/presubmit/datacatalog-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-datacatalog" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/datalabeling-it.cfg b/.kokoro/presubmit/datalabeling-it.cfg new file mode 100644 index 000000000000..cb3d8506c979 --- /dev/null +++ b/.kokoro/presubmit/datalabeling-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-datalabeling" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/dialogflow-it.cfg b/.kokoro/presubmit/dialogflow-it.cfg new file mode 100644 index 000000000000..b05fa09f2366 --- /dev/null +++ b/.kokoro/presubmit/dialogflow-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-dialogflow" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/dlp-it.cfg b/.kokoro/presubmit/dlp-it.cfg new file mode 100644 index 000000000000..ba4500b16e6b --- /dev/null +++ b/.kokoro/presubmit/dlp-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-dlp" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/ebrisk-it.cfg b/.kokoro/presubmit/ebrisk-it.cfg new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/.kokoro/presubmit/ebsecurityscanner-it.cfg b/.kokoro/presubmit/ebsecurityscanner-it.cfg new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/.kokoro/presubmit/iamcredentials-it.cfg b/.kokoro/presubmit/iamcredentials-it.cfg new file mode 100644 index 000000000000..8dca77c683a3 --- /dev/null +++ b/.kokoro/presubmit/iamcredentials-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-iamcredentials" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/os-login-it.cfg b/.kokoro/presubmit/os-login-it.cfg new file mode 100644 index 000000000000..ebab3f5f6110 --- /dev/null +++ b/.kokoro/presubmit/os-login-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-os-login" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/phishingprotection-it.cfg b/.kokoro/presubmit/phishingprotection-it.cfg new file mode 100644 index 000000000000..82a0b49cf345 --- /dev/null +++ b/.kokoro/presubmit/phishingprotection-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-phishingprotection" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/recaptchaenterprise-it.cfg b/.kokoro/presubmit/recaptchaenterprise-it.cfg new file mode 100644 index 000000000000..6d217f195a63 --- /dev/null +++ b/.kokoro/presubmit/recaptchaenterprise-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-recaptchaenterprise" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/redis-it.cfg b/.kokoro/presubmit/redis-it.cfg new file mode 100644 index 000000000000..3575005db217 --- /dev/null +++ b/.kokoro/presubmit/redis-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-redis" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/resourcemanager-it.cfg b/.kokoro/presubmit/resourcemanager-it.cfg new file mode 100644 index 000000000000..5352fe60b5a4 --- /dev/null +++ b/.kokoro/presubmit/resourcemanager-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-resourcemanager" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/scheduler-it.cfg b/.kokoro/presubmit/scheduler-it.cfg new file mode 100644 index 000000000000..25a022aa6160 --- /dev/null +++ b/.kokoro/presubmit/scheduler-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-scheduler" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/securitycenter-it.cfg b/.kokoro/presubmit/securitycenter-it.cfg new file mode 100644 index 000000000000..ad9dbd6b11aa --- /dev/null +++ b/.kokoro/presubmit/securitycenter-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-securitycenter" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/talent-it.cfg b/.kokoro/presubmit/talent-it.cfg new file mode 100644 index 000000000000..73d0c482d74d --- /dev/null +++ b/.kokoro/presubmit/talent-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-talent" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/tasks-it.cfg b/.kokoro/presubmit/tasks-it.cfg new file mode 100644 index 000000000000..e38bac680709 --- /dev/null +++ b/.kokoro/presubmit/tasks-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-tasks" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/webrisk-it.cfg b/.kokoro/presubmit/webrisk-it.cfg new file mode 100644 index 000000000000..11e6bd3480d6 --- /dev/null +++ b/.kokoro/presubmit/webrisk-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-webrisk" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/.kokoro/presubmit/websecurityscanner-it.cfg b/.kokoro/presubmit/websecurityscanner-it.cfg new file mode 100644 index 000000000000..274de012bc58 --- /dev/null +++ b/.kokoro/presubmit/websecurityscanner-it.cfg @@ -0,0 +1,27 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "INTEGRATION_TEST_ARGS" + value: "google-cloud-clients/google-cloud-websecurityscanner" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} diff --git a/google-cloud-clients/pom.xml b/google-cloud-clients/pom.xml index f82439b8df42..8d22877e6bbd 100644 --- a/google-cloud-clients/pom.xml +++ b/google-cloud-clients/pom.xml @@ -532,7 +532,6 @@ **/*SmokeTest.java **/IT*.java - **/*SmokeTest.java sponge_log @@ -596,6 +595,10 @@ 1200 sponge_log + + **/IT*.java + **/*SmokeTest.java + From 3068ac9808243c7eddf7abbbbc4ef0c77b51075c Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 1 Jul 2019 23:48:12 +0530 Subject: [PATCH 12/58] cleanup unused dependency of contrib-google-cloud-core-grpc (#5618) --- .../google-cloud-core-grpc/pom.xml | 42 +------------------ 1 file changed, 1 insertion(+), 41 deletions(-) diff --git a/google-cloud-clients/google-cloud-core-grpc/pom.xml b/google-cloud-clients/google-cloud-core-grpc/pom.xml index c9f67106032e..519225e10e3b 100644 --- a/google-cloud-clients/google-cloud-core-grpc/pom.xml +++ b/google-cloud-clients/google-cloud-core-grpc/pom.xml @@ -45,49 +45,9 @@ objenesis test - - com.google.protobuf - protobuf-java - - - com.google.protobuf - protobuf-java-util - - - io.grpc - grpc-protobuf - - - io.grpc - grpc-context - - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - com.google.api gax-grpc - - - - com.google.truth - truth - test - - - com.google.guava - guava-testlib - test - - + \ No newline at end of file From 9659047fba04d0038ce4cf5a5f239e4ae6e12613 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Knut=20Olav=20L=C3=B8ite?= Date: Mon, 1 Jul 2019 20:42:22 +0200 Subject: [PATCH 13/58] fix test cases for gax 1.47 (#5625) --- .../cloud/spanner/DatabaseAdminGaxTest.java | 61 ++------------ .../cloud/spanner/InstanceAdminGaxTest.java | 61 ++------------ .../cloud/spanner/SpannerGaxRetryTest.java | 79 +++---------------- 3 files changed, 22 insertions(+), 179 deletions(-) diff --git a/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/DatabaseAdminGaxTest.java b/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/DatabaseAdminGaxTest.java index da18c57c278d..f568509173f6 100644 --- a/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/DatabaseAdminGaxTest.java +++ b/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/DatabaseAdminGaxTest.java @@ -21,13 +21,11 @@ import com.google.api.gax.longrunning.OperationFuture; import com.google.api.gax.paging.Page; import com.google.api.gax.retrying.RetrySettings; -import com.google.api.gax.rpc.StatusCode; import com.google.api.gax.rpc.UnaryCallSettings; import com.google.api.gax.rpc.UnaryCallSettings.Builder; import com.google.cloud.NoCredentials; import com.google.cloud.spanner.admin.database.v1.MockDatabaseAdminImpl; import com.google.common.base.Throwables; -import com.google.common.collect.ImmutableSet; import com.google.common.collect.Lists; import com.google.protobuf.AbstractMessage; import com.google.protobuf.Any; @@ -183,22 +181,17 @@ public boolean isRetryable() { private static LocalChannelProvider channelProvider; @Parameter(0) - public boolean enableGaxRetries; - - @Parameter(1) public int exceptionAtCall; - @Parameter(2) + @Parameter(1) public ExceptionType exceptionType; - @Parameters(name = "enable GAX retries = {0}, exception at call = {1}, exception type = {2}") + @Parameters(name = "exception at call = {0}, exception type = {1}") public static Collection data() { List params = new ArrayList<>(); - for (boolean enableRetries : new boolean[] {true, false}) { - for (int exceptionAtCall : new int[] {0, 1}) { - for (ExceptionType exceptionType : ExceptionType.values()) { - params.add(new Object[] {enableRetries, exceptionAtCall, exceptionType}); - } + for (int exceptionAtCall : new int[] {0, 1}) { + for (ExceptionType exceptionType : ExceptionType.values()) { + params.add(new Object[] {exceptionAtCall, exceptionType}); } } return params; @@ -272,43 +265,6 @@ public Void apply(Builder input) { .toBuilder() .setRetrySettings(retrySettings) .build()); - if (!enableGaxRetries) { - // Disable retries by removing all retryable codes. - builder - .getDatabaseAdminStubSettingsBuilder() - .applyToAllUnaryMethods( - new ApiFunction, Void>() { - @Override - public Void apply(Builder input) { - input.setRetryableCodes(ImmutableSet.of()); - return null; - } - }); - builder - .getDatabaseAdminStubSettingsBuilder() - .createDatabaseOperationSettings() - .setInitialCallSettings( - builder - .getDatabaseAdminStubSettingsBuilder() - .createDatabaseOperationSettings() - .getInitialCallSettings() - .toBuilder() - .setRetrySettings(retrySettings) - .setRetryableCodes(ImmutableSet.of()) - .build()); - builder - .getDatabaseAdminStubSettingsBuilder() - .updateDatabaseDdlOperationSettings() - .setInitialCallSettings( - builder - .getDatabaseAdminStubSettingsBuilder() - .updateDatabaseDdlOperationSettings() - .getInitialCallSettings() - .toBuilder() - .setRetrySettings(retrySettings) - .setRetryableCodes(ImmutableSet.of()) - .build()); - } spanner = builder.build().getService(); client = spanner.getDatabaseAdminClient(); } @@ -319,12 +275,7 @@ public void tearDown() throws Exception { } private Exception setupException() { - if (exceptionType.isRetryable()) { - if (!enableGaxRetries) { - expectedException.expect( - SpannerMatchers.isSpannerException(exceptionType.getExpectedErrorCodeWithoutGax())); - } - } else { + if (!exceptionType.isRetryable()) { expectedException.expect( SpannerMatchers.isSpannerException(exceptionType.getExpectedErrorCodeWithGax())); } diff --git a/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/InstanceAdminGaxTest.java b/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/InstanceAdminGaxTest.java index ce318af0624d..32ad85ec339f 100644 --- a/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/InstanceAdminGaxTest.java +++ b/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/InstanceAdminGaxTest.java @@ -21,13 +21,11 @@ import com.google.api.gax.longrunning.OperationFuture; import com.google.api.gax.paging.Page; import com.google.api.gax.retrying.RetrySettings; -import com.google.api.gax.rpc.StatusCode; import com.google.api.gax.rpc.UnaryCallSettings; import com.google.api.gax.rpc.UnaryCallSettings.Builder; import com.google.cloud.NoCredentials; import com.google.cloud.spanner.admin.instance.v1.MockInstanceAdminImpl; import com.google.common.base.Throwables; -import com.google.common.collect.ImmutableSet; import com.google.common.collect.Lists; import com.google.protobuf.AbstractMessage; import com.google.protobuf.Any; @@ -186,22 +184,17 @@ public boolean isRetryable() { private static LocalChannelProvider channelProvider; @Parameter(0) - public boolean enableGaxRetries; - - @Parameter(1) public int exceptionAtCall; - @Parameter(2) + @Parameter(1) public ExceptionType exceptionType; - @Parameters(name = "enable GAX retries = {0}, exception at call = {1}, exception type = {2}") + @Parameters(name = "exception at call = {0}, exception type = {1}") public static Collection data() { List params = new ArrayList<>(); - for (boolean enableRetries : new boolean[] {true, false}) { - for (int exceptionAtCall : new int[] {0, 1}) { - for (ExceptionType exceptionType : ExceptionType.values()) { - params.add(new Object[] {enableRetries, exceptionAtCall, exceptionType}); - } + for (int exceptionAtCall : new int[] {0, 1}) { + for (ExceptionType exceptionType : ExceptionType.values()) { + params.add(new Object[] {exceptionAtCall, exceptionType}); } } return params; @@ -275,43 +268,6 @@ public Void apply(Builder input) { .toBuilder() .setRetrySettings(retrySettings) .build()); - if (!enableGaxRetries) { - // Disable retries by removing all retryable codes. - builder - .getInstanceAdminStubSettingsBuilder() - .applyToAllUnaryMethods( - new ApiFunction, Void>() { - @Override - public Void apply(Builder input) { - input.setRetryableCodes(ImmutableSet.of()); - return null; - } - }); - builder - .getInstanceAdminStubSettingsBuilder() - .createInstanceOperationSettings() - .setInitialCallSettings( - builder - .getInstanceAdminStubSettingsBuilder() - .createInstanceOperationSettings() - .getInitialCallSettings() - .toBuilder() - .setRetrySettings(retrySettings) - .setRetryableCodes(ImmutableSet.of()) - .build()); - builder - .getInstanceAdminStubSettingsBuilder() - .updateInstanceOperationSettings() - .setInitialCallSettings( - builder - .getInstanceAdminStubSettingsBuilder() - .updateInstanceOperationSettings() - .getInitialCallSettings() - .toBuilder() - .setRetrySettings(retrySettings) - .setRetryableCodes(ImmutableSet.of()) - .build()); - } spanner = builder.build().getService(); client = spanner.getInstanceAdminClient(); } @@ -322,12 +278,7 @@ public void tearDown() throws Exception { } private Exception setupException() { - if (exceptionType.isRetryable()) { - if (!enableGaxRetries) { - expectedException.expect( - SpannerMatchers.isSpannerException(exceptionType.getExpectedErrorCodeWithoutGax())); - } - } else { + if (!exceptionType.isRetryable()) { expectedException.expect( SpannerMatchers.isSpannerException(exceptionType.getExpectedErrorCodeWithGax())); } diff --git a/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/SpannerGaxRetryTest.java b/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/SpannerGaxRetryTest.java index 668ddfd6a0c8..44b33c5a4574 100644 --- a/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/SpannerGaxRetryTest.java +++ b/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/SpannerGaxRetryTest.java @@ -24,7 +24,6 @@ import com.google.api.gax.core.NoCredentialsProvider; import com.google.api.gax.grpc.testing.LocalChannelProvider; import com.google.api.gax.retrying.RetrySettings; -import com.google.api.gax.rpc.StatusCode; import com.google.api.gax.rpc.UnaryCallSettings; import com.google.api.gax.rpc.UnaryCallSettings.Builder; import com.google.cloud.NoCredentials; @@ -33,7 +32,6 @@ import com.google.cloud.spanner.TransactionRunner.TransactionCallable; import com.google.cloud.spanner.v1.SpannerClient; import com.google.cloud.spanner.v1.SpannerSettings; -import com.google.common.collect.ImmutableSet; import com.google.protobuf.ListValue; import com.google.spanner.v1.ResultSetMetadata; import com.google.spanner.v1.StructType; @@ -43,26 +41,22 @@ import io.grpc.StatusRuntimeException; import io.grpc.inprocess.InProcessServerBuilder; import java.io.IOException; -import java.util.ArrayList; import java.util.Arrays; -import java.util.Collection; -import java.util.List; import java.util.concurrent.ScheduledThreadPoolExecutor; import java.util.concurrent.atomic.AtomicInteger; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.junit.runner.RunWith; -import org.junit.runners.Parameterized; -import org.junit.runners.Parameterized.Parameter; -import org.junit.runners.Parameterized.Parameters; +import org.junit.runners.JUnit4; import org.threeten.bp.Duration; -@RunWith(Parameterized.class) +@RunWith(JUnit4.class) public class SpannerGaxRetryTest { private static final ResultSetMetadata READ_METADATA = ResultSetMetadata.newBuilder() @@ -144,17 +138,6 @@ public class SpannerGaxRetryTest { private static Spanner spanner; private static DatabaseClient client; - @Parameter(0) - public boolean enableGaxRetries; - - @Parameters(name = "enable GAX retries = {0}") - public static Collection data() { - List params = new ArrayList<>(); - params.add(new Object[] {true}); - params.add(new Object[] {false}); - return params; - } - @Rule public ExpectedException expectedException = ExpectedException.none(); @BeforeClass @@ -232,27 +215,6 @@ public Void apply(Builder input) { .executeStreamingSqlSettings() .setRetrySettings(retrySettings); builder.getSpannerStubSettingsBuilder().streamingReadSettings().setRetrySettings(retrySettings); - if (!enableGaxRetries) { - // Disable retries by removing all retryable codes. - builder - .getSpannerStubSettingsBuilder() - .applyToAllUnaryMethods( - new ApiFunction, Void>() { - @Override - public Void apply(Builder input) { - input.setRetryableCodes(ImmutableSet.of()); - return null; - } - }); - builder - .getSpannerStubSettingsBuilder() - .executeStreamingSqlSettings() - .setRetryableCodes(ImmutableSet.of()); - builder - .getSpannerStubSettingsBuilder() - .streamingReadSettings() - .setRetryableCodes(ImmutableSet.of()); - } spanner = builder.build().getService(); client = spanner.getDatabaseClient(DatabaseId.of("[PROJECT]", "[INSTANCE]", "[DATABASE]")); } @@ -297,9 +259,7 @@ public Long run(TransactionContext transaction) throws Exception { @Test public void singleUseTimeout() { - if (enableGaxRetries) { - expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.DEADLINE_EXCEEDED)); - } + expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.DEADLINE_EXCEEDED)); mockSpanner.setCreateSessionExecutionTime(ONE_SECOND); try (ResultSet rs = client.singleUse().executeQuery(SELECT1AND2)) { while (rs.next()) {} @@ -308,9 +268,6 @@ public void singleUseTimeout() { @Test public void singleUseUnavailable() { - if (!enableGaxRetries) { - expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.UNAVAILABLE)); - } mockSpanner.addException(UNAVAILABLE); try (ResultSet rs = client.singleUse().executeQuery(SELECT1AND2)) { while (rs.next()) {} @@ -346,9 +303,7 @@ public void singleUseInternal() { @Test public void singleUseReadOnlyTransactionTimeout() { - if (enableGaxRetries) { - expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.DEADLINE_EXCEEDED)); - } + expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.DEADLINE_EXCEEDED)); mockSpanner.setCreateSessionExecutionTime(ONE_SECOND); try (ResultSet rs = client.singleUseReadOnlyTransaction().executeQuery(SELECT1AND2)) { while (rs.next()) {} @@ -357,9 +312,6 @@ public void singleUseReadOnlyTransactionTimeout() { @Test public void singleUseReadOnlyTransactionUnavailable() { - if (!enableGaxRetries) { - expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.UNAVAILABLE)); - } mockSpanner.addException(UNAVAILABLE); try (ResultSet rs = client.singleUseReadOnlyTransaction().executeQuery(SELECT1AND2)) { while (rs.next()) {} @@ -367,18 +319,17 @@ public void singleUseReadOnlyTransactionUnavailable() { } @Test + @Ignore("enable once gax 1.47 is released") public void singleUseExecuteStreamingSqlTimeout() { - // Streaming calls do not timeout. - mockSpanner.setExecuteStreamingSqlExecutionTime(ONE_SECOND); + expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.DEADLINE_EXCEEDED)); try (ResultSet rs = client.singleUse().executeQuery(SELECT1AND2)) { + mockSpanner.setExecuteStreamingSqlExecutionTime(ONE_SECOND); while (rs.next()) {} } } @Test public void singleUseExecuteStreamingSqlUnavailable() { - // executeStreamingSql is always retried by the Spanner library, even if gax retries have been - // disabled. try (ResultSet rs = client.singleUse().executeQuery(SELECT1AND2)) { mockSpanner.addException(UNAVAILABLE); while (rs.next()) {} @@ -388,9 +339,7 @@ public void singleUseExecuteStreamingSqlUnavailable() { @Test public void readWriteTransactionTimeout() { warmUpSessionPool(); - if (enableGaxRetries) { - expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.DEADLINE_EXCEEDED)); - } + expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.DEADLINE_EXCEEDED)); mockSpanner.setBeginTransactionExecutionTime(ONE_SECOND); TransactionRunner runner = client.readWriteTransaction(); long updateCount = @@ -407,9 +356,6 @@ public Long run(TransactionContext transaction) throws Exception { @Test public void readWriteTransactionUnavailable() { warmUpSessionPool(); - if (!enableGaxRetries) { - expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.UNAVAILABLE)); - } mockSpanner.addException(UNAVAILABLE); TransactionRunner runner = client.readWriteTransaction(); long updateCount = @@ -492,9 +438,7 @@ public Long run(TransactionContext transaction) throws Exception { @Test public void transactionManagerTimeout() { warmUpSessionPool(); - if (enableGaxRetries) { - expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.DEADLINE_EXCEEDED)); - } + expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.DEADLINE_EXCEEDED)); mockSpanner.setBeginTransactionExecutionTime(ONE_SECOND); try (TransactionManager txManager = client.transactionManager()) { TransactionContext tx = txManager.begin(); @@ -514,9 +458,6 @@ public void transactionManagerTimeout() { @Test public void transactionManagerUnavailable() { warmUpSessionPool(); - if (!enableGaxRetries) { - expectedException.expect(SpannerMatchers.isSpannerException(ErrorCode.UNAVAILABLE)); - } mockSpanner.addException(UNAVAILABLE); try (TransactionManager txManager = client.transactionManager()) { TransactionContext tx = txManager.begin(); From 17cb858a63316afc651a4f03bc4c38f9410eb34a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Knut=20Olav=20L=C3=B8ite?= Date: Mon, 1 Jul 2019 21:39:24 +0200 Subject: [PATCH 14/58] Spanner: Create new instance if existing Spanner is closed (#5200) * do not hand out a closed Spanner instance SpannerOptions caches any Spanner instance that has been created, and hands this cached instance out to all subsequent calls to SpannerOptions.getService(). This also included closed Spanner instances. The getService() method now returns an error if the Spanner instance has already been closed. * fix small merge error * create a new instance if the service/rpc is closed SpannerOptions.getService() and SpannerOptions.getRpc() should return a new instance instead of throwing an exception if the service/rpc object has been closed. * add test case to ensure correct caching behavior * use shouldRefreshService instead of createNewService * fix merge conflicts * added documentation to shouldRefresh... methods * removed overrides only for comments * fixed naming * added assertions for isClosed() * fixed formatting --- .../java/com/google/cloud/ServiceOptions.java | 20 ++++++++- .../com/google/cloud/spanner/Spanner.java | 3 ++ .../com/google/cloud/spanner/SpannerImpl.java | 5 +++ .../google/cloud/spanner/SpannerOptions.java | 20 +++++++++ .../cloud/spanner/spi/v1/GapicSpannerRpc.java | 7 ++++ .../cloud/spanner/spi/v1/SpannerRpc.java | 2 + .../google/cloud/spanner/SpannerImplTest.java | 42 +++++++++++++++++++ .../cloud/spanner/SpannerOptionsTest.java | 29 +++++++++++++ 8 files changed, 126 insertions(+), 2 deletions(-) diff --git a/google-cloud-clients/google-cloud-core/src/main/java/com/google/cloud/ServiceOptions.java b/google-cloud-clients/google-cloud-core/src/main/java/com/google/cloud/ServiceOptions.java index d08b14e71506..d78958563176 100644 --- a/google-cloud-clients/google-cloud-core/src/main/java/com/google/cloud/ServiceOptions.java +++ b/google-cloud-clients/google-cloud-core/src/main/java/com/google/cloud/ServiceOptions.java @@ -494,24 +494,40 @@ static String getServiceAccountProjectId(String credentialsPath) { */ @SuppressWarnings("unchecked") public ServiceT getService() { - if (service == null) { + if (shouldRefreshService(service)) { service = serviceFactory.create((OptionsT) this); } return service; } + /** + * @param cachedService The currently cached service object + * @return true if the currently cached service object should be refreshed. + */ + protected boolean shouldRefreshService(ServiceT cachedService) { + return cachedService == null; + } + /** * Returns a Service RPC object for the current service. For instance, when using Google Cloud * Storage, it returns a StorageRpc object. */ @SuppressWarnings("unchecked") public ServiceRpc getRpc() { - if (rpc == null) { + if (shouldRefreshRpc(rpc)) { rpc = serviceRpcFactory.create((OptionsT) this); } return rpc; } + /** + * @param cachedRpc The currently cached service object + * @return true if the currently cached service object should be refreshed. + */ + protected boolean shouldRefreshRpc(ServiceRpc cachedRpc) { + return cachedRpc == null; + } + /** * Returns the project ID. Return value can be null (for services that don't require a project * ID). diff --git a/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/Spanner.java b/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/Spanner.java index 75c062f96811..0c6bec4ea830 100644 --- a/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/Spanner.java +++ b/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/Spanner.java @@ -105,4 +105,7 @@ public interface Spanner extends Service, AutoCloseable { */ @Override void close(); + + /** @return true if this {@link Spanner} object is closed. */ + boolean isClosed(); } diff --git a/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerImpl.java b/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerImpl.java index 337326f5ca31..42852fee2a7d 100644 --- a/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerImpl.java +++ b/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerImpl.java @@ -244,6 +244,11 @@ public void close() { } } + @Override + public boolean isClosed() { + return spannerIsClosed; + } + /** * Encapsulates state to be passed to the {@link SpannerRpc} layer for a given session. Currently * used to select the {@link io.grpc.Channel} to be used in issuing the RPCs in a Session. diff --git a/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerOptions.java b/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerOptions.java index cf3e7676b44e..a1f306372331 100644 --- a/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerOptions.java +++ b/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerOptions.java @@ -436,6 +436,26 @@ protected SpannerRpc getSpannerRpcV1() { return (SpannerRpc) getRpc(); } + /** + * @return true if the cached Spanner service instance is null or + * closed. This will cause the method {@link #getService()} to create a new {@link SpannerRpc} + * instance when one is requested. + */ + @Override + protected boolean shouldRefreshService(Spanner cachedService) { + return cachedService == null || cachedService.isClosed(); + } + + /** + * @return true if the cached {@link ServiceRpc} instance is null or + * closed. This will cause the method {@link #getRpc()} to create a new {@link Spanner} + * instance when one is requested. + */ + @Override + protected boolean shouldRefreshRpc(ServiceRpc cachedRpc) { + return cachedRpc == null || ((SpannerRpc) cachedRpc).isClosed(); + } + @SuppressWarnings("unchecked") @Override public Builder toBuilder() { diff --git a/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/spi/v1/GapicSpannerRpc.java b/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/spi/v1/GapicSpannerRpc.java index a6ca0e003ac5..e309f60ab8a4 100644 --- a/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/spi/v1/GapicSpannerRpc.java +++ b/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/spi/v1/GapicSpannerRpc.java @@ -159,6 +159,7 @@ private synchronized void shutdown() { private static final int DEFAULT_PERIOD_SECONDS = 10; private final ManagedInstantiatingExecutorProvider executorProvider; + private boolean rpcIsClosed; private final SpannerStub spannerStub; private final InstanceAdminStub instanceAdminStub; private final DatabaseAdminStub databaseAdminStub; @@ -600,6 +601,7 @@ private GrpcCallContext newCallContext(@Nullable Map options, String @Override public void shutdown() { + this.rpcIsClosed = true; this.spannerStub.close(); this.instanceAdminStub.close(); this.databaseAdminStub.close(); @@ -607,6 +609,11 @@ public void shutdown() { this.executorProvider.shutdown(); } + @Override + public boolean isClosed() { + return rpcIsClosed; + } + /** * A {@code ResponseObserver} that exposes the {@code StreamController} and delegates callbacks to * the {@link ResultStreamConsumer}. diff --git a/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/spi/v1/SpannerRpc.java b/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/spi/v1/SpannerRpc.java index 500f369f67a8..593ba3c5ec06 100644 --- a/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/spi/v1/SpannerRpc.java +++ b/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/spi/v1/SpannerRpc.java @@ -233,4 +233,6 @@ PartitionResponse partitionRead(PartitionReadRequest request, @Nullable Map Date: Mon, 1 Jul 2019 12:49:41 -0700 Subject: [PATCH 15/58] Update gax -> 1.47.0, guava -> 28.0-android, gson -> 2.8.5 (#5590) --- google-cloud-bom/pom.xml | 2 +- google-cloud-clients/pom.xml | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/google-cloud-bom/pom.xml b/google-cloud-bom/pom.xml index b36056497828..cd08e6a04abc 100644 --- a/google-cloud-bom/pom.xml +++ b/google-cloud-bom/pom.xml @@ -168,7 +168,7 @@ com.google.api gax-bom - 1.46.1 + 1.47.0 pom import diff --git a/google-cloud-clients/pom.xml b/google-cloud-clients/pom.xml index 8d22877e6bbd..6cc908ac5651 100644 --- a/google-cloud-clients/pom.xml +++ b/google-cloud-clients/pom.xml @@ -161,7 +161,7 @@ 0.16.2 1.21.0 - 27.1-android + 28.0-android 1.30.1 1.30.1 3.7.1 @@ -254,6 +254,13 @@ 1.18 + + + com.google.code.gson + gson + 2.8.5 + + commons-fileupload commons-fileupload From 12875e08082e5feff28dd3f76df9fe39a863539e Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 2 Jul 2019 02:42:21 +0300 Subject: [PATCH 16/58] Update dependency com.google.apis:google-api-services-bigquery to v2-rev20190623-1.30.1 (#5629) --- google-cloud-clients/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google-cloud-clients/pom.xml b/google-cloud-clients/pom.xml index 6cc908ac5651..ebd6a197f0c3 100644 --- a/google-cloud-clients/pom.xml +++ b/google-cloud-clients/pom.xml @@ -222,7 +222,7 @@ com.google.apis google-api-services-bigquery - v2-rev20190616-1.30.1 + v2-rev20190623-1.30.1 com.google.apis From d48aa18b0e2cde833917dfcbd8cef9b833b9fec9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 2 Jul 2019 02:45:40 +0300 Subject: [PATCH 17/58] Update dependency com.google.api-client:google-api-client-bom to v1.30.2 (#5631) --- google-cloud-clients/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google-cloud-clients/pom.xml b/google-cloud-clients/pom.xml index ebd6a197f0c3..c468e7c9c911 100644 --- a/google-cloud-clients/pom.xml +++ b/google-cloud-clients/pom.xml @@ -154,7 +154,7 @@ github google-cloud-clients 0.98.1-alpha-SNAPSHOT - 1.30.1 + 1.30.2 1.46.1 1.8.1 From e3dd67e6fe84b705357e12c0799d3cc4170feb2a Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 2 Jul 2019 02:45:59 +0300 Subject: [PATCH 18/58] Update dependency com.google.apis:google-api-services-compute to v1-rev20190618-1.30.1 (#5630) --- google-cloud-clients/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google-cloud-clients/pom.xml b/google-cloud-clients/pom.xml index c468e7c9c911..9992061ff905 100644 --- a/google-cloud-clients/pom.xml +++ b/google-cloud-clients/pom.xml @@ -227,7 +227,7 @@ com.google.apis google-api-services-compute - v1-rev20190607-1.30.1 + v1-rev20190618-1.30.1 com.google.cloud.datastore From 6c8fa7062da537e19f1c5a78b09f493a4d4b7c48 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Tue, 2 Jul 2019 09:39:07 -0700 Subject: [PATCH 19/58] Regenerate video-intelligence client (#5634) No-op for java - added ruby namespace to the proto configuration. --- .../v1/VideoIntelligenceServiceProto.java | 5 +++-- .../videointelligence/v1/video_intelligence.proto | 1 + .../v1beta1/VideoIntelligenceServiceProto.java | 7 ++++--- .../videointelligence/v1beta1/video_intelligence.proto | 1 + .../v1beta2/VideoIntelligenceServiceProto.java | 7 ++++--- .../videointelligence/v1beta2/video_intelligence.proto | 1 + .../v1p1beta1/VideoIntelligenceServiceProto.java | 5 +++-- .../v1p1beta1/video_intelligence.proto | 1 + .../v1p2beta1/VideoIntelligenceServiceProto.java | 7 ++++--- .../v1p2beta1/video_intelligence.proto | 1 + .../v1p3beta1/VideoIntelligenceServiceProto.java | 7 ++++--- .../v1p3beta1/video_intelligence.proto | 1 + .../google-cloud-video-intelligence/synth.metadata | 10 +++++----- 13 files changed, 33 insertions(+), 21 deletions(-) diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1/src/main/java/com/google/cloud/videointelligence/v1/VideoIntelligenceServiceProto.java b/google-api-grpc/proto-google-cloud-video-intelligence-v1/src/main/java/com/google/cloud/videointelligence/v1/VideoIntelligenceServiceProto.java index f4237d7c19d6..9c42fcc3a3be 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1/src/main/java/com/google/cloud/videointelligence/v1/VideoIntelligenceServiceProto.java +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1/src/main/java/com/google/cloud/videointelligence/v1/VideoIntelligenceServiceProto.java @@ -330,12 +330,13 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "7.google.cloud.videointelligence.v1.Anno" + "tateVideoRequest\032\035.google.longrunning.Op" + "eration\"\036\202\323\344\223\002\030\"\023/v1/videos:annotate:\001*B" - + "\344\001\n%com.google.cloud.videointelligence.v" + + "\213\002\n%com.google.cloud.videointelligence.v" + "1B\035VideoIntelligenceServiceProtoP\001ZRgoog" + "le.golang.org/genproto/googleapis/cloud/" + "videointelligence/v1;videointelligence\252\002" + "!Google.Cloud.VideoIntelligence.V1\312\002!Goo" - + "gle\\Cloud\\VideoIntelligence\\V1b\006proto3" + + "gle\\Cloud\\VideoIntelligence\\V1\352\002$Google:" + + ":Cloud::VideoIntelligence::V1b\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1/src/main/proto/google/cloud/videointelligence/v1/video_intelligence.proto b/google-api-grpc/proto-google-cloud-video-intelligence-v1/src/main/proto/google/cloud/videointelligence/v1/video_intelligence.proto index 3d00a0d616d4..ce3d8f8c2d6b 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1/src/main/proto/google/cloud/videointelligence/v1/video_intelligence.proto +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1/src/main/proto/google/cloud/videointelligence/v1/video_intelligence.proto @@ -29,6 +29,7 @@ option java_multiple_files = true; option java_outer_classname = "VideoIntelligenceServiceProto"; option java_package = "com.google.cloud.videointelligence.v1"; option php_namespace = "Google\\Cloud\\VideoIntelligence\\V1"; +option ruby_package = "Google::Cloud::VideoIntelligence::V1"; // Service that implements Google Cloud Video Intelligence API. service VideoIntelligenceService { diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/src/main/java/com/google/cloud/videointelligence/v1beta1/VideoIntelligenceServiceProto.java b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/src/main/java/com/google/cloud/videointelligence/v1beta1/VideoIntelligenceServiceProto.java index f12ffb8ceed2..88b9f03240d1 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/src/main/java/com/google/cloud/videointelligence/v1beta1/VideoIntelligenceServiceProto.java +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/src/main/java/com/google/cloud/videointelligence/v1beta1/VideoIntelligenceServiceProto.java @@ -158,14 +158,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\n\rAnnotateVideo\022<.google.cloud.videointe" + "lligence.v1beta1.AnnotateVideoRequest\032\035." + "google.longrunning.Operation\"#\202\323\344\223\002\035\"\030/v" - + "1beta1/videos:annotate:\001*B\370\001\n*com.google" + + "1beta1/videos:annotate:\001*B\244\002\n*com.google" + ".cloud.videointelligence.v1beta1B\035VideoI" + "ntelligenceServiceProtoP\001ZWgoogle.golang" + ".org/genproto/googleapis/cloud/videointe" + "lligence/v1beta1;videointelligence\252\002&Goo" + "gle.Cloud.VideoIntelligence.V1Beta1\312\002&Go" - + "ogle\\Cloud\\VideoIntelligence\\V1beta1b\006pr" - + "oto3" + + "ogle\\Cloud\\VideoIntelligence\\V1beta1\352\002)G" + + "oogle::Cloud::VideoIntelligence::V1beta1" + + "b\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/src/main/proto/google/cloud/videointelligence/v1beta1/video_intelligence.proto b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/src/main/proto/google/cloud/videointelligence/v1beta1/video_intelligence.proto index 86b5b800c0a6..430776bf0031 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/src/main/proto/google/cloud/videointelligence/v1beta1/video_intelligence.proto +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/src/main/proto/google/cloud/videointelligence/v1beta1/video_intelligence.proto @@ -27,6 +27,7 @@ option java_multiple_files = true; option java_outer_classname = "VideoIntelligenceServiceProto"; option java_package = "com.google.cloud.videointelligence.v1beta1"; option php_namespace = "Google\\Cloud\\VideoIntelligence\\V1beta1"; +option ruby_package = "Google::Cloud::VideoIntelligence::V1beta1"; // Service that implements Google Cloud Video Intelligence API. service VideoIntelligenceService { diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/src/main/java/com/google/cloud/videointelligence/v1beta2/VideoIntelligenceServiceProto.java b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/src/main/java/com/google/cloud/videointelligence/v1beta2/VideoIntelligenceServiceProto.java index 53ffec919ab1..8f7b2448d804 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/src/main/java/com/google/cloud/videointelligence/v1beta2/VideoIntelligenceServiceProto.java +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/src/main/java/com/google/cloud/videointelligence/v1beta2/VideoIntelligenceServiceProto.java @@ -213,14 +213,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\n\rAnnotateVideo\022<.google.cloud.videointe" + "lligence.v1beta2.AnnotateVideoRequest\032\035." + "google.longrunning.Operation\"#\202\323\344\223\002\035\"\030/v" - + "1beta2/videos:annotate:\001*B\370\001\n*com.google" + + "1beta2/videos:annotate:\001*B\244\002\n*com.google" + ".cloud.videointelligence.v1beta2B\035VideoI" + "ntelligenceServiceProtoP\001ZWgoogle.golang" + ".org/genproto/googleapis/cloud/videointe" + "lligence/v1beta2;videointelligence\252\002&Goo" + "gle.Cloud.VideoIntelligence.V1Beta2\312\002&Go" - + "ogle\\Cloud\\VideoIntelligence\\V1beta2b\006pr" - + "oto3" + + "ogle\\Cloud\\VideoIntelligence\\V1beta2\352\002)G" + + "oogle::Cloud::VideoIntelligence::V1beta2" + + "b\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/src/main/proto/google/cloud/videointelligence/v1beta2/video_intelligence.proto b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/src/main/proto/google/cloud/videointelligence/v1beta2/video_intelligence.proto index b86664784043..a69c25791e17 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/src/main/proto/google/cloud/videointelligence/v1beta2/video_intelligence.proto +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/src/main/proto/google/cloud/videointelligence/v1beta2/video_intelligence.proto @@ -28,6 +28,7 @@ option java_multiple_files = true; option java_outer_classname = "VideoIntelligenceServiceProto"; option java_package = "com.google.cloud.videointelligence.v1beta2"; option php_namespace = "Google\\Cloud\\VideoIntelligence\\V1beta2"; +option ruby_package = "Google::Cloud::VideoIntelligence::V1beta2"; // Service that implements Google Cloud Video Intelligence API. service VideoIntelligenceService { diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/src/main/java/com/google/cloud/videointelligence/v1p1beta1/VideoIntelligenceServiceProto.java b/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/src/main/java/com/google/cloud/videointelligence/v1p1beta1/VideoIntelligenceServiceProto.java index 3a51fbf74a52..d1fbd31f8d1b 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/src/main/java/com/google/cloud/videointelligence/v1p1beta1/VideoIntelligenceServiceProto.java +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/src/main/java/com/google/cloud/videointelligence/v1p1beta1/VideoIntelligenceServiceProto.java @@ -217,14 +217,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\rAnnotateVideo\022>.google.cloud.videointel" + "ligence.v1p1beta1.AnnotateVideoRequest\032\035" + ".google.longrunning.Operation\"%\202\323\344\223\002\037\"\032/" - + "v1p1beta1/videos:annotate:\001*B\200\002\n,com.goo" + + "v1p1beta1/videos:annotate:\001*B\256\002\n,com.goo" + "gle.cloud.videointelligence.v1p1beta1B\035V" + "ideoIntelligenceServiceProtoP\001ZYgoogle.g" + "olang.org/genproto/googleapis/cloud/vide" + "ointelligence/v1p1beta1;videointelligenc" + "e\252\002(Google.Cloud.VideoIntelligence.V1P1B" + "eta1\312\002(Google\\Cloud\\VideoIntelligence\\V1" - + "p1beta1b\006proto3" + + "p1beta1\352\002+Google::Cloud::VideoIntelligen" + + "ce::V1p1beta1b\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/src/main/proto/google/cloud/videointelligence/v1p1beta1/video_intelligence.proto b/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/src/main/proto/google/cloud/videointelligence/v1p1beta1/video_intelligence.proto index 626cc35b89aa..115f362beb69 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/src/main/proto/google/cloud/videointelligence/v1p1beta1/video_intelligence.proto +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/src/main/proto/google/cloud/videointelligence/v1p1beta1/video_intelligence.proto @@ -28,6 +28,7 @@ option java_multiple_files = true; option java_outer_classname = "VideoIntelligenceServiceProto"; option java_package = "com.google.cloud.videointelligence.v1p1beta1"; option php_namespace = "Google\\Cloud\\VideoIntelligence\\V1p1beta1"; +option ruby_package = "Google::Cloud::VideoIntelligence::V1p1beta1"; // Service that implements Google Cloud Video Intelligence API. service VideoIntelligenceService { diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/src/main/java/com/google/cloud/videointelligence/v1p2beta1/VideoIntelligenceServiceProto.java b/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/src/main/java/com/google/cloud/videointelligence/v1p2beta1/VideoIntelligenceServiceProto.java index 7453e9883dd1..c18fee3ff260 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/src/main/java/com/google/cloud/videointelligence/v1p2beta1/VideoIntelligenceServiceProto.java +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/src/main/java/com/google/cloud/videointelligence/v1p2beta1/VideoIntelligenceServiceProto.java @@ -248,14 +248,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "o\022>.google.cloud.videointelligence.v1p2b" + "eta1.AnnotateVideoRequest\032\035.google.longr" + "unning.Operation\"%\202\323\344\223\002\037\"\032/v1p2beta1/vid" - + "eos:annotate:\001*B\200\002\n,com.google.cloud.vid" + + "eos:annotate:\001*B\256\002\n,com.google.cloud.vid" + "eointelligence.v1p2beta1B\035VideoIntellige" + "nceServiceProtoP\001ZYgoogle.golang.org/gen" + "proto/googleapis/cloud/videointelligence" + "/v1p2beta1;videointelligence\252\002(Google.Cl" + "oud.VideoIntelligence.V1P2Beta1\312\002(Google" - + "\\Cloud\\VideoIntelligence\\V1p2beta1b\006prot" - + "o3" + + "\\Cloud\\VideoIntelligence\\V1p2beta1\352\002+Goo" + + "gle::Cloud::VideoIntelligence::V1p2beta1" + + "b\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/src/main/proto/google/cloud/videointelligence/v1p2beta1/video_intelligence.proto b/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/src/main/proto/google/cloud/videointelligence/v1p2beta1/video_intelligence.proto index b1318167e75b..0a16e7afd154 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/src/main/proto/google/cloud/videointelligence/v1p2beta1/video_intelligence.proto +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/src/main/proto/google/cloud/videointelligence/v1p2beta1/video_intelligence.proto @@ -29,6 +29,7 @@ option java_multiple_files = true; option java_outer_classname = "VideoIntelligenceServiceProto"; option java_package = "com.google.cloud.videointelligence.v1p2beta1"; option php_namespace = "Google\\Cloud\\VideoIntelligence\\V1p2beta1"; +option ruby_package = "Google::Cloud::VideoIntelligence::V1p2beta1"; // Service that implements Google Cloud Video Intelligence API. service VideoIntelligenceService { diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/src/main/java/com/google/cloud/videointelligence/v1p3beta1/VideoIntelligenceServiceProto.java b/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/src/main/java/com/google/cloud/videointelligence/v1p3beta1/VideoIntelligenceServiceProto.java index cbb24566c1ea..a50f8d2d3bb7 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/src/main/java/com/google/cloud/videointelligence/v1p3beta1/VideoIntelligenceServiceProto.java +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/src/main/java/com/google/cloud/videointelligence/v1p3beta1/VideoIntelligenceServiceProto.java @@ -453,14 +453,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + ".videointelligence.v1p3beta1.StreamingAn" + "notateVideoRequest\032H.google.cloud.videoi" + "ntelligence.v1p3beta1.StreamingAnnotateV" - + "ideoResponse(\0010\001B\200\002\n,com.google.cloud.vi" + + "ideoResponse(\0010\001B\256\002\n,com.google.cloud.vi" + "deointelligence.v1p3beta1B\035VideoIntellig" + "enceServiceProtoP\001ZYgoogle.golang.org/ge" + "nproto/googleapis/cloud/videointelligenc" + "e/v1p3beta1;videointelligence\252\002(Google.C" + "loud.VideoIntelligence.V1P3Beta1\312\002(Googl" - + "e\\Cloud\\VideoIntelligence\\V1p3beta1b\006pro" - + "to3" + + "e\\Cloud\\VideoIntelligence\\V1p3beta1\352\002+Go" + + "ogle::Cloud::VideoIntelligence::V1p3beta" + + "1b\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/src/main/proto/google/cloud/videointelligence/v1p3beta1/video_intelligence.proto b/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/src/main/proto/google/cloud/videointelligence/v1p3beta1/video_intelligence.proto index 45059d21d207..e37726e0b1aa 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/src/main/proto/google/cloud/videointelligence/v1p3beta1/video_intelligence.proto +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/src/main/proto/google/cloud/videointelligence/v1p3beta1/video_intelligence.proto @@ -29,6 +29,7 @@ option java_multiple_files = true; option java_outer_classname = "VideoIntelligenceServiceProto"; option java_package = "com.google.cloud.videointelligence.v1p3beta1"; option php_namespace = "Google\\Cloud\\VideoIntelligence\\V1p3beta1"; +option ruby_package = "Google::Cloud::VideoIntelligence::V1p3beta1"; // Service that implements Google Cloud Video Intelligence API. service VideoIntelligenceService { diff --git a/google-cloud-clients/google-cloud-video-intelligence/synth.metadata b/google-cloud-clients/google-cloud-video-intelligence/synth.metadata index c60384024cf0..6475a3553f26 100644 --- a/google-cloud-clients/google-cloud-video-intelligence/synth.metadata +++ b/google-cloud-clients/google-cloud-video-intelligence/synth.metadata @@ -1,19 +1,19 @@ { - "updateTime": "2019-06-19T08:03:13.407987Z", + "updateTime": "2019-07-02T08:01:45.305684Z", "sources": [ { "generator": { "name": "artman", - "version": "0.28.0", - "dockerImage": "googleapis/artman@sha256:6ced5a36b08b82a328c69844e629300d58c14067f25cadab47f52542bdef7daf" + "version": "0.29.3", + "dockerImage": "googleapis/artman@sha256:8900f94a81adaab0238965aa8a7b3648791f4f3a95ee65adc6a56cfcc3753101" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "ac13167e31a20314aa05cc9911c95df250880485", - "internalRef": "253867808" + "sha": "5322233f8cbec4d3f8c17feca2507ef27d4a07c9", + "internalRef": "256042411" } } ], From d19cef88b0bbe5ac798e09952d4d4d95243a8364 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Tue, 2 Jul 2019 09:46:06 -0700 Subject: [PATCH 20/58] Regenerate talent client (#5633) Adds CandidateAvailabilityFilter Adds result_set_id to SearchProfileRequest/Response --- .../google/cloud/talent/v4beta1/Activity.java | 243 +-- .../talent/v4beta1/ActivityOrBuilder.java | 63 +- .../talent/v4beta1/AdditionalContactInfo.java | 70 +- .../AdditionalContactInfoOrBuilder.java | 20 +- .../google/cloud/talent/v4beta1/Address.java | 138 +- .../talent/v4beta1/AddressOrBuilder.java | 36 +- .../cloud/talent/v4beta1/Application.java | 399 ++--- .../talent/v4beta1/ApplicationDateFilter.java | 120 +- .../ApplicationDateFilterOrBuilder.java | 30 +- .../talent/v4beta1/ApplicationJobFilter.java | 89 +- .../ApplicationJobFilterOrBuilder.java | 25 +- .../talent/v4beta1/ApplicationOrBuilder.java | 101 +- .../ApplicationOutcomeNotesFilter.java | 40 +- ...pplicationOutcomeNotesFilterOrBuilder.java | 11 +- .../v4beta1/ApplicationServiceProto.java | 102 +- .../v4beta1/BatchCreateJobsRequest.java | 90 +- .../BatchCreateJobsRequestOrBuilder.java | 21 +- .../v4beta1/BatchDeleteJobsRequest.java | 42 +- .../BatchDeleteJobsRequestOrBuilder.java | 12 +- .../v4beta1/BatchUpdateJobsRequest.java | 90 +- .../BatchUpdateJobsRequestOrBuilder.java | 21 +- .../v4beta1/CandidateAvailabilityFilter.java | 522 ++++++ .../CandidateAvailabilityFilterOrBuilder.java | 22 + .../cloud/talent/v4beta1/Certification.java | 135 +- .../v4beta1/CertificationOrBuilder.java | 36 +- .../cloud/talent/v4beta1/ClientEvent.java | 96 +- .../talent/v4beta1/ClientEventOrBuilder.java | 25 +- .../cloud/talent/v4beta1/CommuteFilter.java | 292 ++- .../v4beta1/CommuteFilterOrBuilder.java | 75 +- .../google/cloud/talent/v4beta1/Company.java | 275 ++- .../talent/v4beta1/CompanyOrBuilder.java | 79 +- .../talent/v4beta1/CompanyServiceProto.java | 107 +- .../talent/v4beta1/CompensationFilter.java | 128 +- .../v4beta1/CompensationFilterOrBuilder.java | 35 +- .../talent/v4beta1/CompensationInfo.java | 510 ++---- .../v4beta1/CompensationInfoOrBuilder.java | 15 +- .../talent/v4beta1/CompleteQueryRequest.java | 156 +- .../CompleteQueryRequestOrBuilder.java | 45 +- .../v4beta1/CompletionServiceProto.java | 70 +- .../v4beta1/CreateApplicationRequest.java | 64 +- .../CreateApplicationRequestOrBuilder.java | 17 +- .../v4beta1/CreateClientEventRequest.java | 81 +- .../CreateClientEventRequestOrBuilder.java | 21 +- .../talent/v4beta1/CreateCompanyRequest.java | 57 +- .../CreateCompanyRequestOrBuilder.java | 15 +- .../talent/v4beta1/CreateJobRequest.java | 57 +- .../v4beta1/CreateJobRequestOrBuilder.java | 15 +- .../talent/v4beta1/CreateProfileRequest.java | 57 +- .../CreateProfileRequestOrBuilder.java | 15 +- .../talent/v4beta1/CreateTenantRequest.java | 57 +- .../v4beta1/CreateTenantRequestOrBuilder.java | 15 +- .../cloud/talent/v4beta1/CustomAttribute.java | 20 +- .../v4beta1/CustomAttributeOrBuilder.java | 5 +- .../google/cloud/talent/v4beta1/Degree.java | 81 +- .../cloud/talent/v4beta1/DegreeOrBuilder.java | 24 +- .../v4beta1/DeleteApplicationRequest.java | 21 +- .../DeleteApplicationRequestOrBuilder.java | 6 +- .../talent/v4beta1/DeleteCompanyRequest.java | 21 +- .../DeleteCompanyRequestOrBuilder.java | 6 +- .../talent/v4beta1/DeleteJobRequest.java | 21 +- .../v4beta1/DeleteJobRequestOrBuilder.java | 6 +- .../talent/v4beta1/DeleteProfileRequest.java | 21 +- .../DeleteProfileRequestOrBuilder.java | 6 +- .../talent/v4beta1/DeleteTenantRequest.java | 21 +- .../v4beta1/DeleteTenantRequestOrBuilder.java | 6 +- .../cloud/talent/v4beta1/DeviceInfo.java | 42 +- .../talent/v4beta1/DeviceInfoOrBuilder.java | 12 +- .../cloud/talent/v4beta1/EducationFilter.java | 118 +- .../v4beta1/EducationFilterOrBuilder.java | 33 +- .../cloud/talent/v4beta1/EducationRecord.java | 279 +-- .../v4beta1/EducationRecordOrBuilder.java | 72 +- .../google/cloud/talent/v4beta1/Email.java | 49 +- .../cloud/talent/v4beta1/EmailOrBuilder.java | 14 +- .../cloud/talent/v4beta1/EmployerFilter.java | 62 +- .../v4beta1/EmployerFilterOrBuilder.java | 17 +- .../talent/v4beta1/EmploymentRecord.java | 300 ++-- .../v4beta1/EmploymentRecordOrBuilder.java | 78 +- .../talent/v4beta1/EventServiceProto.java | 37 +- .../cloud/talent/v4beta1/FiltersProto.java | 149 +- .../talent/v4beta1/GetApplicationRequest.java | 21 +- .../GetApplicationRequestOrBuilder.java | 6 +- .../talent/v4beta1/GetCompanyRequest.java | 21 +- .../v4beta1/GetCompanyRequestOrBuilder.java | 6 +- .../cloud/talent/v4beta1/GetJobRequest.java | 21 +- .../v4beta1/GetJobRequestOrBuilder.java | 6 +- .../talent/v4beta1/GetProfileRequest.java | 21 +- .../v4beta1/GetProfileRequestOrBuilder.java | 6 +- .../talent/v4beta1/GetTenantRequest.java | 21 +- .../v4beta1/GetTenantRequestOrBuilder.java | 6 +- .../cloud/talent/v4beta1/Interview.java | 71 +- .../talent/v4beta1/InterviewOrBuilder.java | 19 +- .../com/google/cloud/talent/v4beta1/Job.java | 1569 ++++++++-------- .../google/cloud/talent/v4beta1/JobEvent.java | 121 +- .../talent/v4beta1/JobEventOrBuilder.java | 36 +- .../cloud/talent/v4beta1/JobOrBuilder.java | 370 ++-- .../google/cloud/talent/v4beta1/JobQuery.java | 654 +++---- .../talent/v4beta1/JobQueryOrBuilder.java | 182 +- .../cloud/talent/v4beta1/JobServiceProto.java | 286 +-- .../cloud/talent/v4beta1/JobTitleFilter.java | 48 +- .../v4beta1/JobTitleFilterOrBuilder.java | 13 +- .../v4beta1/ListApplicationsRequest.java | 61 +- .../ListApplicationsRequestOrBuilder.java | 17 +- .../talent/v4beta1/ListCompaniesRequest.java | 86 +- .../ListCompaniesRequestOrBuilder.java | 23 +- .../cloud/talent/v4beta1/ListJobsRequest.java | 96 +- .../v4beta1/ListJobsRequestOrBuilder.java | 27 +- .../talent/v4beta1/ListProfilesRequest.java | 128 +- .../v4beta1/ListProfilesRequestOrBuilder.java | 34 +- .../talent/v4beta1/ListTenantsRequest.java | 54 +- .../v4beta1/ListTenantsRequestOrBuilder.java | 15 +- .../cloud/talent/v4beta1/LocationFilter.java | 196 +- .../v4beta1/LocationFilterOrBuilder.java | 53 +- .../google/cloud/talent/v4beta1/Patent.java | 285 +-- .../cloud/talent/v4beta1/PatentOrBuilder.java | 75 +- .../cloud/talent/v4beta1/PersonName.java | 319 ++-- .../talent/v4beta1/PersonNameOrBuilder.java | 29 +- .../cloud/talent/v4beta1/PersonalUri.java | 21 +- .../talent/v4beta1/PersonalUriOrBuilder.java | 6 +- .../google/cloud/talent/v4beta1/Phone.java | 91 +- .../cloud/talent/v4beta1/PhoneOrBuilder.java | 26 +- .../google/cloud/talent/v4beta1/Profile.java | 1583 +++++++---------- .../cloud/talent/v4beta1/ProfileEvent.java | 296 ++- .../talent/v4beta1/ProfileEventOrBuilder.java | 50 +- .../talent/v4beta1/ProfileOrBuilder.java | 374 ++-- .../cloud/talent/v4beta1/ProfileQuery.java | 1458 ++++++++------- .../talent/v4beta1/ProfileQueryOrBuilder.java | 298 ++-- .../talent/v4beta1/ProfileServiceProto.java | 154 +- .../cloud/talent/v4beta1/Publication.java | 222 +-- .../talent/v4beta1/PublicationOrBuilder.java | 63 +- .../cloud/talent/v4beta1/RequestMetadata.java | 72 +- .../v4beta1/RequestMetadataOrBuilder.java | 18 +- .../google/cloud/talent/v4beta1/Resume.java | 70 +- .../cloud/talent/v4beta1/ResumeOrBuilder.java | 20 +- .../talent/v4beta1/SearchJobsRequest.java | 993 +++++------ .../v4beta1/SearchJobsRequestOrBuilder.java | 239 ++- .../talent/v4beta1/SearchProfilesRequest.java | 706 +++++--- .../SearchProfilesRequestOrBuilder.java | 162 +- .../v4beta1/SearchProfilesResponse.java | 175 ++ .../SearchProfilesResponseOrBuilder.java | 25 + .../google/cloud/talent/v4beta1/Skill.java | 113 +- .../cloud/talent/v4beta1/SkillFilter.java | 41 +- .../talent/v4beta1/SkillFilterOrBuilder.java | 11 +- .../cloud/talent/v4beta1/SkillOrBuilder.java | 31 +- .../google/cloud/talent/v4beta1/Tenant.java | 195 +- .../cloud/talent/v4beta1/TenantOrBuilder.java | 58 +- .../talent/v4beta1/TenantResourceProto.java | 10 +- .../talent/v4beta1/TenantServiceProto.java | 89 +- .../cloud/talent/v4beta1/TimeFilter.java | 141 +- .../talent/v4beta1/TimeFilterOrBuilder.java | 36 +- .../v4beta1/UpdateApplicationRequest.java | 168 +- .../UpdateApplicationRequestOrBuilder.java | 42 +- .../talent/v4beta1/UpdateCompanyRequest.java | 168 +- .../UpdateCompanyRequestOrBuilder.java | 42 +- .../talent/v4beta1/UpdateJobRequest.java | 36 +- .../v4beta1/UpdateJobRequestOrBuilder.java | 9 +- .../talent/v4beta1/UpdateProfileRequest.java | 432 +++-- .../UpdateProfileRequestOrBuilder.java | 108 +- .../talent/v4beta1/UpdateTenantRequest.java | 168 +- .../v4beta1/UpdateTenantRequestOrBuilder.java | 42 +- .../talent/v4beta1/WorkExperienceFilter.java | 72 +- .../WorkExperienceFilterOrBuilder.java | 18 +- .../cloud/talent/v4beta1/application.proto | 47 +- .../talent/v4beta1/application_service.proto | 57 +- .../google/cloud/talent/v4beta1/common.proto | 117 +- .../google/cloud/talent/v4beta1/company.proto | 48 +- .../talent/v4beta1/company_service.proto | 70 +- .../talent/v4beta1/completion_service.proto | 34 +- .../google/cloud/talent/v4beta1/event.proto | 125 +- .../cloud/talent/v4beta1/event_service.proto | 16 +- .../google/cloud/talent/v4beta1/filters.proto | 370 ++-- .../google/cloud/talent/v4beta1/job.proto | 182 +- .../cloud/talent/v4beta1/job_service.proto | 216 +-- .../google/cloud/talent/v4beta1/profile.proto | 419 ++--- .../talent/v4beta1/profile_service.proto | 169 +- .../google/cloud/talent/v4beta1/tenant.proto | 26 +- .../cloud/talent/v4beta1/tenant_service.proto | 49 +- .../v4beta1/ApplicationServiceClient.java | 34 +- .../talent/v4beta1/CompanyServiceClient.java | 33 +- .../talent/v4beta1/EventServiceClient.java | 16 +- .../talent/v4beta1/JobServiceClient.java | 63 +- .../talent/v4beta1/ProfileServiceClient.java | 33 +- .../talent/v4beta1/TenantServiceClient.java | 33 +- .../google-cloud-talent/synth.metadata | 10 +- 183 files changed, 10357 insertions(+), 12348 deletions(-) create mode 100644 google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CandidateAvailabilityFilter.java create mode 100644 google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CandidateAvailabilityFilterOrBuilder.java diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Activity.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Activity.java index 3bf3ff6560fa..a352fdb64954 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Activity.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Activity.java @@ -203,8 +203,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * Activity display name.
+   * Optional. Activity display name.
    * Number of characters allowed is 100.
    * 
* @@ -225,8 +224,7 @@ public java.lang.String getDisplayName() { * * *
-   * Optional.
-   * Activity display name.
+   * Optional. Activity display name.
    * Number of characters allowed is 100.
    * 
* @@ -250,8 +248,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-   * Optional.
-   * Activity description.
+   * Optional. Activity description.
    * Number of characters allowed is 100,000.
    * 
* @@ -272,8 +269,7 @@ public java.lang.String getDescription() { * * *
-   * Optional.
-   * Activity description.
+   * Optional. Activity description.
    * Number of characters allowed is 100,000.
    * 
* @@ -297,8 +293,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-   * Optional.
-   * Activity URI.
+   * Optional. Activity URI.
    * Number of characters allowed is 4,000.
    * 
* @@ -319,8 +314,7 @@ public java.lang.String getUri() { * * *
-   * Optional.
-   * Activity URI.
+   * Optional. Activity URI.
    * Number of characters allowed is 4,000.
    * 
* @@ -344,8 +338,7 @@ public com.google.protobuf.ByteString getUriBytes() { * * *
-   * Optional.
-   * The first creation date of the activity.
+   * Optional. The first creation date of the activity.
    * 
* * .google.type.Date create_date = 4; @@ -357,8 +350,7 @@ public boolean hasCreateDate() { * * *
-   * Optional.
-   * The first creation date of the activity.
+   * Optional. The first creation date of the activity.
    * 
* * .google.type.Date create_date = 4; @@ -370,8 +362,7 @@ public com.google.type.Date getCreateDate() { * * *
-   * Optional.
-   * The first creation date of the activity.
+   * Optional. The first creation date of the activity.
    * 
* * .google.type.Date create_date = 4; @@ -386,8 +377,7 @@ public com.google.type.DateOrBuilder getCreateDateOrBuilder() { * * *
-   * Optional.
-   * The last update date of the activity.
+   * Optional. The last update date of the activity.
    * 
* * .google.type.Date update_date = 5; @@ -399,8 +389,7 @@ public boolean hasUpdateDate() { * * *
-   * Optional.
-   * The last update date of the activity.
+   * Optional. The last update date of the activity.
    * 
* * .google.type.Date update_date = 5; @@ -412,8 +401,7 @@ public com.google.type.Date getUpdateDate() { * * *
-   * Optional.
-   * The last update date of the activity.
+   * Optional. The last update date of the activity.
    * 
* * .google.type.Date update_date = 5; @@ -428,8 +416,7 @@ public com.google.type.DateOrBuilder getUpdateDateOrBuilder() { * * *
-   * Optional.
-   * A list of team members involved in this activity.
+   * Optional. A list of team members involved in this activity.
    * Number of characters allowed is 100.
    * 
* @@ -442,8 +429,7 @@ public com.google.protobuf.ProtocolStringList getTeamMembersList() { * * *
-   * Optional.
-   * A list of team members involved in this activity.
+   * Optional. A list of team members involved in this activity.
    * Number of characters allowed is 100.
    * 
* @@ -456,8 +442,7 @@ public int getTeamMembersCount() { * * *
-   * Optional.
-   * A list of team members involved in this activity.
+   * Optional. A list of team members involved in this activity.
    * Number of characters allowed is 100.
    * 
* @@ -470,8 +455,7 @@ public java.lang.String getTeamMembers(int index) { * * *
-   * Optional.
-   * A list of team members involved in this activity.
+   * Optional. A list of team members involved in this activity.
    * Number of characters allowed is 100.
    * 
* @@ -487,8 +471,7 @@ public com.google.protobuf.ByteString getTeamMembersBytes(int index) { * * *
-   * Optional.
-   * A list of skills used in this activity.
+   * Optional. A list of skills used in this activity.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -500,8 +483,7 @@ public java.util.List getSkillsUsedList() * * *
-   * Optional.
-   * A list of skills used in this activity.
+   * Optional. A list of skills used in this activity.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -514,8 +496,7 @@ public java.util.List getSkillsUsedList() * * *
-   * Optional.
-   * A list of skills used in this activity.
+   * Optional. A list of skills used in this activity.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -527,8 +508,7 @@ public int getSkillsUsedCount() { * * *
-   * Optional.
-   * A list of skills used in this activity.
+   * Optional. A list of skills used in this activity.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -540,8 +520,7 @@ public com.google.cloud.talent.v4beta1.Skill getSkillsUsed(int index) { * * *
-   * Optional.
-   * A list of skills used in this activity.
+   * Optional. A list of skills used in this activity.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -1289,8 +1268,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * Activity display name.
+     * Optional. Activity display name.
      * Number of characters allowed is 100.
      * 
* @@ -1311,8 +1289,7 @@ public java.lang.String getDisplayName() { * * *
-     * Optional.
-     * Activity display name.
+     * Optional. Activity display name.
      * Number of characters allowed is 100.
      * 
* @@ -1333,8 +1310,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-     * Optional.
-     * Activity display name.
+     * Optional. Activity display name.
      * Number of characters allowed is 100.
      * 
* @@ -1353,8 +1329,7 @@ public Builder setDisplayName(java.lang.String value) { * * *
-     * Optional.
-     * Activity display name.
+     * Optional. Activity display name.
      * Number of characters allowed is 100.
      * 
* @@ -1370,8 +1345,7 @@ public Builder clearDisplayName() { * * *
-     * Optional.
-     * Activity display name.
+     * Optional. Activity display name.
      * Number of characters allowed is 100.
      * 
* @@ -1393,8 +1367,7 @@ public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Activity description.
+     * Optional. Activity description.
      * Number of characters allowed is 100,000.
      * 
* @@ -1415,8 +1388,7 @@ public java.lang.String getDescription() { * * *
-     * Optional.
-     * Activity description.
+     * Optional. Activity description.
      * Number of characters allowed is 100,000.
      * 
* @@ -1437,8 +1409,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-     * Optional.
-     * Activity description.
+     * Optional. Activity description.
      * Number of characters allowed is 100,000.
      * 
* @@ -1457,8 +1428,7 @@ public Builder setDescription(java.lang.String value) { * * *
-     * Optional.
-     * Activity description.
+     * Optional. Activity description.
      * Number of characters allowed is 100,000.
      * 
* @@ -1474,8 +1444,7 @@ public Builder clearDescription() { * * *
-     * Optional.
-     * Activity description.
+     * Optional. Activity description.
      * Number of characters allowed is 100,000.
      * 
* @@ -1497,8 +1466,7 @@ public Builder setDescriptionBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Activity URI.
+     * Optional. Activity URI.
      * Number of characters allowed is 4,000.
      * 
* @@ -1519,8 +1487,7 @@ public java.lang.String getUri() { * * *
-     * Optional.
-     * Activity URI.
+     * Optional. Activity URI.
      * Number of characters allowed is 4,000.
      * 
* @@ -1541,8 +1508,7 @@ public com.google.protobuf.ByteString getUriBytes() { * * *
-     * Optional.
-     * Activity URI.
+     * Optional. Activity URI.
      * Number of characters allowed is 4,000.
      * 
* @@ -1561,8 +1527,7 @@ public Builder setUri(java.lang.String value) { * * *
-     * Optional.
-     * Activity URI.
+     * Optional. Activity URI.
      * Number of characters allowed is 4,000.
      * 
* @@ -1578,8 +1543,7 @@ public Builder clearUri() { * * *
-     * Optional.
-     * Activity URI.
+     * Optional. Activity URI.
      * Number of characters allowed is 4,000.
      * 
* @@ -1604,8 +1568,7 @@ public Builder setUriBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The first creation date of the activity.
+     * Optional. The first creation date of the activity.
      * 
* * .google.type.Date create_date = 4; @@ -1617,8 +1580,7 @@ public boolean hasCreateDate() { * * *
-     * Optional.
-     * The first creation date of the activity.
+     * Optional. The first creation date of the activity.
      * 
* * .google.type.Date create_date = 4; @@ -1634,8 +1596,7 @@ public com.google.type.Date getCreateDate() { * * *
-     * Optional.
-     * The first creation date of the activity.
+     * Optional. The first creation date of the activity.
      * 
* * .google.type.Date create_date = 4; @@ -1657,8 +1618,7 @@ public Builder setCreateDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The first creation date of the activity.
+     * Optional. The first creation date of the activity.
      * 
* * .google.type.Date create_date = 4; @@ -1677,8 +1637,7 @@ public Builder setCreateDate(com.google.type.Date.Builder builderForValue) { * * *
-     * Optional.
-     * The first creation date of the activity.
+     * Optional. The first creation date of the activity.
      * 
* * .google.type.Date create_date = 4; @@ -1702,8 +1661,7 @@ public Builder mergeCreateDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The first creation date of the activity.
+     * Optional. The first creation date of the activity.
      * 
* * .google.type.Date create_date = 4; @@ -1723,8 +1681,7 @@ public Builder clearCreateDate() { * * *
-     * Optional.
-     * The first creation date of the activity.
+     * Optional. The first creation date of the activity.
      * 
* * .google.type.Date create_date = 4; @@ -1738,8 +1695,7 @@ public com.google.type.Date.Builder getCreateDateBuilder() { * * *
-     * Optional.
-     * The first creation date of the activity.
+     * Optional. The first creation date of the activity.
      * 
* * .google.type.Date create_date = 4; @@ -1755,8 +1711,7 @@ public com.google.type.DateOrBuilder getCreateDateOrBuilder() { * * *
-     * Optional.
-     * The first creation date of the activity.
+     * Optional. The first creation date of the activity.
      * 
* * .google.type.Date create_date = 4; @@ -1782,8 +1737,7 @@ public com.google.type.DateOrBuilder getCreateDateOrBuilder() { * * *
-     * Optional.
-     * The last update date of the activity.
+     * Optional. The last update date of the activity.
      * 
* * .google.type.Date update_date = 5; @@ -1795,8 +1749,7 @@ public boolean hasUpdateDate() { * * *
-     * Optional.
-     * The last update date of the activity.
+     * Optional. The last update date of the activity.
      * 
* * .google.type.Date update_date = 5; @@ -1812,8 +1765,7 @@ public com.google.type.Date getUpdateDate() { * * *
-     * Optional.
-     * The last update date of the activity.
+     * Optional. The last update date of the activity.
      * 
* * .google.type.Date update_date = 5; @@ -1835,8 +1787,7 @@ public Builder setUpdateDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The last update date of the activity.
+     * Optional. The last update date of the activity.
      * 
* * .google.type.Date update_date = 5; @@ -1855,8 +1806,7 @@ public Builder setUpdateDate(com.google.type.Date.Builder builderForValue) { * * *
-     * Optional.
-     * The last update date of the activity.
+     * Optional. The last update date of the activity.
      * 
* * .google.type.Date update_date = 5; @@ -1880,8 +1830,7 @@ public Builder mergeUpdateDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The last update date of the activity.
+     * Optional. The last update date of the activity.
      * 
* * .google.type.Date update_date = 5; @@ -1901,8 +1850,7 @@ public Builder clearUpdateDate() { * * *
-     * Optional.
-     * The last update date of the activity.
+     * Optional. The last update date of the activity.
      * 
* * .google.type.Date update_date = 5; @@ -1916,8 +1864,7 @@ public com.google.type.Date.Builder getUpdateDateBuilder() { * * *
-     * Optional.
-     * The last update date of the activity.
+     * Optional. The last update date of the activity.
      * 
* * .google.type.Date update_date = 5; @@ -1933,8 +1880,7 @@ public com.google.type.DateOrBuilder getUpdateDateOrBuilder() { * * *
-     * Optional.
-     * The last update date of the activity.
+     * Optional. The last update date of the activity.
      * 
* * .google.type.Date update_date = 5; @@ -1965,8 +1911,7 @@ private void ensureTeamMembersIsMutable() { * * *
-     * Optional.
-     * A list of team members involved in this activity.
+     * Optional. A list of team members involved in this activity.
      * Number of characters allowed is 100.
      * 
* @@ -1979,8 +1924,7 @@ public com.google.protobuf.ProtocolStringList getTeamMembersList() { * * *
-     * Optional.
-     * A list of team members involved in this activity.
+     * Optional. A list of team members involved in this activity.
      * Number of characters allowed is 100.
      * 
* @@ -1993,8 +1937,7 @@ public int getTeamMembersCount() { * * *
-     * Optional.
-     * A list of team members involved in this activity.
+     * Optional. A list of team members involved in this activity.
      * Number of characters allowed is 100.
      * 
* @@ -2007,8 +1950,7 @@ public java.lang.String getTeamMembers(int index) { * * *
-     * Optional.
-     * A list of team members involved in this activity.
+     * Optional. A list of team members involved in this activity.
      * Number of characters allowed is 100.
      * 
* @@ -2021,8 +1963,7 @@ public com.google.protobuf.ByteString getTeamMembersBytes(int index) { * * *
-     * Optional.
-     * A list of team members involved in this activity.
+     * Optional. A list of team members involved in this activity.
      * Number of characters allowed is 100.
      * 
* @@ -2041,8 +1982,7 @@ public Builder setTeamMembers(int index, java.lang.String value) { * * *
-     * Optional.
-     * A list of team members involved in this activity.
+     * Optional. A list of team members involved in this activity.
      * Number of characters allowed is 100.
      * 
* @@ -2061,8 +2001,7 @@ public Builder addTeamMembers(java.lang.String value) { * * *
-     * Optional.
-     * A list of team members involved in this activity.
+     * Optional. A list of team members involved in this activity.
      * Number of characters allowed is 100.
      * 
* @@ -2078,8 +2017,7 @@ public Builder addAllTeamMembers(java.lang.Iterable values) { * * *
-     * Optional.
-     * A list of team members involved in this activity.
+     * Optional. A list of team members involved in this activity.
      * Number of characters allowed is 100.
      * 
* @@ -2095,8 +2033,7 @@ public Builder clearTeamMembers() { * * *
-     * Optional.
-     * A list of team members involved in this activity.
+     * Optional. A list of team members involved in this activity.
      * Number of characters allowed is 100.
      * 
* @@ -2133,8 +2070,7 @@ private void ensureSkillsUsedIsMutable() { * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2150,8 +2086,7 @@ public java.util.List getSkillsUsedList() * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2167,8 +2102,7 @@ public int getSkillsUsedCount() { * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2184,8 +2118,7 @@ public com.google.cloud.talent.v4beta1.Skill getSkillsUsed(int index) { * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2207,8 +2140,7 @@ public Builder setSkillsUsed(int index, com.google.cloud.talent.v4beta1.Skill va * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2228,8 +2160,7 @@ public Builder setSkillsUsed( * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2251,8 +2182,7 @@ public Builder addSkillsUsed(com.google.cloud.talent.v4beta1.Skill value) { * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2274,8 +2204,7 @@ public Builder addSkillsUsed(int index, com.google.cloud.talent.v4beta1.Skill va * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2294,8 +2223,7 @@ public Builder addSkillsUsed(com.google.cloud.talent.v4beta1.Skill.Builder build * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2315,8 +2243,7 @@ public Builder addSkillsUsed( * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2336,8 +2263,7 @@ public Builder addAllSkillsUsed( * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2356,8 +2282,7 @@ public Builder clearSkillsUsed() { * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2376,8 +2301,7 @@ public Builder removeSkillsUsed(int index) { * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2389,8 +2313,7 @@ public com.google.cloud.talent.v4beta1.Skill.Builder getSkillsUsedBuilder(int in * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2406,8 +2329,7 @@ public com.google.cloud.talent.v4beta1.SkillOrBuilder getSkillsUsedOrBuilder(int * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2424,8 +2346,7 @@ public com.google.cloud.talent.v4beta1.SkillOrBuilder getSkillsUsedOrBuilder(int * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2438,8 +2359,7 @@ public com.google.cloud.talent.v4beta1.Skill.Builder addSkillsUsedBuilder() { * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -2452,8 +2372,7 @@ public com.google.cloud.talent.v4beta1.Skill.Builder addSkillsUsedBuilder(int in * * *
-     * Optional.
-     * A list of skills used in this activity.
+     * Optional. A list of skills used in this activity.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ActivityOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ActivityOrBuilder.java index 107b5d3896e2..80afdda27288 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ActivityOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ActivityOrBuilder.java @@ -12,8 +12,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * Activity display name.
+   * Optional. Activity display name.
    * Number of characters allowed is 100.
    * 
* @@ -24,8 +23,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * Activity display name.
+   * Optional. Activity display name.
    * Number of characters allowed is 100.
    * 
* @@ -37,8 +35,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * Activity description.
+   * Optional. Activity description.
    * Number of characters allowed is 100,000.
    * 
* @@ -49,8 +46,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * Activity description.
+   * Optional. Activity description.
    * Number of characters allowed is 100,000.
    * 
* @@ -62,8 +58,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * Activity URI.
+   * Optional. Activity URI.
    * Number of characters allowed is 4,000.
    * 
* @@ -74,8 +69,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * Activity URI.
+   * Optional. Activity URI.
    * Number of characters allowed is 4,000.
    * 
* @@ -87,8 +81,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * The first creation date of the activity.
+   * Optional. The first creation date of the activity.
    * 
* * .google.type.Date create_date = 4; @@ -98,8 +91,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * The first creation date of the activity.
+   * Optional. The first creation date of the activity.
    * 
* * .google.type.Date create_date = 4; @@ -109,8 +101,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * The first creation date of the activity.
+   * Optional. The first creation date of the activity.
    * 
* * .google.type.Date create_date = 4; @@ -121,8 +112,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * The last update date of the activity.
+   * Optional. The last update date of the activity.
    * 
* * .google.type.Date update_date = 5; @@ -132,8 +122,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * The last update date of the activity.
+   * Optional. The last update date of the activity.
    * 
* * .google.type.Date update_date = 5; @@ -143,8 +132,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * The last update date of the activity.
+   * Optional. The last update date of the activity.
    * 
* * .google.type.Date update_date = 5; @@ -155,8 +143,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * A list of team members involved in this activity.
+   * Optional. A list of team members involved in this activity.
    * Number of characters allowed is 100.
    * 
* @@ -167,8 +154,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * A list of team members involved in this activity.
+   * Optional. A list of team members involved in this activity.
    * Number of characters allowed is 100.
    * 
* @@ -179,8 +165,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * A list of team members involved in this activity.
+   * Optional. A list of team members involved in this activity.
    * Number of characters allowed is 100.
    * 
* @@ -191,8 +176,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * A list of team members involved in this activity.
+   * Optional. A list of team members involved in this activity.
    * Number of characters allowed is 100.
    * 
* @@ -204,8 +188,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * A list of skills used in this activity.
+   * Optional. A list of skills used in this activity.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -215,8 +198,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * A list of skills used in this activity.
+   * Optional. A list of skills used in this activity.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -226,8 +208,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * A list of skills used in this activity.
+   * Optional. A list of skills used in this activity.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -237,8 +218,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * A list of skills used in this activity.
+   * Optional. A list of skills used in this activity.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; @@ -249,8 +229,7 @@ public interface ActivityOrBuilder * * *
-   * Optional.
-   * A list of skills used in this activity.
+   * Optional. A list of skills used in this activity.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 7; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AdditionalContactInfo.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AdditionalContactInfo.java index 4d4c0a769a79..5f5554a73f0b 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AdditionalContactInfo.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AdditionalContactInfo.java @@ -114,8 +114,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * The usage of this contact method. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of this contact method. For example, SCHOOL, WORK,
+   * PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -127,8 +127,8 @@ public int getUsageValue() { * * *
-   * Optional.
-   * The usage of this contact method. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of this contact method. For example, SCHOOL, WORK,
+   * PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -146,8 +146,7 @@ public com.google.cloud.talent.v4beta1.ContactInfoUsage getUsage() { * * *
-   * Optional.
-   * The name of the contact method.
+   * Optional. The name of the contact method.
    * For example, "hangout", "skype".
    * Number of characters allowed is 100.
    * 
@@ -169,8 +168,7 @@ public java.lang.String getName() { * * *
-   * Optional.
-   * The name of the contact method.
+   * Optional. The name of the contact method.
    * For example, "hangout", "skype".
    * Number of characters allowed is 100.
    * 
@@ -195,8 +193,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-   * Optional.
-   * The contact id.
+   * Optional. The contact id.
    * Number of characters allowed is 100.
    * 
* @@ -217,8 +214,7 @@ public java.lang.String getContactId() { * * *
-   * Optional.
-   * The contact id.
+   * Optional. The contact id.
    * Number of characters allowed is 100.
    * 
* @@ -596,8 +592,8 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * The usage of this contact method. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of this contact method. For example, SCHOOL, WORK,
+     * PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -609,8 +605,8 @@ public int getUsageValue() { * * *
-     * Optional.
-     * The usage of this contact method. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of this contact method. For example, SCHOOL, WORK,
+     * PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -624,8 +620,8 @@ public Builder setUsageValue(int value) { * * *
-     * Optional.
-     * The usage of this contact method. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of this contact method. For example, SCHOOL, WORK,
+     * PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -642,8 +638,8 @@ public com.google.cloud.talent.v4beta1.ContactInfoUsage getUsage() { * * *
-     * Optional.
-     * The usage of this contact method. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of this contact method. For example, SCHOOL, WORK,
+     * PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -661,8 +657,8 @@ public Builder setUsage(com.google.cloud.talent.v4beta1.ContactInfoUsage value) * * *
-     * Optional.
-     * The usage of this contact method. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of this contact method. For example, SCHOOL, WORK,
+     * PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -679,8 +675,7 @@ public Builder clearUsage() { * * *
-     * Optional.
-     * The name of the contact method.
+     * Optional. The name of the contact method.
      * For example, "hangout", "skype".
      * Number of characters allowed is 100.
      * 
@@ -702,8 +697,7 @@ public java.lang.String getName() { * * *
-     * Optional.
-     * The name of the contact method.
+     * Optional. The name of the contact method.
      * For example, "hangout", "skype".
      * Number of characters allowed is 100.
      * 
@@ -725,8 +719,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-     * Optional.
-     * The name of the contact method.
+     * Optional. The name of the contact method.
      * For example, "hangout", "skype".
      * Number of characters allowed is 100.
      * 
@@ -746,8 +739,7 @@ public Builder setName(java.lang.String value) { * * *
-     * Optional.
-     * The name of the contact method.
+     * Optional. The name of the contact method.
      * For example, "hangout", "skype".
      * Number of characters allowed is 100.
      * 
@@ -764,8 +756,7 @@ public Builder clearName() { * * *
-     * Optional.
-     * The name of the contact method.
+     * Optional. The name of the contact method.
      * For example, "hangout", "skype".
      * Number of characters allowed is 100.
      * 
@@ -788,8 +779,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The contact id.
+     * Optional. The contact id.
      * Number of characters allowed is 100.
      * 
* @@ -810,8 +800,7 @@ public java.lang.String getContactId() { * * *
-     * Optional.
-     * The contact id.
+     * Optional. The contact id.
      * Number of characters allowed is 100.
      * 
* @@ -832,8 +821,7 @@ public com.google.protobuf.ByteString getContactIdBytes() { * * *
-     * Optional.
-     * The contact id.
+     * Optional. The contact id.
      * Number of characters allowed is 100.
      * 
* @@ -852,8 +840,7 @@ public Builder setContactId(java.lang.String value) { * * *
-     * Optional.
-     * The contact id.
+     * Optional. The contact id.
      * Number of characters allowed is 100.
      * 
* @@ -869,8 +856,7 @@ public Builder clearContactId() { * * *
-     * Optional.
-     * The contact id.
+     * Optional. The contact id.
      * Number of characters allowed is 100.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AdditionalContactInfoOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AdditionalContactInfoOrBuilder.java index 748996afaf36..dc3a394bfeaf 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AdditionalContactInfoOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AdditionalContactInfoOrBuilder.java @@ -12,8 +12,8 @@ public interface AdditionalContactInfoOrBuilder * * *
-   * Optional.
-   * The usage of this contact method. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of this contact method. For example, SCHOOL, WORK,
+   * PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -23,8 +23,8 @@ public interface AdditionalContactInfoOrBuilder * * *
-   * Optional.
-   * The usage of this contact method. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of this contact method. For example, SCHOOL, WORK,
+   * PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -35,8 +35,7 @@ public interface AdditionalContactInfoOrBuilder * * *
-   * Optional.
-   * The name of the contact method.
+   * Optional. The name of the contact method.
    * For example, "hangout", "skype".
    * Number of characters allowed is 100.
    * 
@@ -48,8 +47,7 @@ public interface AdditionalContactInfoOrBuilder * * *
-   * Optional.
-   * The name of the contact method.
+   * Optional. The name of the contact method.
    * For example, "hangout", "skype".
    * Number of characters allowed is 100.
    * 
@@ -62,8 +60,7 @@ public interface AdditionalContactInfoOrBuilder * * *
-   * Optional.
-   * The contact id.
+   * Optional. The contact id.
    * Number of characters allowed is 100.
    * 
* @@ -74,8 +71,7 @@ public interface AdditionalContactInfoOrBuilder * * *
-   * Optional.
-   * The contact id.
+   * Optional. The contact id.
    * Number of characters allowed is 100.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Address.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Address.java index 3621c0b06c27..358021ee9641 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Address.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Address.java @@ -174,8 +174,7 @@ public AddressCase getAddressCase() { * * *
-   * Optional.
-   * The usage of the address. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the address. For example, SCHOOL, WORK, PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -187,8 +186,7 @@ public int getUsageValue() { * * *
-   * Optional.
-   * The usage of the address. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the address. For example, SCHOOL, WORK, PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -205,8 +203,7 @@ public com.google.cloud.talent.v4beta1.ContactInfoUsage getUsage() { * * *
-   * Optional.
-   * Unstructured address.
+   * Optional. Unstructured address.
    * For example, "1600 Amphitheatre Pkwy, Mountain View, CA 94043",
    * "Sunnyvale, California".
    * Number of characters allowed is 100.
@@ -234,8 +231,7 @@ public java.lang.String getUnstructuredAddress() {
    *
    *
    * 
-   * Optional.
-   * Unstructured address.
+   * Optional. Unstructured address.
    * For example, "1600 Amphitheatre Pkwy, Mountain View, CA 94043",
    * "Sunnyvale, California".
    * Number of characters allowed is 100.
@@ -265,9 +261,8 @@ public com.google.protobuf.ByteString getUnstructuredAddressBytes() {
    *
    *
    * 
-   * Optional.
-   * Structured address that contains street address, city, state, country,
-   * and so on.
+   * Optional. Structured address that contains street address, city, state,
+   * country, and so on.
    * 
* * .google.type.PostalAddress structured_address = 3; @@ -279,9 +274,8 @@ public boolean hasStructuredAddress() { * * *
-   * Optional.
-   * Structured address that contains street address, city, state, country,
-   * and so on.
+   * Optional. Structured address that contains street address, city, state,
+   * country, and so on.
    * 
* * .google.type.PostalAddress structured_address = 3; @@ -296,9 +290,8 @@ public com.google.type.PostalAddress getStructuredAddress() { * * *
-   * Optional.
-   * Structured address that contains street address, city, state, country,
-   * and so on.
+   * Optional. Structured address that contains street address, city, state,
+   * country, and so on.
    * 
* * .google.type.PostalAddress structured_address = 3; @@ -316,8 +309,7 @@ public com.google.type.PostalAddressOrBuilder getStructuredAddressOrBuilder() { * * *
-   * Optional.
-   * Indicates if it's the person's current address.
+   * Optional. Indicates if it's the person's current address.
    * 
* * .google.protobuf.BoolValue current = 4; @@ -329,8 +321,7 @@ public boolean hasCurrent() { * * *
-   * Optional.
-   * Indicates if it's the person's current address.
+   * Optional. Indicates if it's the person's current address.
    * 
* * .google.protobuf.BoolValue current = 4; @@ -342,8 +333,7 @@ public com.google.protobuf.BoolValue getCurrent() { * * *
-   * Optional.
-   * Indicates if it's the person's current address.
+   * Optional. Indicates if it's the person's current address.
    * 
* * .google.protobuf.BoolValue current = 4; @@ -785,8 +775,7 @@ public Builder clearAddress() { * * *
-     * Optional.
-     * The usage of the address. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the address. For example, SCHOOL, WORK, PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -798,8 +787,7 @@ public int getUsageValue() { * * *
-     * Optional.
-     * The usage of the address. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the address. For example, SCHOOL, WORK, PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -813,8 +801,7 @@ public Builder setUsageValue(int value) { * * *
-     * Optional.
-     * The usage of the address. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the address. For example, SCHOOL, WORK, PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -831,8 +818,7 @@ public com.google.cloud.talent.v4beta1.ContactInfoUsage getUsage() { * * *
-     * Optional.
-     * The usage of the address. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the address. For example, SCHOOL, WORK, PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -850,8 +836,7 @@ public Builder setUsage(com.google.cloud.talent.v4beta1.ContactInfoUsage value) * * *
-     * Optional.
-     * The usage of the address. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the address. For example, SCHOOL, WORK, PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -867,8 +852,7 @@ public Builder clearUsage() { * * *
-     * Optional.
-     * Unstructured address.
+     * Optional. Unstructured address.
      * For example, "1600 Amphitheatre Pkwy, Mountain View, CA 94043",
      * "Sunnyvale, California".
      * Number of characters allowed is 100.
@@ -896,8 +880,7 @@ public java.lang.String getUnstructuredAddress() {
      *
      *
      * 
-     * Optional.
-     * Unstructured address.
+     * Optional. Unstructured address.
      * For example, "1600 Amphitheatre Pkwy, Mountain View, CA 94043",
      * "Sunnyvale, California".
      * Number of characters allowed is 100.
@@ -925,8 +908,7 @@ public com.google.protobuf.ByteString getUnstructuredAddressBytes() {
      *
      *
      * 
-     * Optional.
-     * Unstructured address.
+     * Optional. Unstructured address.
      * For example, "1600 Amphitheatre Pkwy, Mountain View, CA 94043",
      * "Sunnyvale, California".
      * Number of characters allowed is 100.
@@ -947,8 +929,7 @@ public Builder setUnstructuredAddress(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * Unstructured address.
+     * Optional. Unstructured address.
      * For example, "1600 Amphitheatre Pkwy, Mountain View, CA 94043",
      * "Sunnyvale, California".
      * Number of characters allowed is 100.
@@ -968,8 +949,7 @@ public Builder clearUnstructuredAddress() {
      *
      *
      * 
-     * Optional.
-     * Unstructured address.
+     * Optional. Unstructured address.
      * For example, "1600 Amphitheatre Pkwy, Mountain View, CA 94043",
      * "Sunnyvale, California".
      * Number of characters allowed is 100.
@@ -997,9 +977,8 @@ public Builder setUnstructuredAddressBytes(com.google.protobuf.ByteString value)
      *
      *
      * 
-     * Optional.
-     * Structured address that contains street address, city, state, country,
-     * and so on.
+     * Optional. Structured address that contains street address, city, state,
+     * country, and so on.
      * 
* * .google.type.PostalAddress structured_address = 3; @@ -1011,9 +990,8 @@ public boolean hasStructuredAddress() { * * *
-     * Optional.
-     * Structured address that contains street address, city, state, country,
-     * and so on.
+     * Optional. Structured address that contains street address, city, state,
+     * country, and so on.
      * 
* * .google.type.PostalAddress structured_address = 3; @@ -1035,9 +1013,8 @@ public com.google.type.PostalAddress getStructuredAddress() { * * *
-     * Optional.
-     * Structured address that contains street address, city, state, country,
-     * and so on.
+     * Optional. Structured address that contains street address, city, state,
+     * country, and so on.
      * 
* * .google.type.PostalAddress structured_address = 3; @@ -1059,9 +1036,8 @@ public Builder setStructuredAddress(com.google.type.PostalAddress value) { * * *
-     * Optional.
-     * Structured address that contains street address, city, state, country,
-     * and so on.
+     * Optional. Structured address that contains street address, city, state,
+     * country, and so on.
      * 
* * .google.type.PostalAddress structured_address = 3; @@ -1080,9 +1056,8 @@ public Builder setStructuredAddress(com.google.type.PostalAddress.Builder builde * * *
-     * Optional.
-     * Structured address that contains street address, city, state, country,
-     * and so on.
+     * Optional. Structured address that contains street address, city, state,
+     * country, and so on.
      * 
* * .google.type.PostalAddress structured_address = 3; @@ -1111,9 +1086,8 @@ public Builder mergeStructuredAddress(com.google.type.PostalAddress value) { * * *
-     * Optional.
-     * Structured address that contains street address, city, state, country,
-     * and so on.
+     * Optional. Structured address that contains street address, city, state,
+     * country, and so on.
      * 
* * .google.type.PostalAddress structured_address = 3; @@ -1138,9 +1112,8 @@ public Builder clearStructuredAddress() { * * *
-     * Optional.
-     * Structured address that contains street address, city, state, country,
-     * and so on.
+     * Optional. Structured address that contains street address, city, state,
+     * country, and so on.
      * 
* * .google.type.PostalAddress structured_address = 3; @@ -1152,9 +1125,8 @@ public com.google.type.PostalAddress.Builder getStructuredAddressBuilder() { * * *
-     * Optional.
-     * Structured address that contains street address, city, state, country,
-     * and so on.
+     * Optional. Structured address that contains street address, city, state,
+     * country, and so on.
      * 
* * .google.type.PostalAddress structured_address = 3; @@ -1173,9 +1145,8 @@ public com.google.type.PostalAddressOrBuilder getStructuredAddressOrBuilder() { * * *
-     * Optional.
-     * Structured address that contains street address, city, state, country,
-     * and so on.
+     * Optional. Structured address that contains street address, city, state,
+     * country, and so on.
      * 
* * .google.type.PostalAddress structured_address = 3; @@ -1213,8 +1184,7 @@ public com.google.type.PostalAddressOrBuilder getStructuredAddressOrBuilder() { * * *
-     * Optional.
-     * Indicates if it's the person's current address.
+     * Optional. Indicates if it's the person's current address.
      * 
* * .google.protobuf.BoolValue current = 4; @@ -1226,8 +1196,7 @@ public boolean hasCurrent() { * * *
-     * Optional.
-     * Indicates if it's the person's current address.
+     * Optional. Indicates if it's the person's current address.
      * 
* * .google.protobuf.BoolValue current = 4; @@ -1243,8 +1212,7 @@ public com.google.protobuf.BoolValue getCurrent() { * * *
-     * Optional.
-     * Indicates if it's the person's current address.
+     * Optional. Indicates if it's the person's current address.
      * 
* * .google.protobuf.BoolValue current = 4; @@ -1266,8 +1234,7 @@ public Builder setCurrent(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * Indicates if it's the person's current address.
+     * Optional. Indicates if it's the person's current address.
      * 
* * .google.protobuf.BoolValue current = 4; @@ -1286,8 +1253,7 @@ public Builder setCurrent(com.google.protobuf.BoolValue.Builder builderForValue) * * *
-     * Optional.
-     * Indicates if it's the person's current address.
+     * Optional. Indicates if it's the person's current address.
      * 
* * .google.protobuf.BoolValue current = 4; @@ -1311,8 +1277,7 @@ public Builder mergeCurrent(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * Indicates if it's the person's current address.
+     * Optional. Indicates if it's the person's current address.
      * 
* * .google.protobuf.BoolValue current = 4; @@ -1332,8 +1297,7 @@ public Builder clearCurrent() { * * *
-     * Optional.
-     * Indicates if it's the person's current address.
+     * Optional. Indicates if it's the person's current address.
      * 
* * .google.protobuf.BoolValue current = 4; @@ -1347,8 +1311,7 @@ public com.google.protobuf.BoolValue.Builder getCurrentBuilder() { * * *
-     * Optional.
-     * Indicates if it's the person's current address.
+     * Optional. Indicates if it's the person's current address.
      * 
* * .google.protobuf.BoolValue current = 4; @@ -1364,8 +1327,7 @@ public com.google.protobuf.BoolValueOrBuilder getCurrentOrBuilder() { * * *
-     * Optional.
-     * Indicates if it's the person's current address.
+     * Optional. Indicates if it's the person's current address.
      * 
* * .google.protobuf.BoolValue current = 4; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AddressOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AddressOrBuilder.java index d3ea0b599787..4015290b4400 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AddressOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/AddressOrBuilder.java @@ -12,8 +12,7 @@ public interface AddressOrBuilder * * *
-   * Optional.
-   * The usage of the address. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the address. For example, SCHOOL, WORK, PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -23,8 +22,7 @@ public interface AddressOrBuilder * * *
-   * Optional.
-   * The usage of the address. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the address. For example, SCHOOL, WORK, PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -35,8 +33,7 @@ public interface AddressOrBuilder * * *
-   * Optional.
-   * Unstructured address.
+   * Optional. Unstructured address.
    * For example, "1600 Amphitheatre Pkwy, Mountain View, CA 94043",
    * "Sunnyvale, California".
    * Number of characters allowed is 100.
@@ -49,8 +46,7 @@ public interface AddressOrBuilder
    *
    *
    * 
-   * Optional.
-   * Unstructured address.
+   * Optional. Unstructured address.
    * For example, "1600 Amphitheatre Pkwy, Mountain View, CA 94043",
    * "Sunnyvale, California".
    * Number of characters allowed is 100.
@@ -64,9 +60,8 @@ public interface AddressOrBuilder
    *
    *
    * 
-   * Optional.
-   * Structured address that contains street address, city, state, country,
-   * and so on.
+   * Optional. Structured address that contains street address, city, state,
+   * country, and so on.
    * 
* * .google.type.PostalAddress structured_address = 3; @@ -76,9 +71,8 @@ public interface AddressOrBuilder * * *
-   * Optional.
-   * Structured address that contains street address, city, state, country,
-   * and so on.
+   * Optional. Structured address that contains street address, city, state,
+   * country, and so on.
    * 
* * .google.type.PostalAddress structured_address = 3; @@ -88,9 +82,8 @@ public interface AddressOrBuilder * * *
-   * Optional.
-   * Structured address that contains street address, city, state, country,
-   * and so on.
+   * Optional. Structured address that contains street address, city, state,
+   * country, and so on.
    * 
* * .google.type.PostalAddress structured_address = 3; @@ -101,8 +94,7 @@ public interface AddressOrBuilder * * *
-   * Optional.
-   * Indicates if it's the person's current address.
+   * Optional. Indicates if it's the person's current address.
    * 
* * .google.protobuf.BoolValue current = 4; @@ -112,8 +104,7 @@ public interface AddressOrBuilder * * *
-   * Optional.
-   * Indicates if it's the person's current address.
+   * Optional. Indicates if it's the person's current address.
    * 
* * .google.protobuf.BoolValue current = 4; @@ -123,8 +114,7 @@ public interface AddressOrBuilder * * *
-   * Optional.
-   * Indicates if it's the person's current address.
+   * Optional. Indicates if it's the person's current address.
    * 
* * .google.protobuf.BoolValue current = 4; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Application.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Application.java index 3e1c65e83d88..bba7aceaca6e 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Application.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Application.java @@ -799,8 +799,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-   * Required.
-   * Client side application identifier, used to uniquely identify the
+   * Required. Client side application identifier, used to uniquely identify the
    * application.
    * The maximum number of allowed characters is 255.
    * 
@@ -822,8 +821,7 @@ public java.lang.String getExternalId() { * * *
-   * Required.
-   * Client side application identifier, used to uniquely identify the
+   * Required. Client side application identifier, used to uniquely identify the
    * application.
    * The maximum number of allowed characters is 255.
    * 
@@ -999,8 +997,7 @@ public com.google.protobuf.ByteString getCompanyBytes() { * * *
-   * Optional.
-   * The application date.
+   * Optional. The application date.
    * 
* * .google.type.Date application_date = 7; @@ -1012,8 +1009,7 @@ public boolean hasApplicationDate() { * * *
-   * Optional.
-   * The application date.
+   * Optional. The application date.
    * 
* * .google.type.Date application_date = 7; @@ -1025,8 +1021,7 @@ public com.google.type.Date getApplicationDate() { * * *
-   * Optional.
-   * The application date.
+   * Optional. The application date.
    * 
* * .google.type.Date application_date = 7; @@ -1041,9 +1036,8 @@ public com.google.type.DateOrBuilder getApplicationDateOrBuilder() { * * *
-   * Required.
-   * What is the most recent stage of the application (that is, new, screen,
-   * send cv, hired, finished work)?  This field is intentionally not
+   * Required. What is the most recent stage of the application (that is, new,
+   * screen, send cv, hired, finished work)?  This field is intentionally not
    * comprehensive of every possible status, but instead, represents statuses
    * that would be used to indicate to the ML models good / bad matches.
    * 
@@ -1057,9 +1051,8 @@ public int getStageValue() { * * *
-   * Required.
-   * What is the most recent stage of the application (that is, new, screen,
-   * send cv, hired, finished work)?  This field is intentionally not
+   * Required. What is the most recent stage of the application (that is, new,
+   * screen, send cv, hired, finished work)?  This field is intentionally not
    * comprehensive of every possible status, but instead, represents statuses
    * that would be used to indicate to the ML models good / bad matches.
    * 
@@ -1081,8 +1074,7 @@ public com.google.cloud.talent.v4beta1.Application.ApplicationStage getStage() { * * *
-   * Optional.
-   * The application state.
+   * Optional. The application state.
    * 
* * .google.cloud.talent.v4beta1.Application.ApplicationState state = 13; @@ -1094,8 +1086,7 @@ public int getStateValue() { * * *
-   * Optional.
-   * The application state.
+   * Optional. The application state.
    * 
* * .google.cloud.talent.v4beta1.Application.ApplicationState state = 13; @@ -1115,9 +1106,8 @@ public com.google.cloud.talent.v4beta1.Application.ApplicationState getState() { * * *
-   * Optional.
-   * All interviews (screen, onsite, and so on) conducted as part of this
-   * application (includes details such as user conducting the interview,
+   * Optional. All interviews (screen, onsite, and so on) conducted as part of
+   * this application (includes details such as user conducting the interview,
    * timestamp, feedback, and so on).
    * 
* @@ -1130,9 +1120,8 @@ public java.util.List getInterviewsLi * * *
-   * Optional.
-   * All interviews (screen, onsite, and so on) conducted as part of this
-   * application (includes details such as user conducting the interview,
+   * Optional. All interviews (screen, onsite, and so on) conducted as part of
+   * this application (includes details such as user conducting the interview,
    * timestamp, feedback, and so on).
    * 
* @@ -1146,9 +1135,8 @@ public java.util.List getInterviewsLi * * *
-   * Optional.
-   * All interviews (screen, onsite, and so on) conducted as part of this
-   * application (includes details such as user conducting the interview,
+   * Optional. All interviews (screen, onsite, and so on) conducted as part of
+   * this application (includes details such as user conducting the interview,
    * timestamp, feedback, and so on).
    * 
* @@ -1161,9 +1149,8 @@ public int getInterviewsCount() { * * *
-   * Optional.
-   * All interviews (screen, onsite, and so on) conducted as part of this
-   * application (includes details such as user conducting the interview,
+   * Optional. All interviews (screen, onsite, and so on) conducted as part of
+   * this application (includes details such as user conducting the interview,
    * timestamp, feedback, and so on).
    * 
* @@ -1176,9 +1163,8 @@ public com.google.cloud.talent.v4beta1.Interview getInterviews(int index) { * * *
-   * Optional.
-   * All interviews (screen, onsite, and so on) conducted as part of this
-   * application (includes details such as user conducting the interview,
+   * Optional. All interviews (screen, onsite, and so on) conducted as part of
+   * this application (includes details such as user conducting the interview,
    * timestamp, feedback, and so on).
    * 
* @@ -1194,8 +1180,7 @@ public com.google.cloud.talent.v4beta1.InterviewOrBuilder getInterviewsOrBuilder * * *
-   * Optional.
-   * If the candidate is referred by a employee.
+   * Optional. If the candidate is referred by a employee.
    * 
* * .google.protobuf.BoolValue referral = 18; @@ -1207,8 +1192,7 @@ public boolean hasReferral() { * * *
-   * Optional.
-   * If the candidate is referred by a employee.
+   * Optional. If the candidate is referred by a employee.
    * 
* * .google.protobuf.BoolValue referral = 18; @@ -1220,8 +1204,7 @@ public com.google.protobuf.BoolValue getReferral() { * * *
-   * Optional.
-   * If the candidate is referred by a employee.
+   * Optional. If the candidate is referred by a employee.
    * 
* * .google.protobuf.BoolValue referral = 18; @@ -1236,8 +1219,7 @@ public com.google.protobuf.BoolValueOrBuilder getReferralOrBuilder() { * * *
-   * Required.
-   * Reflects the time that the application was created.
+   * Required. Reflects the time that the application was created.
    * 
* * .google.protobuf.Timestamp create_time = 19; @@ -1249,8 +1231,7 @@ public boolean hasCreateTime() { * * *
-   * Required.
-   * Reflects the time that the application was created.
+   * Required. Reflects the time that the application was created.
    * 
* * .google.protobuf.Timestamp create_time = 19; @@ -1262,8 +1243,7 @@ public com.google.protobuf.Timestamp getCreateTime() { * * *
-   * Required.
-   * Reflects the time that the application was created.
+   * Required. Reflects the time that the application was created.
    * 
* * .google.protobuf.Timestamp create_time = 19; @@ -1278,8 +1258,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() { * * *
-   * Optional.
-   * The last update timestamp.
+   * Optional. The last update timestamp.
    * 
* * .google.protobuf.Timestamp update_time = 20; @@ -1291,8 +1270,7 @@ public boolean hasUpdateTime() { * * *
-   * Optional.
-   * The last update timestamp.
+   * Optional. The last update timestamp.
    * 
* * .google.protobuf.Timestamp update_time = 20; @@ -1304,8 +1282,7 @@ public com.google.protobuf.Timestamp getUpdateTime() { * * *
-   * Optional.
-   * The last update timestamp.
+   * Optional. The last update timestamp.
    * 
* * .google.protobuf.Timestamp update_time = 20; @@ -1320,9 +1297,9 @@ public com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder() { * * *
-   * Optional.
-   * Free text reason behind the recruitement outcome (for example, reason for
-   * withdraw / reject, reason for an unsuccessful finish, and so on).
+   * Optional. Free text reason behind the recruitement outcome (for example,
+   * reason for withdraw / reject, reason for an unsuccessful finish, and so
+   * on).
    * Number of characters allowed is 100.
    * 
* @@ -1343,9 +1320,9 @@ public java.lang.String getOutcomeNotes() { * * *
-   * Optional.
-   * Free text reason behind the recruitement outcome (for example, reason for
-   * withdraw / reject, reason for an unsuccessful finish, and so on).
+   * Optional. Free text reason behind the recruitement outcome (for example,
+   * reason for withdraw / reject, reason for an unsuccessful finish, and so
+   * on).
    * Number of characters allowed is 100.
    * 
* @@ -1369,8 +1346,7 @@ public com.google.protobuf.ByteString getOutcomeNotesBytes() { * * *
-   * Optional.
-   * Outcome positiveness shows how positive the outcome is.
+   * Optional. Outcome positiveness shows how positive the outcome is.
    * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 22; @@ -1382,8 +1358,7 @@ public int getOutcomeValue() { * * *
-   * Optional.
-   * Outcome positiveness shows how positive the outcome is.
+   * Optional. Outcome positiveness shows how positive the outcome is.
    * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 22; @@ -2280,8 +2255,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Required.
-     * Client side application identifier, used to uniquely identify the
+     * Required. Client side application identifier, used to uniquely identify the
      * application.
      * The maximum number of allowed characters is 255.
      * 
@@ -2303,8 +2277,7 @@ public java.lang.String getExternalId() { * * *
-     * Required.
-     * Client side application identifier, used to uniquely identify the
+     * Required. Client side application identifier, used to uniquely identify the
      * application.
      * The maximum number of allowed characters is 255.
      * 
@@ -2326,8 +2299,7 @@ public com.google.protobuf.ByteString getExternalIdBytes() { * * *
-     * Required.
-     * Client side application identifier, used to uniquely identify the
+     * Required. Client side application identifier, used to uniquely identify the
      * application.
      * The maximum number of allowed characters is 255.
      * 
@@ -2347,8 +2319,7 @@ public Builder setExternalId(java.lang.String value) { * * *
-     * Required.
-     * Client side application identifier, used to uniquely identify the
+     * Required. Client side application identifier, used to uniquely identify the
      * application.
      * The maximum number of allowed characters is 255.
      * 
@@ -2365,8 +2336,7 @@ public Builder clearExternalId() { * * *
-     * Required.
-     * Client side application identifier, used to uniquely identify the
+     * Required. Client side application identifier, used to uniquely identify the
      * application.
      * The maximum number of allowed characters is 255.
      * 
@@ -2729,8 +2699,7 @@ public Builder setCompanyBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The application date.
+     * Optional. The application date.
      * 
* * .google.type.Date application_date = 7; @@ -2742,8 +2711,7 @@ public boolean hasApplicationDate() { * * *
-     * Optional.
-     * The application date.
+     * Optional. The application date.
      * 
* * .google.type.Date application_date = 7; @@ -2761,8 +2729,7 @@ public com.google.type.Date getApplicationDate() { * * *
-     * Optional.
-     * The application date.
+     * Optional. The application date.
      * 
* * .google.type.Date application_date = 7; @@ -2784,8 +2751,7 @@ public Builder setApplicationDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The application date.
+     * Optional. The application date.
      * 
* * .google.type.Date application_date = 7; @@ -2804,8 +2770,7 @@ public Builder setApplicationDate(com.google.type.Date.Builder builderForValue) * * *
-     * Optional.
-     * The application date.
+     * Optional. The application date.
      * 
* * .google.type.Date application_date = 7; @@ -2829,8 +2794,7 @@ public Builder mergeApplicationDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The application date.
+     * Optional. The application date.
      * 
* * .google.type.Date application_date = 7; @@ -2850,8 +2814,7 @@ public Builder clearApplicationDate() { * * *
-     * Optional.
-     * The application date.
+     * Optional. The application date.
      * 
* * .google.type.Date application_date = 7; @@ -2865,8 +2828,7 @@ public com.google.type.Date.Builder getApplicationDateBuilder() { * * *
-     * Optional.
-     * The application date.
+     * Optional. The application date.
      * 
* * .google.type.Date application_date = 7; @@ -2884,8 +2846,7 @@ public com.google.type.DateOrBuilder getApplicationDateOrBuilder() { * * *
-     * Optional.
-     * The application date.
+     * Optional. The application date.
      * 
* * .google.type.Date application_date = 7; @@ -2908,9 +2869,8 @@ public com.google.type.DateOrBuilder getApplicationDateOrBuilder() { * * *
-     * Required.
-     * What is the most recent stage of the application (that is, new, screen,
-     * send cv, hired, finished work)?  This field is intentionally not
+     * Required. What is the most recent stage of the application (that is, new,
+     * screen, send cv, hired, finished work)?  This field is intentionally not
      * comprehensive of every possible status, but instead, represents statuses
      * that would be used to indicate to the ML models good / bad matches.
      * 
@@ -2924,9 +2884,8 @@ public int getStageValue() { * * *
-     * Required.
-     * What is the most recent stage of the application (that is, new, screen,
-     * send cv, hired, finished work)?  This field is intentionally not
+     * Required. What is the most recent stage of the application (that is, new,
+     * screen, send cv, hired, finished work)?  This field is intentionally not
      * comprehensive of every possible status, but instead, represents statuses
      * that would be used to indicate to the ML models good / bad matches.
      * 
@@ -2942,9 +2901,8 @@ public Builder setStageValue(int value) { * * *
-     * Required.
-     * What is the most recent stage of the application (that is, new, screen,
-     * send cv, hired, finished work)?  This field is intentionally not
+     * Required. What is the most recent stage of the application (that is, new,
+     * screen, send cv, hired, finished work)?  This field is intentionally not
      * comprehensive of every possible status, but instead, represents statuses
      * that would be used to indicate to the ML models good / bad matches.
      * 
@@ -2963,9 +2921,8 @@ public com.google.cloud.talent.v4beta1.Application.ApplicationStage getStage() { * * *
-     * Required.
-     * What is the most recent stage of the application (that is, new, screen,
-     * send cv, hired, finished work)?  This field is intentionally not
+     * Required. What is the most recent stage of the application (that is, new,
+     * screen, send cv, hired, finished work)?  This field is intentionally not
      * comprehensive of every possible status, but instead, represents statuses
      * that would be used to indicate to the ML models good / bad matches.
      * 
@@ -2985,9 +2942,8 @@ public Builder setStage(com.google.cloud.talent.v4beta1.Application.ApplicationS * * *
-     * Required.
-     * What is the most recent stage of the application (that is, new, screen,
-     * send cv, hired, finished work)?  This field is intentionally not
+     * Required. What is the most recent stage of the application (that is, new,
+     * screen, send cv, hired, finished work)?  This field is intentionally not
      * comprehensive of every possible status, but instead, represents statuses
      * that would be used to indicate to the ML models good / bad matches.
      * 
@@ -3006,8 +2962,7 @@ public Builder clearStage() { * * *
-     * Optional.
-     * The application state.
+     * Optional. The application state.
      * 
* * .google.cloud.talent.v4beta1.Application.ApplicationState state = 13; @@ -3019,8 +2974,7 @@ public int getStateValue() { * * *
-     * Optional.
-     * The application state.
+     * Optional. The application state.
      * 
* * .google.cloud.talent.v4beta1.Application.ApplicationState state = 13; @@ -3034,8 +2988,7 @@ public Builder setStateValue(int value) { * * *
-     * Optional.
-     * The application state.
+     * Optional. The application state.
      * 
* * .google.cloud.talent.v4beta1.Application.ApplicationState state = 13; @@ -3052,8 +3005,7 @@ public com.google.cloud.talent.v4beta1.Application.ApplicationState getState() { * * *
-     * Optional.
-     * The application state.
+     * Optional. The application state.
      * 
* * .google.cloud.talent.v4beta1.Application.ApplicationState state = 13; @@ -3071,8 +3023,7 @@ public Builder setState(com.google.cloud.talent.v4beta1.Application.ApplicationS * * *
-     * Optional.
-     * The application state.
+     * Optional. The application state.
      * 
* * .google.cloud.talent.v4beta1.Application.ApplicationState state = 13; @@ -3105,9 +3056,8 @@ private void ensureInterviewsIsMutable() { * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3124,9 +3074,8 @@ public java.util.List getInterviewsLi * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3143,9 +3092,8 @@ public int getInterviewsCount() { * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3162,9 +3110,8 @@ public com.google.cloud.talent.v4beta1.Interview getInterviews(int index) { * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3187,9 +3134,8 @@ public Builder setInterviews(int index, com.google.cloud.talent.v4beta1.Intervie * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3210,9 +3156,8 @@ public Builder setInterviews( * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3235,9 +3180,8 @@ public Builder addInterviews(com.google.cloud.talent.v4beta1.Interview value) { * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3260,9 +3204,8 @@ public Builder addInterviews(int index, com.google.cloud.talent.v4beta1.Intervie * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3283,9 +3226,8 @@ public Builder addInterviews( * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3306,9 +3248,8 @@ public Builder addInterviews( * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3329,9 +3270,8 @@ public Builder addAllInterviews( * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3351,9 +3291,8 @@ public Builder clearInterviews() { * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3373,9 +3312,8 @@ public Builder removeInterviews(int index) { * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3388,9 +3326,8 @@ public com.google.cloud.talent.v4beta1.Interview.Builder getInterviewsBuilder(in * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3407,9 +3344,8 @@ public com.google.cloud.talent.v4beta1.InterviewOrBuilder getInterviewsOrBuilder * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3427,9 +3363,8 @@ public com.google.cloud.talent.v4beta1.InterviewOrBuilder getInterviewsOrBuilder * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3443,9 +3378,8 @@ public com.google.cloud.talent.v4beta1.Interview.Builder addInterviewsBuilder() * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3459,9 +3393,8 @@ public com.google.cloud.talent.v4beta1.Interview.Builder addInterviewsBuilder(in * * *
-     * Optional.
-     * All interviews (screen, onsite, and so on) conducted as part of this
-     * application (includes details such as user conducting the interview,
+     * Optional. All interviews (screen, onsite, and so on) conducted as part of
+     * this application (includes details such as user conducting the interview,
      * timestamp, feedback, and so on).
      * 
* @@ -3499,8 +3432,7 @@ public com.google.cloud.talent.v4beta1.Interview.Builder addInterviewsBuilder(in * * *
-     * Optional.
-     * If the candidate is referred by a employee.
+     * Optional. If the candidate is referred by a employee.
      * 
* * .google.protobuf.BoolValue referral = 18; @@ -3512,8 +3444,7 @@ public boolean hasReferral() { * * *
-     * Optional.
-     * If the candidate is referred by a employee.
+     * Optional. If the candidate is referred by a employee.
      * 
* * .google.protobuf.BoolValue referral = 18; @@ -3529,8 +3460,7 @@ public com.google.protobuf.BoolValue getReferral() { * * *
-     * Optional.
-     * If the candidate is referred by a employee.
+     * Optional. If the candidate is referred by a employee.
      * 
* * .google.protobuf.BoolValue referral = 18; @@ -3552,8 +3482,7 @@ public Builder setReferral(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * If the candidate is referred by a employee.
+     * Optional. If the candidate is referred by a employee.
      * 
* * .google.protobuf.BoolValue referral = 18; @@ -3572,8 +3501,7 @@ public Builder setReferral(com.google.protobuf.BoolValue.Builder builderForValue * * *
-     * Optional.
-     * If the candidate is referred by a employee.
+     * Optional. If the candidate is referred by a employee.
      * 
* * .google.protobuf.BoolValue referral = 18; @@ -3597,8 +3525,7 @@ public Builder mergeReferral(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * If the candidate is referred by a employee.
+     * Optional. If the candidate is referred by a employee.
      * 
* * .google.protobuf.BoolValue referral = 18; @@ -3618,8 +3545,7 @@ public Builder clearReferral() { * * *
-     * Optional.
-     * If the candidate is referred by a employee.
+     * Optional. If the candidate is referred by a employee.
      * 
* * .google.protobuf.BoolValue referral = 18; @@ -3633,8 +3559,7 @@ public com.google.protobuf.BoolValue.Builder getReferralBuilder() { * * *
-     * Optional.
-     * If the candidate is referred by a employee.
+     * Optional. If the candidate is referred by a employee.
      * 
* * .google.protobuf.BoolValue referral = 18; @@ -3650,8 +3575,7 @@ public com.google.protobuf.BoolValueOrBuilder getReferralOrBuilder() { * * *
-     * Optional.
-     * If the candidate is referred by a employee.
+     * Optional. If the candidate is referred by a employee.
      * 
* * .google.protobuf.BoolValue referral = 18; @@ -3683,8 +3607,7 @@ public com.google.protobuf.BoolValueOrBuilder getReferralOrBuilder() { * * *
-     * Required.
-     * Reflects the time that the application was created.
+     * Required. Reflects the time that the application was created.
      * 
* * .google.protobuf.Timestamp create_time = 19; @@ -3696,8 +3619,7 @@ public boolean hasCreateTime() { * * *
-     * Required.
-     * Reflects the time that the application was created.
+     * Required. Reflects the time that the application was created.
      * 
* * .google.protobuf.Timestamp create_time = 19; @@ -3715,8 +3637,7 @@ public com.google.protobuf.Timestamp getCreateTime() { * * *
-     * Required.
-     * Reflects the time that the application was created.
+     * Required. Reflects the time that the application was created.
      * 
* * .google.protobuf.Timestamp create_time = 19; @@ -3738,8 +3659,7 @@ public Builder setCreateTime(com.google.protobuf.Timestamp value) { * * *
-     * Required.
-     * Reflects the time that the application was created.
+     * Required. Reflects the time that the application was created.
      * 
* * .google.protobuf.Timestamp create_time = 19; @@ -3758,8 +3678,7 @@ public Builder setCreateTime(com.google.protobuf.Timestamp.Builder builderForVal * * *
-     * Required.
-     * Reflects the time that the application was created.
+     * Required. Reflects the time that the application was created.
      * 
* * .google.protobuf.Timestamp create_time = 19; @@ -3783,8 +3702,7 @@ public Builder mergeCreateTime(com.google.protobuf.Timestamp value) { * * *
-     * Required.
-     * Reflects the time that the application was created.
+     * Required. Reflects the time that the application was created.
      * 
* * .google.protobuf.Timestamp create_time = 19; @@ -3804,8 +3722,7 @@ public Builder clearCreateTime() { * * *
-     * Required.
-     * Reflects the time that the application was created.
+     * Required. Reflects the time that the application was created.
      * 
* * .google.protobuf.Timestamp create_time = 19; @@ -3819,8 +3736,7 @@ public com.google.protobuf.Timestamp.Builder getCreateTimeBuilder() { * * *
-     * Required.
-     * Reflects the time that the application was created.
+     * Required. Reflects the time that the application was created.
      * 
* * .google.protobuf.Timestamp create_time = 19; @@ -3838,8 +3754,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() { * * *
-     * Required.
-     * Reflects the time that the application was created.
+     * Required. Reflects the time that the application was created.
      * 
* * .google.protobuf.Timestamp create_time = 19; @@ -3871,8 +3786,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() { * * *
-     * Optional.
-     * The last update timestamp.
+     * Optional. The last update timestamp.
      * 
* * .google.protobuf.Timestamp update_time = 20; @@ -3884,8 +3798,7 @@ public boolean hasUpdateTime() { * * *
-     * Optional.
-     * The last update timestamp.
+     * Optional. The last update timestamp.
      * 
* * .google.protobuf.Timestamp update_time = 20; @@ -3903,8 +3816,7 @@ public com.google.protobuf.Timestamp getUpdateTime() { * * *
-     * Optional.
-     * The last update timestamp.
+     * Optional. The last update timestamp.
      * 
* * .google.protobuf.Timestamp update_time = 20; @@ -3926,8 +3838,7 @@ public Builder setUpdateTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The last update timestamp.
+     * Optional. The last update timestamp.
      * 
* * .google.protobuf.Timestamp update_time = 20; @@ -3946,8 +3857,7 @@ public Builder setUpdateTime(com.google.protobuf.Timestamp.Builder builderForVal * * *
-     * Optional.
-     * The last update timestamp.
+     * Optional. The last update timestamp.
      * 
* * .google.protobuf.Timestamp update_time = 20; @@ -3971,8 +3881,7 @@ public Builder mergeUpdateTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The last update timestamp.
+     * Optional. The last update timestamp.
      * 
* * .google.protobuf.Timestamp update_time = 20; @@ -3992,8 +3901,7 @@ public Builder clearUpdateTime() { * * *
-     * Optional.
-     * The last update timestamp.
+     * Optional. The last update timestamp.
      * 
* * .google.protobuf.Timestamp update_time = 20; @@ -4007,8 +3915,7 @@ public com.google.protobuf.Timestamp.Builder getUpdateTimeBuilder() { * * *
-     * Optional.
-     * The last update timestamp.
+     * Optional. The last update timestamp.
      * 
* * .google.protobuf.Timestamp update_time = 20; @@ -4026,8 +3933,7 @@ public com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder() { * * *
-     * Optional.
-     * The last update timestamp.
+     * Optional. The last update timestamp.
      * 
* * .google.protobuf.Timestamp update_time = 20; @@ -4054,9 +3960,9 @@ public com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder() { * * *
-     * Optional.
-     * Free text reason behind the recruitement outcome (for example, reason for
-     * withdraw / reject, reason for an unsuccessful finish, and so on).
+     * Optional. Free text reason behind the recruitement outcome (for example,
+     * reason for withdraw / reject, reason for an unsuccessful finish, and so
+     * on).
      * Number of characters allowed is 100.
      * 
* @@ -4077,9 +3983,9 @@ public java.lang.String getOutcomeNotes() { * * *
-     * Optional.
-     * Free text reason behind the recruitement outcome (for example, reason for
-     * withdraw / reject, reason for an unsuccessful finish, and so on).
+     * Optional. Free text reason behind the recruitement outcome (for example,
+     * reason for withdraw / reject, reason for an unsuccessful finish, and so
+     * on).
      * Number of characters allowed is 100.
      * 
* @@ -4100,9 +4006,9 @@ public com.google.protobuf.ByteString getOutcomeNotesBytes() { * * *
-     * Optional.
-     * Free text reason behind the recruitement outcome (for example, reason for
-     * withdraw / reject, reason for an unsuccessful finish, and so on).
+     * Optional. Free text reason behind the recruitement outcome (for example,
+     * reason for withdraw / reject, reason for an unsuccessful finish, and so
+     * on).
      * Number of characters allowed is 100.
      * 
* @@ -4121,9 +4027,9 @@ public Builder setOutcomeNotes(java.lang.String value) { * * *
-     * Optional.
-     * Free text reason behind the recruitement outcome (for example, reason for
-     * withdraw / reject, reason for an unsuccessful finish, and so on).
+     * Optional. Free text reason behind the recruitement outcome (for example,
+     * reason for withdraw / reject, reason for an unsuccessful finish, and so
+     * on).
      * Number of characters allowed is 100.
      * 
* @@ -4139,9 +4045,9 @@ public Builder clearOutcomeNotes() { * * *
-     * Optional.
-     * Free text reason behind the recruitement outcome (for example, reason for
-     * withdraw / reject, reason for an unsuccessful finish, and so on).
+     * Optional. Free text reason behind the recruitement outcome (for example,
+     * reason for withdraw / reject, reason for an unsuccessful finish, and so
+     * on).
      * Number of characters allowed is 100.
      * 
* @@ -4163,8 +4069,7 @@ public Builder setOutcomeNotesBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Outcome positiveness shows how positive the outcome is.
+     * Optional. Outcome positiveness shows how positive the outcome is.
      * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 22; @@ -4176,8 +4081,7 @@ public int getOutcomeValue() { * * *
-     * Optional.
-     * Outcome positiveness shows how positive the outcome is.
+     * Optional. Outcome positiveness shows how positive the outcome is.
      * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 22; @@ -4191,8 +4095,7 @@ public Builder setOutcomeValue(int value) { * * *
-     * Optional.
-     * Outcome positiveness shows how positive the outcome is.
+     * Optional. Outcome positiveness shows how positive the outcome is.
      * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 22; @@ -4207,8 +4110,7 @@ public com.google.cloud.talent.v4beta1.Outcome getOutcome() { * * *
-     * Optional.
-     * Outcome positiveness shows how positive the outcome is.
+     * Optional. Outcome positiveness shows how positive the outcome is.
      * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 22; @@ -4226,8 +4128,7 @@ public Builder setOutcome(com.google.cloud.talent.v4beta1.Outcome value) { * * *
-     * Optional.
-     * Outcome positiveness shows how positive the outcome is.
+     * Optional. Outcome positiveness shows how positive the outcome is.
      * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 22; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationDateFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationDateFilter.java index a66bcf12110f..ac1cf07c7bfe 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationDateFilter.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationDateFilter.java @@ -124,9 +124,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * Start date. If it's missing, The API matches profiles with application date
-   * not after the end date.
+   * Optional. Start date. If it's missing, The API matches profiles with
+   * application date not after the end date.
    * 
* * .google.type.Date start_date = 1; @@ -138,9 +137,8 @@ public boolean hasStartDate() { * * *
-   * Optional.
-   * Start date. If it's missing, The API matches profiles with application date
-   * not after the end date.
+   * Optional. Start date. If it's missing, The API matches profiles with
+   * application date not after the end date.
    * 
* * .google.type.Date start_date = 1; @@ -152,9 +150,8 @@ public com.google.type.Date getStartDate() { * * *
-   * Optional.
-   * Start date. If it's missing, The API matches profiles with application date
-   * not after the end date.
+   * Optional. Start date. If it's missing, The API matches profiles with
+   * application date not after the end date.
    * 
* * .google.type.Date start_date = 1; @@ -169,9 +166,8 @@ public com.google.type.DateOrBuilder getStartDateOrBuilder() { * * *
-   * Optional.
-   * End date. If it's missing, The API matches profiles with application date
-   * not before the start date.
+   * Optional. End date. If it's missing, The API matches profiles with
+   * application date not before the start date.
    * 
* * .google.type.Date end_date = 2; @@ -183,9 +179,8 @@ public boolean hasEndDate() { * * *
-   * Optional.
-   * End date. If it's missing, The API matches profiles with application date
-   * not before the start date.
+   * Optional. End date. If it's missing, The API matches profiles with
+   * application date not before the start date.
    * 
* * .google.type.Date end_date = 2; @@ -197,9 +192,8 @@ public com.google.type.Date getEndDate() { * * *
-   * Optional.
-   * End date. If it's missing, The API matches profiles with application date
-   * not before the start date.
+   * Optional. End date. If it's missing, The API matches profiles with
+   * application date not before the start date.
    * 
* * .google.type.Date end_date = 2; @@ -583,9 +577,8 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * Start date. If it's missing, The API matches profiles with application date
-     * not after the end date.
+     * Optional. Start date. If it's missing, The API matches profiles with
+     * application date not after the end date.
      * 
* * .google.type.Date start_date = 1; @@ -597,9 +590,8 @@ public boolean hasStartDate() { * * *
-     * Optional.
-     * Start date. If it's missing, The API matches profiles with application date
-     * not after the end date.
+     * Optional. Start date. If it's missing, The API matches profiles with
+     * application date not after the end date.
      * 
* * .google.type.Date start_date = 1; @@ -615,9 +607,8 @@ public com.google.type.Date getStartDate() { * * *
-     * Optional.
-     * Start date. If it's missing, The API matches profiles with application date
-     * not after the end date.
+     * Optional. Start date. If it's missing, The API matches profiles with
+     * application date not after the end date.
      * 
* * .google.type.Date start_date = 1; @@ -639,9 +630,8 @@ public Builder setStartDate(com.google.type.Date value) { * * *
-     * Optional.
-     * Start date. If it's missing, The API matches profiles with application date
-     * not after the end date.
+     * Optional. Start date. If it's missing, The API matches profiles with
+     * application date not after the end date.
      * 
* * .google.type.Date start_date = 1; @@ -660,9 +650,8 @@ public Builder setStartDate(com.google.type.Date.Builder builderForValue) { * * *
-     * Optional.
-     * Start date. If it's missing, The API matches profiles with application date
-     * not after the end date.
+     * Optional. Start date. If it's missing, The API matches profiles with
+     * application date not after the end date.
      * 
* * .google.type.Date start_date = 1; @@ -685,9 +674,8 @@ public Builder mergeStartDate(com.google.type.Date value) { * * *
-     * Optional.
-     * Start date. If it's missing, The API matches profiles with application date
-     * not after the end date.
+     * Optional. Start date. If it's missing, The API matches profiles with
+     * application date not after the end date.
      * 
* * .google.type.Date start_date = 1; @@ -707,9 +695,8 @@ public Builder clearStartDate() { * * *
-     * Optional.
-     * Start date. If it's missing, The API matches profiles with application date
-     * not after the end date.
+     * Optional. Start date. If it's missing, The API matches profiles with
+     * application date not after the end date.
      * 
* * .google.type.Date start_date = 1; @@ -723,9 +710,8 @@ public com.google.type.Date.Builder getStartDateBuilder() { * * *
-     * Optional.
-     * Start date. If it's missing, The API matches profiles with application date
-     * not after the end date.
+     * Optional. Start date. If it's missing, The API matches profiles with
+     * application date not after the end date.
      * 
* * .google.type.Date start_date = 1; @@ -741,9 +727,8 @@ public com.google.type.DateOrBuilder getStartDateOrBuilder() { * * *
-     * Optional.
-     * Start date. If it's missing, The API matches profiles with application date
-     * not after the end date.
+     * Optional. Start date. If it's missing, The API matches profiles with
+     * application date not after the end date.
      * 
* * .google.type.Date start_date = 1; @@ -769,9 +754,8 @@ public com.google.type.DateOrBuilder getStartDateOrBuilder() { * * *
-     * Optional.
-     * End date. If it's missing, The API matches profiles with application date
-     * not before the start date.
+     * Optional. End date. If it's missing, The API matches profiles with
+     * application date not before the start date.
      * 
* * .google.type.Date end_date = 2; @@ -783,9 +767,8 @@ public boolean hasEndDate() { * * *
-     * Optional.
-     * End date. If it's missing, The API matches profiles with application date
-     * not before the start date.
+     * Optional. End date. If it's missing, The API matches profiles with
+     * application date not before the start date.
      * 
* * .google.type.Date end_date = 2; @@ -801,9 +784,8 @@ public com.google.type.Date getEndDate() { * * *
-     * Optional.
-     * End date. If it's missing, The API matches profiles with application date
-     * not before the start date.
+     * Optional. End date. If it's missing, The API matches profiles with
+     * application date not before the start date.
      * 
* * .google.type.Date end_date = 2; @@ -825,9 +807,8 @@ public Builder setEndDate(com.google.type.Date value) { * * *
-     * Optional.
-     * End date. If it's missing, The API matches profiles with application date
-     * not before the start date.
+     * Optional. End date. If it's missing, The API matches profiles with
+     * application date not before the start date.
      * 
* * .google.type.Date end_date = 2; @@ -846,9 +827,8 @@ public Builder setEndDate(com.google.type.Date.Builder builderForValue) { * * *
-     * Optional.
-     * End date. If it's missing, The API matches profiles with application date
-     * not before the start date.
+     * Optional. End date. If it's missing, The API matches profiles with
+     * application date not before the start date.
      * 
* * .google.type.Date end_date = 2; @@ -871,9 +851,8 @@ public Builder mergeEndDate(com.google.type.Date value) { * * *
-     * Optional.
-     * End date. If it's missing, The API matches profiles with application date
-     * not before the start date.
+     * Optional. End date. If it's missing, The API matches profiles with
+     * application date not before the start date.
      * 
* * .google.type.Date end_date = 2; @@ -893,9 +872,8 @@ public Builder clearEndDate() { * * *
-     * Optional.
-     * End date. If it's missing, The API matches profiles with application date
-     * not before the start date.
+     * Optional. End date. If it's missing, The API matches profiles with
+     * application date not before the start date.
      * 
* * .google.type.Date end_date = 2; @@ -909,9 +887,8 @@ public com.google.type.Date.Builder getEndDateBuilder() { * * *
-     * Optional.
-     * End date. If it's missing, The API matches profiles with application date
-     * not before the start date.
+     * Optional. End date. If it's missing, The API matches profiles with
+     * application date not before the start date.
      * 
* * .google.type.Date end_date = 2; @@ -927,9 +904,8 @@ public com.google.type.DateOrBuilder getEndDateOrBuilder() { * * *
-     * Optional.
-     * End date. If it's missing, The API matches profiles with application date
-     * not before the start date.
+     * Optional. End date. If it's missing, The API matches profiles with
+     * application date not before the start date.
      * 
* * .google.type.Date end_date = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationDateFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationDateFilterOrBuilder.java index 9729fd3f8ca9..3573c7907e2e 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationDateFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationDateFilterOrBuilder.java @@ -12,9 +12,8 @@ public interface ApplicationDateFilterOrBuilder * * *
-   * Optional.
-   * Start date. If it's missing, The API matches profiles with application date
-   * not after the end date.
+   * Optional. Start date. If it's missing, The API matches profiles with
+   * application date not after the end date.
    * 
* * .google.type.Date start_date = 1; @@ -24,9 +23,8 @@ public interface ApplicationDateFilterOrBuilder * * *
-   * Optional.
-   * Start date. If it's missing, The API matches profiles with application date
-   * not after the end date.
+   * Optional. Start date. If it's missing, The API matches profiles with
+   * application date not after the end date.
    * 
* * .google.type.Date start_date = 1; @@ -36,9 +34,8 @@ public interface ApplicationDateFilterOrBuilder * * *
-   * Optional.
-   * Start date. If it's missing, The API matches profiles with application date
-   * not after the end date.
+   * Optional. Start date. If it's missing, The API matches profiles with
+   * application date not after the end date.
    * 
* * .google.type.Date start_date = 1; @@ -49,9 +46,8 @@ public interface ApplicationDateFilterOrBuilder * * *
-   * Optional.
-   * End date. If it's missing, The API matches profiles with application date
-   * not before the start date.
+   * Optional. End date. If it's missing, The API matches profiles with
+   * application date not before the start date.
    * 
* * .google.type.Date end_date = 2; @@ -61,9 +57,8 @@ public interface ApplicationDateFilterOrBuilder * * *
-   * Optional.
-   * End date. If it's missing, The API matches profiles with application date
-   * not before the start date.
+   * Optional. End date. If it's missing, The API matches profiles with
+   * application date not before the start date.
    * 
* * .google.type.Date end_date = 2; @@ -73,9 +68,8 @@ public interface ApplicationDateFilterOrBuilder * * *
-   * Optional.
-   * End date. If it's missing, The API matches profiles with application date
-   * not before the start date.
+   * Optional. End date. If it's missing, The API matches profiles with
+   * application date not before the start date.
    * 
* * .google.type.Date end_date = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationJobFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationJobFilter.java index d3798e417563..8100aec8e3f5 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationJobFilter.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationJobFilter.java @@ -111,9 +111,9 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * The job requisition id in the application. The API does an exact match on
-   * the [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
+   * Optional. The job requisition id in the application. The API does an exact
+   * match on the
+   * [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
    * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
    * 
* @@ -134,9 +134,9 @@ public java.lang.String getJobRequisitionId() { * * *
-   * Optional.
-   * The job requisition id in the application. The API does an exact match on
-   * the [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
+   * Optional. The job requisition id in the application. The API does an exact
+   * match on the
+   * [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
    * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
    * 
* @@ -160,9 +160,8 @@ public com.google.protobuf.ByteString getJobRequisitionIdBytes() { * * *
-   * Optional.
-   * The job title in the application. The API does an exact match on the
-   * [Job.title][google.cloud.talent.v4beta1.Job.title] of
+   * Optional. The job title in the application. The API does an exact match on
+   * the [Job.title][google.cloud.talent.v4beta1.Job.title] of
    * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
    * 
* @@ -183,9 +182,8 @@ public java.lang.String getJobTitle() { * * *
-   * Optional.
-   * The job title in the application. The API does an exact match on the
-   * [Job.title][google.cloud.talent.v4beta1.Job.title] of
+   * Optional. The job title in the application. The API does an exact match on
+   * the [Job.title][google.cloud.talent.v4beta1.Job.title] of
    * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
    * 
* @@ -209,8 +207,7 @@ public com.google.protobuf.ByteString getJobTitleBytes() { * * *
-   * Optional.
-   * If true, the API excludes all profiles with any
+   * Optional. If true, the API excludes all profiles with any
    * [Application.job][google.cloud.talent.v4beta1.Application.job] matching the
    * filters.
    * 
@@ -576,9 +573,9 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * The job requisition id in the application. The API does an exact match on
-     * the [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
+     * Optional. The job requisition id in the application. The API does an exact
+     * match on the
+     * [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
      * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
      * 
* @@ -599,9 +596,9 @@ public java.lang.String getJobRequisitionId() { * * *
-     * Optional.
-     * The job requisition id in the application. The API does an exact match on
-     * the [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
+     * Optional. The job requisition id in the application. The API does an exact
+     * match on the
+     * [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
      * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
      * 
* @@ -622,9 +619,9 @@ public com.google.protobuf.ByteString getJobRequisitionIdBytes() { * * *
-     * Optional.
-     * The job requisition id in the application. The API does an exact match on
-     * the [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
+     * Optional. The job requisition id in the application. The API does an exact
+     * match on the
+     * [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
      * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
      * 
* @@ -643,9 +640,9 @@ public Builder setJobRequisitionId(java.lang.String value) { * * *
-     * Optional.
-     * The job requisition id in the application. The API does an exact match on
-     * the [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
+     * Optional. The job requisition id in the application. The API does an exact
+     * match on the
+     * [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
      * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
      * 
* @@ -661,9 +658,9 @@ public Builder clearJobRequisitionId() { * * *
-     * Optional.
-     * The job requisition id in the application. The API does an exact match on
-     * the [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
+     * Optional. The job requisition id in the application. The API does an exact
+     * match on the
+     * [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
      * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
      * 
* @@ -685,9 +682,8 @@ public Builder setJobRequisitionIdBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The job title in the application. The API does an exact match on the
-     * [Job.title][google.cloud.talent.v4beta1.Job.title] of
+     * Optional. The job title in the application. The API does an exact match on
+     * the [Job.title][google.cloud.talent.v4beta1.Job.title] of
      * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
      * 
* @@ -708,9 +704,8 @@ public java.lang.String getJobTitle() { * * *
-     * Optional.
-     * The job title in the application. The API does an exact match on the
-     * [Job.title][google.cloud.talent.v4beta1.Job.title] of
+     * Optional. The job title in the application. The API does an exact match on
+     * the [Job.title][google.cloud.talent.v4beta1.Job.title] of
      * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
      * 
* @@ -731,9 +726,8 @@ public com.google.protobuf.ByteString getJobTitleBytes() { * * *
-     * Optional.
-     * The job title in the application. The API does an exact match on the
-     * [Job.title][google.cloud.talent.v4beta1.Job.title] of
+     * Optional. The job title in the application. The API does an exact match on
+     * the [Job.title][google.cloud.talent.v4beta1.Job.title] of
      * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
      * 
* @@ -752,9 +746,8 @@ public Builder setJobTitle(java.lang.String value) { * * *
-     * Optional.
-     * The job title in the application. The API does an exact match on the
-     * [Job.title][google.cloud.talent.v4beta1.Job.title] of
+     * Optional. The job title in the application. The API does an exact match on
+     * the [Job.title][google.cloud.talent.v4beta1.Job.title] of
      * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
      * 
* @@ -770,9 +763,8 @@ public Builder clearJobTitle() { * * *
-     * Optional.
-     * The job title in the application. The API does an exact match on the
-     * [Job.title][google.cloud.talent.v4beta1.Job.title] of
+     * Optional. The job title in the application. The API does an exact match on
+     * the [Job.title][google.cloud.talent.v4beta1.Job.title] of
      * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
      * 
* @@ -794,8 +786,7 @@ public Builder setJobTitleBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * If true, the API excludes all profiles with any
+     * Optional. If true, the API excludes all profiles with any
      * [Application.job][google.cloud.talent.v4beta1.Application.job] matching the
      * filters.
      * 
@@ -809,8 +800,7 @@ public boolean getNegated() { * * *
-     * Optional.
-     * If true, the API excludes all profiles with any
+     * Optional. If true, the API excludes all profiles with any
      * [Application.job][google.cloud.talent.v4beta1.Application.job] matching the
      * filters.
      * 
@@ -827,8 +817,7 @@ public Builder setNegated(boolean value) { * * *
-     * Optional.
-     * If true, the API excludes all profiles with any
+     * Optional. If true, the API excludes all profiles with any
      * [Application.job][google.cloud.talent.v4beta1.Application.job] matching the
      * filters.
      * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationJobFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationJobFilterOrBuilder.java index 7caaf43810a7..0d1e3183ed0f 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationJobFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationJobFilterOrBuilder.java @@ -12,9 +12,9 @@ public interface ApplicationJobFilterOrBuilder * * *
-   * Optional.
-   * The job requisition id in the application. The API does an exact match on
-   * the [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
+   * Optional. The job requisition id in the application. The API does an exact
+   * match on the
+   * [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
    * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
    * 
* @@ -25,9 +25,9 @@ public interface ApplicationJobFilterOrBuilder * * *
-   * Optional.
-   * The job requisition id in the application. The API does an exact match on
-   * the [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
+   * Optional. The job requisition id in the application. The API does an exact
+   * match on the
+   * [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of
    * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
    * 
* @@ -39,9 +39,8 @@ public interface ApplicationJobFilterOrBuilder * * *
-   * Optional.
-   * The job title in the application. The API does an exact match on the
-   * [Job.title][google.cloud.talent.v4beta1.Job.title] of
+   * Optional. The job title in the application. The API does an exact match on
+   * the [Job.title][google.cloud.talent.v4beta1.Job.title] of
    * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
    * 
* @@ -52,9 +51,8 @@ public interface ApplicationJobFilterOrBuilder * * *
-   * Optional.
-   * The job title in the application. The API does an exact match on the
-   * [Job.title][google.cloud.talent.v4beta1.Job.title] of
+   * Optional. The job title in the application. The API does an exact match on
+   * the [Job.title][google.cloud.talent.v4beta1.Job.title] of
    * [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles.
    * 
* @@ -66,8 +64,7 @@ public interface ApplicationJobFilterOrBuilder * * *
-   * Optional.
-   * If true, the API excludes all profiles with any
+   * Optional. If true, the API excludes all profiles with any
    * [Application.job][google.cloud.talent.v4beta1.Application.job] matching the
    * filters.
    * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOrBuilder.java index dfcc10e2db9c..543c822fa1f3 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOrBuilder.java @@ -43,8 +43,7 @@ public interface ApplicationOrBuilder * * *
-   * Required.
-   * Client side application identifier, used to uniquely identify the
+   * Required. Client side application identifier, used to uniquely identify the
    * application.
    * The maximum number of allowed characters is 255.
    * 
@@ -56,8 +55,7 @@ public interface ApplicationOrBuilder * * *
-   * Required.
-   * Client side application identifier, used to uniquely identify the
+   * Required. Client side application identifier, used to uniquely identify the
    * application.
    * The maximum number of allowed characters is 255.
    * 
@@ -155,8 +153,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * The application date.
+   * Optional. The application date.
    * 
* * .google.type.Date application_date = 7; @@ -166,8 +163,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * The application date.
+   * Optional. The application date.
    * 
* * .google.type.Date application_date = 7; @@ -177,8 +173,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * The application date.
+   * Optional. The application date.
    * 
* * .google.type.Date application_date = 7; @@ -189,9 +184,8 @@ public interface ApplicationOrBuilder * * *
-   * Required.
-   * What is the most recent stage of the application (that is, new, screen,
-   * send cv, hired, finished work)?  This field is intentionally not
+   * Required. What is the most recent stage of the application (that is, new,
+   * screen, send cv, hired, finished work)?  This field is intentionally not
    * comprehensive of every possible status, but instead, represents statuses
    * that would be used to indicate to the ML models good / bad matches.
    * 
@@ -203,9 +197,8 @@ public interface ApplicationOrBuilder * * *
-   * Required.
-   * What is the most recent stage of the application (that is, new, screen,
-   * send cv, hired, finished work)?  This field is intentionally not
+   * Required. What is the most recent stage of the application (that is, new,
+   * screen, send cv, hired, finished work)?  This field is intentionally not
    * comprehensive of every possible status, but instead, represents statuses
    * that would be used to indicate to the ML models good / bad matches.
    * 
@@ -218,8 +211,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * The application state.
+   * Optional. The application state.
    * 
* * .google.cloud.talent.v4beta1.Application.ApplicationState state = 13; @@ -229,8 +221,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * The application state.
+   * Optional. The application state.
    * 
* * .google.cloud.talent.v4beta1.Application.ApplicationState state = 13; @@ -241,9 +232,8 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * All interviews (screen, onsite, and so on) conducted as part of this
-   * application (includes details such as user conducting the interview,
+   * Optional. All interviews (screen, onsite, and so on) conducted as part of
+   * this application (includes details such as user conducting the interview,
    * timestamp, feedback, and so on).
    * 
* @@ -254,9 +244,8 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * All interviews (screen, onsite, and so on) conducted as part of this
-   * application (includes details such as user conducting the interview,
+   * Optional. All interviews (screen, onsite, and so on) conducted as part of
+   * this application (includes details such as user conducting the interview,
    * timestamp, feedback, and so on).
    * 
* @@ -267,9 +256,8 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * All interviews (screen, onsite, and so on) conducted as part of this
-   * application (includes details such as user conducting the interview,
+   * Optional. All interviews (screen, onsite, and so on) conducted as part of
+   * this application (includes details such as user conducting the interview,
    * timestamp, feedback, and so on).
    * 
* @@ -280,9 +268,8 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * All interviews (screen, onsite, and so on) conducted as part of this
-   * application (includes details such as user conducting the interview,
+   * Optional. All interviews (screen, onsite, and so on) conducted as part of
+   * this application (includes details such as user conducting the interview,
    * timestamp, feedback, and so on).
    * 
* @@ -294,9 +281,8 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * All interviews (screen, onsite, and so on) conducted as part of this
-   * application (includes details such as user conducting the interview,
+   * Optional. All interviews (screen, onsite, and so on) conducted as part of
+   * this application (includes details such as user conducting the interview,
    * timestamp, feedback, and so on).
    * 
* @@ -308,8 +294,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * If the candidate is referred by a employee.
+   * Optional. If the candidate is referred by a employee.
    * 
* * .google.protobuf.BoolValue referral = 18; @@ -319,8 +304,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * If the candidate is referred by a employee.
+   * Optional. If the candidate is referred by a employee.
    * 
* * .google.protobuf.BoolValue referral = 18; @@ -330,8 +314,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * If the candidate is referred by a employee.
+   * Optional. If the candidate is referred by a employee.
    * 
* * .google.protobuf.BoolValue referral = 18; @@ -342,8 +325,7 @@ public interface ApplicationOrBuilder * * *
-   * Required.
-   * Reflects the time that the application was created.
+   * Required. Reflects the time that the application was created.
    * 
* * .google.protobuf.Timestamp create_time = 19; @@ -353,8 +335,7 @@ public interface ApplicationOrBuilder * * *
-   * Required.
-   * Reflects the time that the application was created.
+   * Required. Reflects the time that the application was created.
    * 
* * .google.protobuf.Timestamp create_time = 19; @@ -364,8 +345,7 @@ public interface ApplicationOrBuilder * * *
-   * Required.
-   * Reflects the time that the application was created.
+   * Required. Reflects the time that the application was created.
    * 
* * .google.protobuf.Timestamp create_time = 19; @@ -376,8 +356,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * The last update timestamp.
+   * Optional. The last update timestamp.
    * 
* * .google.protobuf.Timestamp update_time = 20; @@ -387,8 +366,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * The last update timestamp.
+   * Optional. The last update timestamp.
    * 
* * .google.protobuf.Timestamp update_time = 20; @@ -398,8 +376,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * The last update timestamp.
+   * Optional. The last update timestamp.
    * 
* * .google.protobuf.Timestamp update_time = 20; @@ -410,9 +387,9 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * Free text reason behind the recruitement outcome (for example, reason for
-   * withdraw / reject, reason for an unsuccessful finish, and so on).
+   * Optional. Free text reason behind the recruitement outcome (for example,
+   * reason for withdraw / reject, reason for an unsuccessful finish, and so
+   * on).
    * Number of characters allowed is 100.
    * 
* @@ -423,9 +400,9 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * Free text reason behind the recruitement outcome (for example, reason for
-   * withdraw / reject, reason for an unsuccessful finish, and so on).
+   * Optional. Free text reason behind the recruitement outcome (for example,
+   * reason for withdraw / reject, reason for an unsuccessful finish, and so
+   * on).
    * Number of characters allowed is 100.
    * 
* @@ -437,8 +414,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * Outcome positiveness shows how positive the outcome is.
+   * Optional. Outcome positiveness shows how positive the outcome is.
    * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 22; @@ -448,8 +424,7 @@ public interface ApplicationOrBuilder * * *
-   * Optional.
-   * Outcome positiveness shows how positive the outcome is.
+   * Optional. Outcome positiveness shows how positive the outcome is.
    * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 22; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOutcomeNotesFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOutcomeNotesFilter.java index 62ba9246beb4..cdbaa76a5c6a 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOutcomeNotesFilter.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOutcomeNotesFilter.java @@ -103,8 +103,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * User entered or selected outcome reason. The API does an exact match on the
+   * Required. User entered or selected outcome reason. The API does an exact
+   * match on the
    * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
    * in profiles.
    * 
@@ -126,8 +126,8 @@ public java.lang.String getOutcomeNotes() { * * *
-   * Required.
-   * User entered or selected outcome reason. The API does an exact match on the
+   * Required. User entered or selected outcome reason. The API does an exact
+   * match on the
    * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
    * in profiles.
    * 
@@ -152,8 +152,7 @@ public com.google.protobuf.ByteString getOutcomeNotesBytes() { * * *
-   * Optional.
-   * If true, The API excludes all candidates with any
+   * Optional. If true, The API excludes all candidates with any
    * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
    * matching the outcome reason specified in the filter.
    * 
@@ -507,8 +506,8 @@ public Builder mergeFrom( * * *
-     * Required.
-     * User entered or selected outcome reason. The API does an exact match on the
+     * Required. User entered or selected outcome reason. The API does an exact
+     * match on the
      * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
      * in profiles.
      * 
@@ -530,8 +529,8 @@ public java.lang.String getOutcomeNotes() { * * *
-     * Required.
-     * User entered or selected outcome reason. The API does an exact match on the
+     * Required. User entered or selected outcome reason. The API does an exact
+     * match on the
      * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
      * in profiles.
      * 
@@ -553,8 +552,8 @@ public com.google.protobuf.ByteString getOutcomeNotesBytes() { * * *
-     * Required.
-     * User entered or selected outcome reason. The API does an exact match on the
+     * Required. User entered or selected outcome reason. The API does an exact
+     * match on the
      * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
      * in profiles.
      * 
@@ -574,8 +573,8 @@ public Builder setOutcomeNotes(java.lang.String value) { * * *
-     * Required.
-     * User entered or selected outcome reason. The API does an exact match on the
+     * Required. User entered or selected outcome reason. The API does an exact
+     * match on the
      * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
      * in profiles.
      * 
@@ -592,8 +591,8 @@ public Builder clearOutcomeNotes() { * * *
-     * Required.
-     * User entered or selected outcome reason. The API does an exact match on the
+     * Required. User entered or selected outcome reason. The API does an exact
+     * match on the
      * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
      * in profiles.
      * 
@@ -616,8 +615,7 @@ public Builder setOutcomeNotesBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * If true, The API excludes all candidates with any
+     * Optional. If true, The API excludes all candidates with any
      * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
      * matching the outcome reason specified in the filter.
      * 
@@ -631,8 +629,7 @@ public boolean getNegated() { * * *
-     * Optional.
-     * If true, The API excludes all candidates with any
+     * Optional. If true, The API excludes all candidates with any
      * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
      * matching the outcome reason specified in the filter.
      * 
@@ -649,8 +646,7 @@ public Builder setNegated(boolean value) { * * *
-     * Optional.
-     * If true, The API excludes all candidates with any
+     * Optional. If true, The API excludes all candidates with any
      * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
      * matching the outcome reason specified in the filter.
      * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOutcomeNotesFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOutcomeNotesFilterOrBuilder.java index 1ebb2ce50102..2b809e486f6a 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOutcomeNotesFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationOutcomeNotesFilterOrBuilder.java @@ -12,8 +12,8 @@ public interface ApplicationOutcomeNotesFilterOrBuilder * * *
-   * Required.
-   * User entered or selected outcome reason. The API does an exact match on the
+   * Required. User entered or selected outcome reason. The API does an exact
+   * match on the
    * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
    * in profiles.
    * 
@@ -25,8 +25,8 @@ public interface ApplicationOutcomeNotesFilterOrBuilder * * *
-   * Required.
-   * User entered or selected outcome reason. The API does an exact match on the
+   * Required. User entered or selected outcome reason. The API does an exact
+   * match on the
    * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
    * in profiles.
    * 
@@ -39,8 +39,7 @@ public interface ApplicationOutcomeNotesFilterOrBuilder * * *
-   * Optional.
-   * If true, The API excludes all candidates with any
+   * Optional. If true, The API excludes all candidates with any
    * [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes]
    * matching the outcome reason specified in the filter.
    * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationServiceProto.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationServiceProto.java index 0bf87e31cf23..973b1790b875 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationServiceProto.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ApplicationServiceProto.java @@ -47,54 +47,58 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { java.lang.String[] descriptorData = { "\n5google/cloud/talent/v4beta1/applicatio" + "n_service.proto\022\033google.cloud.talent.v4b" - + "eta1\032\034google/api/annotations.proto\032-goog" - + "le/cloud/talent/v4beta1/application.prot" - + "o\032(google/cloud/talent/v4beta1/common.pr" - + "oto\032\033google/protobuf/empty.proto\032 google" - + "/protobuf/field_mask.proto\"i\n\030CreateAppl" - + "icationRequest\022\016\n\006parent\030\001 \001(\t\022=\n\013applic" - + "ation\030\002 \001(\0132(.google.cloud.talent.v4beta" - + "1.Application\"%\n\025GetApplicationRequest\022\014" - + "\n\004name\030\001 \001(\t\"\212\001\n\030UpdateApplicationReques" - + "t\022=\n\013application\030\001 \001(\0132(.google.cloud.ta" - + "lent.v4beta1.Application\022/\n\013update_mask\030" - + "\002 \001(\0132\032.google.protobuf.FieldMask\"(\n\030Del" - + "eteApplicationRequest\022\014\n\004name\030\001 \001(\t\"P\n\027L" - + "istApplicationsRequest\022\016\n\006parent\030\001 \001(\t\022\022" - + "\n\npage_token\030\002 \001(\t\022\021\n\tpage_size\030\003 \001(\005\"\264\001" - + "\n\030ListApplicationsResponse\022>\n\014applicatio" - + "ns\030\001 \003(\0132(.google.cloud.talent.v4beta1.A" - + "pplication\022\027\n\017next_page_token\030\002 \001(\t\022?\n\010m" - + "etadata\030\003 \001(\0132-.google.cloud.talent.v4be" - + "ta1.ResponseMetadata2\324\007\n\022ApplicationServ" - + "ice\022\277\001\n\021CreateApplication\0225.google.cloud" - + ".talent.v4beta1.CreateApplicationRequest" - + "\032(.google.cloud.talent.v4beta1.Applicati" - + "on\"I\202\323\344\223\002C\">/v4beta1/{parent=projects/*/" - + "tenants/*/profiles/*}/applications:\001*\022\266\001" - + "\n\016GetApplication\0222.google.cloud.talent.v" - + "4beta1.GetApplicationRequest\032(.google.cl" - + "oud.talent.v4beta1.Application\"F\202\323\344\223\002@\022>" - + "/v4beta1/{name=projects/*/tenants/*/prof" - + "iles/*/applications/*}\022\313\001\n\021UpdateApplica" - + "tion\0225.google.cloud.talent.v4beta1.Updat" - + "eApplicationRequest\032(.google.cloud.talen" - + "t.v4beta1.Application\"U\202\323\344\223\002O2J/v4beta1/" - + "{application.name=projects/*/tenants/*/p" - + "rofiles/*/applications/*}:\001*\022\252\001\n\021DeleteA" + + "eta1\032\034google/api/annotations.proto\032\027goog" + + "le/api/client.proto\032-google/cloud/talent" + + "/v4beta1/application.proto\032(google/cloud" + + "/talent/v4beta1/common.proto\032\033google/pro" + + "tobuf/empty.proto\032 google/protobuf/field" + + "_mask.proto\"i\n\030CreateApplicationRequest\022" + + "\016\n\006parent\030\001 \001(\t\022=\n\013application\030\002 \001(\0132(.g" + + "oogle.cloud.talent.v4beta1.Application\"%" + + "\n\025GetApplicationRequest\022\014\n\004name\030\001 \001(\t\"\212\001" + + "\n\030UpdateApplicationRequest\022=\n\013applicatio" + + "n\030\001 \001(\0132(.google.cloud.talent.v4beta1.Ap" + + "plication\022/\n\013update_mask\030\002 \001(\0132\032.google." + + "protobuf.FieldMask\"(\n\030DeleteApplicationR" + + "equest\022\014\n\004name\030\001 \001(\t\"P\n\027ListApplications" + + "Request\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_token\030\002 " + + "\001(\t\022\021\n\tpage_size\030\003 \001(\005\"\264\001\n\030ListApplicati" + + "onsResponse\022>\n\014applications\030\001 \003(\0132(.goog" + + "le.cloud.talent.v4beta1.Application\022\027\n\017n" + + "ext_page_token\030\002 \001(\t\022?\n\010metadata\030\003 \001(\0132-" + + ".google.cloud.talent.v4beta1.ResponseMet" + + "adata2\302\010\n\022ApplicationService\022\277\001\n\021CreateA" + "pplication\0225.google.cloud.talent.v4beta1" - + ".DeleteApplicationRequest\032\026.google.proto" - + "buf.Empty\"F\202\323\344\223\002@*>/v4beta1/{name=projec" - + "ts/*/tenants/*/profiles/*/applications/*" - + "}\022\307\001\n\020ListApplications\0224.google.cloud.ta" - + "lent.v4beta1.ListApplicationsRequest\0325.g" - + "oogle.cloud.talent.v4beta1.ListApplicati" - + "onsResponse\"F\202\323\344\223\002@\022>/v4beta1/{parent=pr" - + "ojects/*/tenants/*/profiles/*}/applicati" - + "onsB\205\001\n\037com.google.cloud.talent.v4beta1B" - + "\027ApplicationServiceProtoP\001ZAgoogle.golan" - + "g.org/genproto/googleapis/cloud/talent/v" - + "4beta1;talent\242\002\003CTSb\006proto3" + + ".CreateApplicationRequest\032(.google.cloud" + + ".talent.v4beta1.Application\"I\202\323\344\223\002C\">/v4" + + "beta1/{parent=projects/*/tenants/*/profi" + + "les/*}/applications:\001*\022\266\001\n\016GetApplicatio" + + "n\0222.google.cloud.talent.v4beta1.GetAppli" + + "cationRequest\032(.google.cloud.talent.v4be" + + "ta1.Application\"F\202\323\344\223\002@\022>/v4beta1/{name=" + + "projects/*/tenants/*/profiles/*/applicat" + + "ions/*}\022\313\001\n\021UpdateApplication\0225.google.c" + + "loud.talent.v4beta1.UpdateApplicationReq" + + "uest\032(.google.cloud.talent.v4beta1.Appli" + + "cation\"U\202\323\344\223\002O2J/v4beta1/{application.na" + + "me=projects/*/tenants/*/profiles/*/appli" + + "cations/*}:\001*\022\252\001\n\021DeleteApplication\0225.go" + + "ogle.cloud.talent.v4beta1.DeleteApplicat" + + "ionRequest\032\026.google.protobuf.Empty\"F\202\323\344\223" + + "\002@*>/v4beta1/{name=projects/*/tenants/*/" + + "profiles/*/applications/*}\022\307\001\n\020ListAppli" + + "cations\0224.google.cloud.talent.v4beta1.Li" + + "stApplicationsRequest\0325.google.cloud.tal" + + "ent.v4beta1.ListApplicationsResponse\"F\202\323" + + "\344\223\002@\022>/v4beta1/{parent=projects/*/tenant" + + "s/*/profiles/*}/applications\032l\312A\023jobs.go" + + "ogleapis.com\322AShttps://www.googleapis.co" + + "m/auth/cloud-platform,https://www.google" + + "apis.com/auth/jobsB\205\001\n\037com.google.cloud." + + "talent.v4beta1B\027ApplicationServiceProtoP" + + "\001ZAgoogle.golang.org/genproto/googleapis" + + "/cloud/talent/v4beta1;talent\242\002\003CTSb\006prot" + + "o3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -108,6 +112,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.api.AnnotationsProto.getDescriptor(), + com.google.api.ClientProto.getDescriptor(), com.google.cloud.talent.v4beta1.ApplicationResourceProto.getDescriptor(), com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(), com.google.protobuf.EmptyProto.getDescriptor(), @@ -164,10 +169,13 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); + registry.add(com.google.api.ClientProto.defaultHost); registry.add(com.google.api.AnnotationsProto.http); + registry.add(com.google.api.ClientProto.oauthScopes); com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( descriptor, registry); com.google.api.AnnotationsProto.getDescriptor(); + com.google.api.ClientProto.getDescriptor(); com.google.cloud.talent.v4beta1.ApplicationResourceProto.getDescriptor(); com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(); com.google.protobuf.EmptyProto.getDescriptor(); diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchCreateJobsRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchCreateJobsRequest.java index 81d109a523c4..8499aba0d09d 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchCreateJobsRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchCreateJobsRequest.java @@ -113,8 +113,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -138,8 +137,7 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -166,8 +164,7 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Required.
-   * The jobs to be created.
+   * Required. The jobs to be created.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -179,8 +176,7 @@ public java.util.List getJobsList() { * * *
-   * Required.
-   * The jobs to be created.
+   * Required. The jobs to be created.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -193,8 +189,7 @@ public java.util.List getJobsList() { * * *
-   * Required.
-   * The jobs to be created.
+   * Required. The jobs to be created.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -206,8 +201,7 @@ public int getJobsCount() { * * *
-   * Required.
-   * The jobs to be created.
+   * Required. The jobs to be created.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -219,8 +213,7 @@ public com.google.cloud.talent.v4beta1.Job getJobs(int index) { * * *
-   * Required.
-   * The jobs to be created.
+   * Required. The jobs to be created.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -613,8 +606,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -638,8 +630,7 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -663,8 +654,7 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -686,8 +676,7 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -706,8 +695,7 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -747,8 +735,7 @@ private void ensureJobsIsMutable() {
      *
      *
      * 
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -764,8 +751,7 @@ public java.util.List getJobsList() { * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -781,8 +767,7 @@ public int getJobsCount() { * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -798,8 +783,7 @@ public com.google.cloud.talent.v4beta1.Job getJobs(int index) { * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -821,8 +805,7 @@ public Builder setJobs(int index, com.google.cloud.talent.v4beta1.Job value) { * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -841,8 +824,7 @@ public Builder setJobs(int index, com.google.cloud.talent.v4beta1.Job.Builder bu * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -864,8 +846,7 @@ public Builder addJobs(com.google.cloud.talent.v4beta1.Job value) { * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -887,8 +868,7 @@ public Builder addJobs(int index, com.google.cloud.talent.v4beta1.Job value) { * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -907,8 +887,7 @@ public Builder addJobs(com.google.cloud.talent.v4beta1.Job.Builder builderForVal * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -927,8 +906,7 @@ public Builder addJobs(int index, com.google.cloud.talent.v4beta1.Job.Builder bu * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -948,8 +926,7 @@ public Builder addAllJobs( * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -968,8 +945,7 @@ public Builder clearJobs() { * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -988,8 +964,7 @@ public Builder removeJobs(int index) { * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1001,8 +976,7 @@ public com.google.cloud.talent.v4beta1.Job.Builder getJobsBuilder(int index) { * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1018,8 +992,7 @@ public com.google.cloud.talent.v4beta1.JobOrBuilder getJobsOrBuilder(int index) * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1036,8 +1009,7 @@ public com.google.cloud.talent.v4beta1.JobOrBuilder getJobsOrBuilder(int index) * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1050,8 +1022,7 @@ public com.google.cloud.talent.v4beta1.Job.Builder addJobsBuilder() { * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1064,8 +1035,7 @@ public com.google.cloud.talent.v4beta1.Job.Builder addJobsBuilder(int index) { * * *
-     * Required.
-     * The jobs to be created.
+     * Required. The jobs to be created.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchCreateJobsRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchCreateJobsRequestOrBuilder.java index f85d3b21e96c..5bfeafeb9adf 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchCreateJobsRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchCreateJobsRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface BatchCreateJobsRequestOrBuilder * * *
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -27,8 +26,7 @@ public interface BatchCreateJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -43,8 +41,7 @@ public interface BatchCreateJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The jobs to be created.
+   * Required. The jobs to be created.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -54,8 +51,7 @@ public interface BatchCreateJobsRequestOrBuilder * * *
-   * Required.
-   * The jobs to be created.
+   * Required. The jobs to be created.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -65,8 +61,7 @@ public interface BatchCreateJobsRequestOrBuilder * * *
-   * Required.
-   * The jobs to be created.
+   * Required. The jobs to be created.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -76,8 +71,7 @@ public interface BatchCreateJobsRequestOrBuilder * * *
-   * Required.
-   * The jobs to be created.
+   * Required. The jobs to be created.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -87,8 +81,7 @@ public interface BatchCreateJobsRequestOrBuilder * * *
-   * Required.
-   * The jobs to be created.
+   * Required. The jobs to be created.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchDeleteJobsRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchDeleteJobsRequest.java index 3df2efe6f776..c1cacb1e7f61 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchDeleteJobsRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchDeleteJobsRequest.java @@ -106,8 +106,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -131,8 +130,7 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -159,8 +157,7 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Required.
-   * The filter string specifies the jobs to be deleted.
+   * Required. The filter string specifies the jobs to be deleted.
    * Supported operator: =, AND
    * The fields eligible for filtering are:
    * * `companyName` (Required)
@@ -186,8 +183,7 @@ public java.lang.String getFilter() {
    *
    *
    * 
-   * Required.
-   * The filter string specifies the jobs to be deleted.
+   * Required. The filter string specifies the jobs to be deleted.
    * Supported operator: =, AND
    * The fields eligible for filtering are:
    * * `companyName` (Required)
@@ -551,8 +547,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -576,8 +571,7 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -601,8 +595,7 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -624,8 +617,7 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -644,8 +636,7 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -670,8 +661,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * The filter string specifies the jobs to be deleted.
+     * Required. The filter string specifies the jobs to be deleted.
      * Supported operator: =, AND
      * The fields eligible for filtering are:
      * * `companyName` (Required)
@@ -697,8 +687,7 @@ public java.lang.String getFilter() {
      *
      *
      * 
-     * Required.
-     * The filter string specifies the jobs to be deleted.
+     * Required. The filter string specifies the jobs to be deleted.
      * Supported operator: =, AND
      * The fields eligible for filtering are:
      * * `companyName` (Required)
@@ -724,8 +713,7 @@ public com.google.protobuf.ByteString getFilterBytes() {
      *
      *
      * 
-     * Required.
-     * The filter string specifies the jobs to be deleted.
+     * Required. The filter string specifies the jobs to be deleted.
      * Supported operator: =, AND
      * The fields eligible for filtering are:
      * * `companyName` (Required)
@@ -749,8 +737,7 @@ public Builder setFilter(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The filter string specifies the jobs to be deleted.
+     * Required. The filter string specifies the jobs to be deleted.
      * Supported operator: =, AND
      * The fields eligible for filtering are:
      * * `companyName` (Required)
@@ -771,8 +758,7 @@ public Builder clearFilter() {
      *
      *
      * 
-     * Required.
-     * The filter string specifies the jobs to be deleted.
+     * Required. The filter string specifies the jobs to be deleted.
      * Supported operator: =, AND
      * The fields eligible for filtering are:
      * * `companyName` (Required)
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchDeleteJobsRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchDeleteJobsRequestOrBuilder.java
index 940329496df5..3ce85e997e5e 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchDeleteJobsRequestOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchDeleteJobsRequestOrBuilder.java
@@ -12,8 +12,7 @@ public interface BatchDeleteJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -27,8 +26,7 @@ public interface BatchDeleteJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -43,8 +41,7 @@ public interface BatchDeleteJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The filter string specifies the jobs to be deleted.
+   * Required. The filter string specifies the jobs to be deleted.
    * Supported operator: =, AND
    * The fields eligible for filtering are:
    * * `companyName` (Required)
@@ -60,8 +57,7 @@ public interface BatchDeleteJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The filter string specifies the jobs to be deleted.
+   * Required. The filter string specifies the jobs to be deleted.
    * Supported operator: =, AND
    * The fields eligible for filtering are:
    * * `companyName` (Required)
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchUpdateJobsRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchUpdateJobsRequest.java
index 57f68da28e74..780555279ac8 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchUpdateJobsRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchUpdateJobsRequest.java
@@ -128,8 +128,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -153,8 +152,7 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -181,8 +179,7 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Required.
-   * The jobs to be updated.
+   * Required. The jobs to be updated.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -194,8 +191,7 @@ public java.util.List getJobsList() { * * *
-   * Required.
-   * The jobs to be updated.
+   * Required. The jobs to be updated.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -208,8 +204,7 @@ public java.util.List getJobsList() { * * *
-   * Required.
-   * The jobs to be updated.
+   * Required. The jobs to be updated.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -221,8 +216,7 @@ public int getJobsCount() { * * *
-   * Required.
-   * The jobs to be updated.
+   * Required. The jobs to be updated.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -234,8 +228,7 @@ public com.google.cloud.talent.v4beta1.Job getJobs(int index) { * * *
-   * Required.
-   * The jobs to be updated.
+   * Required. The jobs to be updated.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -737,8 +730,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -762,8 +754,7 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -787,8 +778,7 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -810,8 +800,7 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -830,8 +819,7 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -871,8 +859,7 @@ private void ensureJobsIsMutable() {
      *
      *
      * 
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -888,8 +875,7 @@ public java.util.List getJobsList() { * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -905,8 +891,7 @@ public int getJobsCount() { * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -922,8 +907,7 @@ public com.google.cloud.talent.v4beta1.Job getJobs(int index) { * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -945,8 +929,7 @@ public Builder setJobs(int index, com.google.cloud.talent.v4beta1.Job value) { * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -965,8 +948,7 @@ public Builder setJobs(int index, com.google.cloud.talent.v4beta1.Job.Builder bu * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -988,8 +970,7 @@ public Builder addJobs(com.google.cloud.talent.v4beta1.Job value) { * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1011,8 +992,7 @@ public Builder addJobs(int index, com.google.cloud.talent.v4beta1.Job value) { * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1031,8 +1011,7 @@ public Builder addJobs(com.google.cloud.talent.v4beta1.Job.Builder builderForVal * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1051,8 +1030,7 @@ public Builder addJobs(int index, com.google.cloud.talent.v4beta1.Job.Builder bu * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1072,8 +1050,7 @@ public Builder addAllJobs( * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1092,8 +1069,7 @@ public Builder clearJobs() { * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1112,8 +1088,7 @@ public Builder removeJobs(int index) { * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1125,8 +1100,7 @@ public com.google.cloud.talent.v4beta1.Job.Builder getJobsBuilder(int index) { * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1142,8 +1116,7 @@ public com.google.cloud.talent.v4beta1.JobOrBuilder getJobsOrBuilder(int index) * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1160,8 +1133,7 @@ public com.google.cloud.talent.v4beta1.JobOrBuilder getJobsOrBuilder(int index) * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1174,8 +1146,7 @@ public com.google.cloud.talent.v4beta1.Job.Builder addJobsBuilder() { * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -1188,8 +1159,7 @@ public com.google.cloud.talent.v4beta1.Job.Builder addJobsBuilder(int index) { * * *
-     * Required.
-     * The jobs to be updated.
+     * Required. The jobs to be updated.
      * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchUpdateJobsRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchUpdateJobsRequestOrBuilder.java index 7e0aad147050..038486ecf00a 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchUpdateJobsRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchUpdateJobsRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface BatchUpdateJobsRequestOrBuilder * * *
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -27,8 +26,7 @@ public interface BatchUpdateJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -43,8 +41,7 @@ public interface BatchUpdateJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The jobs to be updated.
+   * Required. The jobs to be updated.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -54,8 +51,7 @@ public interface BatchUpdateJobsRequestOrBuilder * * *
-   * Required.
-   * The jobs to be updated.
+   * Required. The jobs to be updated.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -65,8 +61,7 @@ public interface BatchUpdateJobsRequestOrBuilder * * *
-   * Required.
-   * The jobs to be updated.
+   * Required. The jobs to be updated.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -76,8 +71,7 @@ public interface BatchUpdateJobsRequestOrBuilder * * *
-   * Required.
-   * The jobs to be updated.
+   * Required. The jobs to be updated.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; @@ -87,8 +81,7 @@ public interface BatchUpdateJobsRequestOrBuilder * * *
-   * Required.
-   * The jobs to be updated.
+   * Required. The jobs to be updated.
    * 
* * repeated .google.cloud.talent.v4beta1.Job jobs = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CandidateAvailabilityFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CandidateAvailabilityFilter.java new file mode 100644 index 000000000000..25d110b1a641 --- /dev/null +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CandidateAvailabilityFilter.java @@ -0,0 +1,522 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/talent/v4beta1/filters.proto + +package com.google.cloud.talent.v4beta1; + +/** + * + * + *
+ * Input only
+ * Filter on availability signals.
+ * 
+ * + * Protobuf type {@code google.cloud.talent.v4beta1.CandidateAvailabilityFilter} + */ +public final class CandidateAvailabilityFilter extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.talent.v4beta1.CandidateAvailabilityFilter) + CandidateAvailabilityFilterOrBuilder { + private static final long serialVersionUID = 0L; + // Use CandidateAvailabilityFilter.newBuilder() to construct. + private CandidateAvailabilityFilter(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private CandidateAvailabilityFilter() {} + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private CandidateAvailabilityFilter( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: + { + negated_ = input.readBool(); + break; + } + default: + { + if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.talent.v4beta1.FiltersProto + .internal_static_google_cloud_talent_v4beta1_CandidateAvailabilityFilter_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.talent.v4beta1.FiltersProto + .internal_static_google_cloud_talent_v4beta1_CandidateAvailabilityFilter_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.class, + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.Builder.class); + } + + public static final int NEGATED_FIELD_NUMBER = 1; + private boolean negated_; + /** + * + * + *
+   * Optional. It is false by default. If true, API excludes all the potential
+   * available profiles.
+   * 
+ * + * bool negated = 1; + */ + public boolean getNegated() { + return negated_; + } + + 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 (negated_ != false) { + output.writeBool(1, negated_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (negated_ != false) { + size += com.google.protobuf.CodedOutputStream.computeBoolSize(1, negated_); + } + size += unknownFields.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.talent.v4beta1.CandidateAvailabilityFilter)) { + return super.equals(obj); + } + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter other = + (com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter) obj; + + if (getNegated() != other.getNegated()) return false; + if (!unknownFields.equals(other.unknownFields)) 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) + NEGATED_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getNegated()); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter 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.talent.v4beta1.CandidateAvailabilityFilter parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter 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.talent.v4beta1.CandidateAvailabilityFilter parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter 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.talent.v4beta1.CandidateAvailabilityFilter parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter 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.talent.v4beta1.CandidateAvailabilityFilter parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter 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.talent.v4beta1.CandidateAvailabilityFilter 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; + } + /** + * + * + *
+   * Input only
+   * Filter on availability signals.
+   * 
+ * + * Protobuf type {@code google.cloud.talent.v4beta1.CandidateAvailabilityFilter} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.talent.v4beta1.CandidateAvailabilityFilter) + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilterOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.talent.v4beta1.FiltersProto + .internal_static_google_cloud_talent_v4beta1_CandidateAvailabilityFilter_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.talent.v4beta1.FiltersProto + .internal_static_google_cloud_talent_v4beta1_CandidateAvailabilityFilter_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.class, + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.Builder.class); + } + + // Construct using com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + @java.lang.Override + public Builder clear() { + super.clear(); + negated_ = false; + + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.talent.v4beta1.FiltersProto + .internal_static_google_cloud_talent_v4beta1_CandidateAvailabilityFilter_descriptor; + } + + @java.lang.Override + public com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter getDefaultInstanceForType() { + return com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter build() { + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter buildPartial() { + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter result = + new com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter(this); + result.negated_ = negated_; + 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.cloud.talent.v4beta1.CandidateAvailabilityFilter) { + return mergeFrom((com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter other) { + if (other == com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.getDefaultInstance()) + return this; + if (other.getNegated() != false) { + setNegated(other.getNegated()); + } + this.mergeUnknownFields(other.unknownFields); + 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 { + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private boolean negated_; + /** + * + * + *
+     * Optional. It is false by default. If true, API excludes all the potential
+     * available profiles.
+     * 
+ * + * bool negated = 1; + */ + public boolean getNegated() { + return negated_; + } + /** + * + * + *
+     * Optional. It is false by default. If true, API excludes all the potential
+     * available profiles.
+     * 
+ * + * bool negated = 1; + */ + public Builder setNegated(boolean value) { + + negated_ = value; + onChanged(); + return this; + } + /** + * + * + *
+     * Optional. It is false by default. If true, API excludes all the potential
+     * available profiles.
+     * 
+ * + * bool negated = 1; + */ + public Builder clearNegated() { + + negated_ = 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.talent.v4beta1.CandidateAvailabilityFilter) + } + + // @@protoc_insertion_point(class_scope:google.cloud.talent.v4beta1.CandidateAvailabilityFilter) + private static final com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter(); + } + + public static com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public CandidateAvailabilityFilter parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new CandidateAvailabilityFilter(input, extensionRegistry); + } + }; + + 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.talent.v4beta1.CandidateAvailabilityFilter getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CandidateAvailabilityFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CandidateAvailabilityFilterOrBuilder.java new file mode 100644 index 000000000000..d433ea8ac107 --- /dev/null +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CandidateAvailabilityFilterOrBuilder.java @@ -0,0 +1,22 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/talent/v4beta1/filters.proto + +package com.google.cloud.talent.v4beta1; + +public interface CandidateAvailabilityFilterOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.talent.v4beta1.CandidateAvailabilityFilter) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Optional. It is false by default. If true, API excludes all the potential
+   * available profiles.
+   * 
+ * + * bool negated = 1; + */ + boolean getNegated(); +} diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Certification.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Certification.java index 292cdec9962d..2be10baf8e33 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Certification.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Certification.java @@ -141,8 +141,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * Name of license or certification.
+   * Optional. Name of license or certification.
    * Number of characters allowed is 100.
    * 
* @@ -163,8 +162,7 @@ public java.lang.String getDisplayName() { * * *
-   * Optional.
-   * Name of license or certification.
+   * Optional. Name of license or certification.
    * Number of characters allowed is 100.
    * 
* @@ -188,8 +186,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-   * Optional.
-   * Acquisition date or effective date of license or certification.
+   * Optional. Acquisition date or effective date of license or certification.
    * 
* * .google.type.Date acquire_date = 2; @@ -201,8 +198,7 @@ public boolean hasAcquireDate() { * * *
-   * Optional.
-   * Acquisition date or effective date of license or certification.
+   * Optional. Acquisition date or effective date of license or certification.
    * 
* * .google.type.Date acquire_date = 2; @@ -214,8 +210,7 @@ public com.google.type.Date getAcquireDate() { * * *
-   * Optional.
-   * Acquisition date or effective date of license or certification.
+   * Optional. Acquisition date or effective date of license or certification.
    * 
* * .google.type.Date acquire_date = 2; @@ -230,8 +225,7 @@ public com.google.type.DateOrBuilder getAcquireDateOrBuilder() { * * *
-   * Optional.
-   * Expiration date of license of certification.
+   * Optional. Expiration date of license of certification.
    * 
* * .google.type.Date expire_date = 3; @@ -243,8 +237,7 @@ public boolean hasExpireDate() { * * *
-   * Optional.
-   * Expiration date of license of certification.
+   * Optional. Expiration date of license of certification.
    * 
* * .google.type.Date expire_date = 3; @@ -256,8 +249,7 @@ public com.google.type.Date getExpireDate() { * * *
-   * Optional.
-   * Expiration date of license of certification.
+   * Optional. Expiration date of license of certification.
    * 
* * .google.type.Date expire_date = 3; @@ -272,8 +264,7 @@ public com.google.type.DateOrBuilder getExpireDateOrBuilder() { * * *
-   * Optional.
-   * Authority of license, such as government.
+   * Optional. Authority of license, such as government.
    * Number of characters allowed is 100.
    * 
* @@ -294,8 +285,7 @@ public java.lang.String getAuthority() { * * *
-   * Optional.
-   * Authority of license, such as government.
+   * Optional. Authority of license, such as government.
    * Number of characters allowed is 100.
    * 
* @@ -319,8 +309,7 @@ public com.google.protobuf.ByteString getAuthorityBytes() { * * *
-   * Optional.
-   * Description of license or certification.
+   * Optional. Description of license or certification.
    * Number of characters allowed is 100,000.
    * 
* @@ -341,8 +330,7 @@ public java.lang.String getDescription() { * * *
-   * Optional.
-   * Description of license or certification.
+   * Optional. Description of license or certification.
    * Number of characters allowed is 100,000.
    * 
* @@ -769,8 +757,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * Name of license or certification.
+     * Optional. Name of license or certification.
      * Number of characters allowed is 100.
      * 
* @@ -791,8 +778,7 @@ public java.lang.String getDisplayName() { * * *
-     * Optional.
-     * Name of license or certification.
+     * Optional. Name of license or certification.
      * Number of characters allowed is 100.
      * 
* @@ -813,8 +799,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-     * Optional.
-     * Name of license or certification.
+     * Optional. Name of license or certification.
      * Number of characters allowed is 100.
      * 
* @@ -833,8 +818,7 @@ public Builder setDisplayName(java.lang.String value) { * * *
-     * Optional.
-     * Name of license or certification.
+     * Optional. Name of license or certification.
      * Number of characters allowed is 100.
      * 
* @@ -850,8 +834,7 @@ public Builder clearDisplayName() { * * *
-     * Optional.
-     * Name of license or certification.
+     * Optional. Name of license or certification.
      * Number of characters allowed is 100.
      * 
* @@ -876,8 +859,7 @@ public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Acquisition date or effective date of license or certification.
+     * Optional. Acquisition date or effective date of license or certification.
      * 
* * .google.type.Date acquire_date = 2; @@ -889,8 +871,7 @@ public boolean hasAcquireDate() { * * *
-     * Optional.
-     * Acquisition date or effective date of license or certification.
+     * Optional. Acquisition date or effective date of license or certification.
      * 
* * .google.type.Date acquire_date = 2; @@ -906,8 +887,7 @@ public com.google.type.Date getAcquireDate() { * * *
-     * Optional.
-     * Acquisition date or effective date of license or certification.
+     * Optional. Acquisition date or effective date of license or certification.
      * 
* * .google.type.Date acquire_date = 2; @@ -929,8 +909,7 @@ public Builder setAcquireDate(com.google.type.Date value) { * * *
-     * Optional.
-     * Acquisition date or effective date of license or certification.
+     * Optional. Acquisition date or effective date of license or certification.
      * 
* * .google.type.Date acquire_date = 2; @@ -949,8 +928,7 @@ public Builder setAcquireDate(com.google.type.Date.Builder builderForValue) { * * *
-     * Optional.
-     * Acquisition date or effective date of license or certification.
+     * Optional. Acquisition date or effective date of license or certification.
      * 
* * .google.type.Date acquire_date = 2; @@ -974,8 +952,7 @@ public Builder mergeAcquireDate(com.google.type.Date value) { * * *
-     * Optional.
-     * Acquisition date or effective date of license or certification.
+     * Optional. Acquisition date or effective date of license or certification.
      * 
* * .google.type.Date acquire_date = 2; @@ -995,8 +972,7 @@ public Builder clearAcquireDate() { * * *
-     * Optional.
-     * Acquisition date or effective date of license or certification.
+     * Optional. Acquisition date or effective date of license or certification.
      * 
* * .google.type.Date acquire_date = 2; @@ -1010,8 +986,7 @@ public com.google.type.Date.Builder getAcquireDateBuilder() { * * *
-     * Optional.
-     * Acquisition date or effective date of license or certification.
+     * Optional. Acquisition date or effective date of license or certification.
      * 
* * .google.type.Date acquire_date = 2; @@ -1027,8 +1002,7 @@ public com.google.type.DateOrBuilder getAcquireDateOrBuilder() { * * *
-     * Optional.
-     * Acquisition date or effective date of license or certification.
+     * Optional. Acquisition date or effective date of license or certification.
      * 
* * .google.type.Date acquire_date = 2; @@ -1054,8 +1028,7 @@ public com.google.type.DateOrBuilder getAcquireDateOrBuilder() { * * *
-     * Optional.
-     * Expiration date of license of certification.
+     * Optional. Expiration date of license of certification.
      * 
* * .google.type.Date expire_date = 3; @@ -1067,8 +1040,7 @@ public boolean hasExpireDate() { * * *
-     * Optional.
-     * Expiration date of license of certification.
+     * Optional. Expiration date of license of certification.
      * 
* * .google.type.Date expire_date = 3; @@ -1084,8 +1056,7 @@ public com.google.type.Date getExpireDate() { * * *
-     * Optional.
-     * Expiration date of license of certification.
+     * Optional. Expiration date of license of certification.
      * 
* * .google.type.Date expire_date = 3; @@ -1107,8 +1078,7 @@ public Builder setExpireDate(com.google.type.Date value) { * * *
-     * Optional.
-     * Expiration date of license of certification.
+     * Optional. Expiration date of license of certification.
      * 
* * .google.type.Date expire_date = 3; @@ -1127,8 +1097,7 @@ public Builder setExpireDate(com.google.type.Date.Builder builderForValue) { * * *
-     * Optional.
-     * Expiration date of license of certification.
+     * Optional. Expiration date of license of certification.
      * 
* * .google.type.Date expire_date = 3; @@ -1152,8 +1121,7 @@ public Builder mergeExpireDate(com.google.type.Date value) { * * *
-     * Optional.
-     * Expiration date of license of certification.
+     * Optional. Expiration date of license of certification.
      * 
* * .google.type.Date expire_date = 3; @@ -1173,8 +1141,7 @@ public Builder clearExpireDate() { * * *
-     * Optional.
-     * Expiration date of license of certification.
+     * Optional. Expiration date of license of certification.
      * 
* * .google.type.Date expire_date = 3; @@ -1188,8 +1155,7 @@ public com.google.type.Date.Builder getExpireDateBuilder() { * * *
-     * Optional.
-     * Expiration date of license of certification.
+     * Optional. Expiration date of license of certification.
      * 
* * .google.type.Date expire_date = 3; @@ -1205,8 +1171,7 @@ public com.google.type.DateOrBuilder getExpireDateOrBuilder() { * * *
-     * Optional.
-     * Expiration date of license of certification.
+     * Optional. Expiration date of license of certification.
      * 
* * .google.type.Date expire_date = 3; @@ -1229,8 +1194,7 @@ public com.google.type.DateOrBuilder getExpireDateOrBuilder() { * * *
-     * Optional.
-     * Authority of license, such as government.
+     * Optional. Authority of license, such as government.
      * Number of characters allowed is 100.
      * 
* @@ -1251,8 +1215,7 @@ public java.lang.String getAuthority() { * * *
-     * Optional.
-     * Authority of license, such as government.
+     * Optional. Authority of license, such as government.
      * Number of characters allowed is 100.
      * 
* @@ -1273,8 +1236,7 @@ public com.google.protobuf.ByteString getAuthorityBytes() { * * *
-     * Optional.
-     * Authority of license, such as government.
+     * Optional. Authority of license, such as government.
      * Number of characters allowed is 100.
      * 
* @@ -1293,8 +1255,7 @@ public Builder setAuthority(java.lang.String value) { * * *
-     * Optional.
-     * Authority of license, such as government.
+     * Optional. Authority of license, such as government.
      * Number of characters allowed is 100.
      * 
* @@ -1310,8 +1271,7 @@ public Builder clearAuthority() { * * *
-     * Optional.
-     * Authority of license, such as government.
+     * Optional. Authority of license, such as government.
      * Number of characters allowed is 100.
      * 
* @@ -1333,8 +1293,7 @@ public Builder setAuthorityBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Description of license or certification.
+     * Optional. Description of license or certification.
      * Number of characters allowed is 100,000.
      * 
* @@ -1355,8 +1314,7 @@ public java.lang.String getDescription() { * * *
-     * Optional.
-     * Description of license or certification.
+     * Optional. Description of license or certification.
      * Number of characters allowed is 100,000.
      * 
* @@ -1377,8 +1335,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-     * Optional.
-     * Description of license or certification.
+     * Optional. Description of license or certification.
      * Number of characters allowed is 100,000.
      * 
* @@ -1397,8 +1354,7 @@ public Builder setDescription(java.lang.String value) { * * *
-     * Optional.
-     * Description of license or certification.
+     * Optional. Description of license or certification.
      * Number of characters allowed is 100,000.
      * 
* @@ -1414,8 +1370,7 @@ public Builder clearDescription() { * * *
-     * Optional.
-     * Description of license or certification.
+     * Optional. Description of license or certification.
      * Number of characters allowed is 100,000.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CertificationOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CertificationOrBuilder.java index 60053d02974c..79d8e2bbcf2b 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CertificationOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CertificationOrBuilder.java @@ -12,8 +12,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Name of license or certification.
+   * Optional. Name of license or certification.
    * Number of characters allowed is 100.
    * 
* @@ -24,8 +23,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Name of license or certification.
+   * Optional. Name of license or certification.
    * Number of characters allowed is 100.
    * 
* @@ -37,8 +35,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Acquisition date or effective date of license or certification.
+   * Optional. Acquisition date or effective date of license or certification.
    * 
* * .google.type.Date acquire_date = 2; @@ -48,8 +45,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Acquisition date or effective date of license or certification.
+   * Optional. Acquisition date or effective date of license or certification.
    * 
* * .google.type.Date acquire_date = 2; @@ -59,8 +55,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Acquisition date or effective date of license or certification.
+   * Optional. Acquisition date or effective date of license or certification.
    * 
* * .google.type.Date acquire_date = 2; @@ -71,8 +66,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Expiration date of license of certification.
+   * Optional. Expiration date of license of certification.
    * 
* * .google.type.Date expire_date = 3; @@ -82,8 +76,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Expiration date of license of certification.
+   * Optional. Expiration date of license of certification.
    * 
* * .google.type.Date expire_date = 3; @@ -93,8 +86,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Expiration date of license of certification.
+   * Optional. Expiration date of license of certification.
    * 
* * .google.type.Date expire_date = 3; @@ -105,8 +97,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Authority of license, such as government.
+   * Optional. Authority of license, such as government.
    * Number of characters allowed is 100.
    * 
* @@ -117,8 +108,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Authority of license, such as government.
+   * Optional. Authority of license, such as government.
    * Number of characters allowed is 100.
    * 
* @@ -130,8 +120,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Description of license or certification.
+   * Optional. Description of license or certification.
    * Number of characters allowed is 100,000.
    * 
* @@ -142,8 +131,7 @@ public interface CertificationOrBuilder * * *
-   * Optional.
-   * Description of license or certification.
+   * Optional. Description of license or certification.
    * Number of characters allowed is 100,000.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ClientEvent.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ClientEvent.java index fb8233bb6fe2..de6c8c2beec7 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ClientEvent.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ClientEvent.java @@ -9,7 +9,7 @@ *
  * An event issued when an end user interacts with the application that
  * implements Cloud Talent Solution. Providing this information improves the
- * quality of search and recommendation for the API clients, enabling the
+ * quality of results for the API clients, enabling the
  * service to perform optimally. The number of events sent must be consistent
  * with other calls, such as job searches, issued to the service by the client.
  * 
@@ -251,8 +251,7 @@ public com.google.protobuf.ByteString getRequestIdBytes() { * * *
-   * Required.
-   * A unique identifier, generated by the client application.
+   * Required. A unique identifier, generated by the client application.
    * 
* * string event_id = 2; @@ -272,8 +271,7 @@ public java.lang.String getEventId() { * * *
-   * Required.
-   * A unique identifier, generated by the client application.
+   * Required. A unique identifier, generated by the client application.
    * 
* * string event_id = 2; @@ -296,8 +294,7 @@ public com.google.protobuf.ByteString getEventIdBytes() { * * *
-   * Required.
-   * The timestamp of the event.
+   * Required. The timestamp of the event.
    * 
* * .google.protobuf.Timestamp create_time = 4; @@ -309,8 +306,7 @@ public boolean hasCreateTime() { * * *
-   * Required.
-   * The timestamp of the event.
+   * Required. The timestamp of the event.
    * 
* * .google.protobuf.Timestamp create_time = 4; @@ -322,8 +318,7 @@ public com.google.protobuf.Timestamp getCreateTime() { * * *
-   * Required.
-   * The timestamp of the event.
+   * Required. The timestamp of the event.
    * 
* * .google.protobuf.Timestamp create_time = 4; @@ -432,9 +427,8 @@ public com.google.cloud.talent.v4beta1.ProfileEventOrBuilder getProfileEventOrBu * * *
-   * Optional.
-   * Notes about the event provided by recruiters or other users, for example,
-   * feedback on why a profile was bookmarked.
+   * Optional. Notes about the event provided by recruiters or other users, for
+   * example, feedback on why a profile was bookmarked.
    * 
* * string event_notes = 9; @@ -454,9 +448,8 @@ public java.lang.String getEventNotes() { * * *
-   * Optional.
-   * Notes about the event provided by recruiters or other users, for example,
-   * feedback on why a profile was bookmarked.
+   * Optional. Notes about the event provided by recruiters or other users, for
+   * example, feedback on why a profile was bookmarked.
    * 
* * string event_notes = 9; @@ -709,7 +702,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build *
    * An event issued when an end user interacts with the application that
    * implements Cloud Talent Solution. Providing this information improves the
-   * quality of search and recommendation for the API clients, enabling the
+   * quality of results for the API clients, enabling the
    * service to perform optimally. The number of events sent must be consistent
    * with other calls, such as job searches, issued to the service by the client.
    * 
@@ -1048,8 +1041,7 @@ public Builder setRequestIdBytes(com.google.protobuf.ByteString value) { * * *
-     * Required.
-     * A unique identifier, generated by the client application.
+     * Required. A unique identifier, generated by the client application.
      * 
* * string event_id = 2; @@ -1069,8 +1061,7 @@ public java.lang.String getEventId() { * * *
-     * Required.
-     * A unique identifier, generated by the client application.
+     * Required. A unique identifier, generated by the client application.
      * 
* * string event_id = 2; @@ -1090,8 +1081,7 @@ public com.google.protobuf.ByteString getEventIdBytes() { * * *
-     * Required.
-     * A unique identifier, generated by the client application.
+     * Required. A unique identifier, generated by the client application.
      * 
* * string event_id = 2; @@ -1109,8 +1099,7 @@ public Builder setEventId(java.lang.String value) { * * *
-     * Required.
-     * A unique identifier, generated by the client application.
+     * Required. A unique identifier, generated by the client application.
      * 
* * string event_id = 2; @@ -1125,8 +1114,7 @@ public Builder clearEventId() { * * *
-     * Required.
-     * A unique identifier, generated by the client application.
+     * Required. A unique identifier, generated by the client application.
      * 
* * string event_id = 2; @@ -1152,8 +1140,7 @@ public Builder setEventIdBytes(com.google.protobuf.ByteString value) { * * *
-     * Required.
-     * The timestamp of the event.
+     * Required. The timestamp of the event.
      * 
* * .google.protobuf.Timestamp create_time = 4; @@ -1165,8 +1152,7 @@ public boolean hasCreateTime() { * * *
-     * Required.
-     * The timestamp of the event.
+     * Required. The timestamp of the event.
      * 
* * .google.protobuf.Timestamp create_time = 4; @@ -1184,8 +1170,7 @@ public com.google.protobuf.Timestamp getCreateTime() { * * *
-     * Required.
-     * The timestamp of the event.
+     * Required. The timestamp of the event.
      * 
* * .google.protobuf.Timestamp create_time = 4; @@ -1207,8 +1192,7 @@ public Builder setCreateTime(com.google.protobuf.Timestamp value) { * * *
-     * Required.
-     * The timestamp of the event.
+     * Required. The timestamp of the event.
      * 
* * .google.protobuf.Timestamp create_time = 4; @@ -1227,8 +1211,7 @@ public Builder setCreateTime(com.google.protobuf.Timestamp.Builder builderForVal * * *
-     * Required.
-     * The timestamp of the event.
+     * Required. The timestamp of the event.
      * 
* * .google.protobuf.Timestamp create_time = 4; @@ -1252,8 +1235,7 @@ public Builder mergeCreateTime(com.google.protobuf.Timestamp value) { * * *
-     * Required.
-     * The timestamp of the event.
+     * Required. The timestamp of the event.
      * 
* * .google.protobuf.Timestamp create_time = 4; @@ -1273,8 +1255,7 @@ public Builder clearCreateTime() { * * *
-     * Required.
-     * The timestamp of the event.
+     * Required. The timestamp of the event.
      * 
* * .google.protobuf.Timestamp create_time = 4; @@ -1288,8 +1269,7 @@ public com.google.protobuf.Timestamp.Builder getCreateTimeBuilder() { * * *
-     * Required.
-     * The timestamp of the event.
+     * Required. The timestamp of the event.
      * 
* * .google.protobuf.Timestamp create_time = 4; @@ -1307,8 +1287,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() { * * *
-     * Required.
-     * The timestamp of the event.
+     * Required. The timestamp of the event.
      * 
* * .google.protobuf.Timestamp create_time = 4; @@ -1756,9 +1735,8 @@ public com.google.cloud.talent.v4beta1.ProfileEventOrBuilder getProfileEventOrBu * * *
-     * Optional.
-     * Notes about the event provided by recruiters or other users, for example,
-     * feedback on why a profile was bookmarked.
+     * Optional. Notes about the event provided by recruiters or other users, for
+     * example, feedback on why a profile was bookmarked.
      * 
* * string event_notes = 9; @@ -1778,9 +1756,8 @@ public java.lang.String getEventNotes() { * * *
-     * Optional.
-     * Notes about the event provided by recruiters or other users, for example,
-     * feedback on why a profile was bookmarked.
+     * Optional. Notes about the event provided by recruiters or other users, for
+     * example, feedback on why a profile was bookmarked.
      * 
* * string event_notes = 9; @@ -1800,9 +1777,8 @@ public com.google.protobuf.ByteString getEventNotesBytes() { * * *
-     * Optional.
-     * Notes about the event provided by recruiters or other users, for example,
-     * feedback on why a profile was bookmarked.
+     * Optional. Notes about the event provided by recruiters or other users, for
+     * example, feedback on why a profile was bookmarked.
      * 
* * string event_notes = 9; @@ -1820,9 +1796,8 @@ public Builder setEventNotes(java.lang.String value) { * * *
-     * Optional.
-     * Notes about the event provided by recruiters or other users, for example,
-     * feedback on why a profile was bookmarked.
+     * Optional. Notes about the event provided by recruiters or other users, for
+     * example, feedback on why a profile was bookmarked.
      * 
* * string event_notes = 9; @@ -1837,9 +1812,8 @@ public Builder clearEventNotes() { * * *
-     * Optional.
-     * Notes about the event provided by recruiters or other users, for example,
-     * feedback on why a profile was bookmarked.
+     * Optional. Notes about the event provided by recruiters or other users, for
+     * example, feedback on why a profile was bookmarked.
      * 
* * string event_notes = 9; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ClientEventOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ClientEventOrBuilder.java index 0e01f6d7aa51..9c5b6039aa3a 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ClientEventOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ClientEventOrBuilder.java @@ -37,8 +37,7 @@ public interface ClientEventOrBuilder * * *
-   * Required.
-   * A unique identifier, generated by the client application.
+   * Required. A unique identifier, generated by the client application.
    * 
* * string event_id = 2; @@ -48,8 +47,7 @@ public interface ClientEventOrBuilder * * *
-   * Required.
-   * A unique identifier, generated by the client application.
+   * Required. A unique identifier, generated by the client application.
    * 
* * string event_id = 2; @@ -60,8 +58,7 @@ public interface ClientEventOrBuilder * * *
-   * Required.
-   * The timestamp of the event.
+   * Required. The timestamp of the event.
    * 
* * .google.protobuf.Timestamp create_time = 4; @@ -71,8 +68,7 @@ public interface ClientEventOrBuilder * * *
-   * Required.
-   * The timestamp of the event.
+   * Required. The timestamp of the event.
    * 
* * .google.protobuf.Timestamp create_time = 4; @@ -82,8 +78,7 @@ public interface ClientEventOrBuilder * * *
-   * Required.
-   * The timestamp of the event.
+   * Required. The timestamp of the event.
    * 
* * .google.protobuf.Timestamp create_time = 4; @@ -162,9 +157,8 @@ public interface ClientEventOrBuilder * * *
-   * Optional.
-   * Notes about the event provided by recruiters or other users, for example,
-   * feedback on why a profile was bookmarked.
+   * Optional. Notes about the event provided by recruiters or other users, for
+   * example, feedback on why a profile was bookmarked.
    * 
* * string event_notes = 9; @@ -174,9 +168,8 @@ public interface ClientEventOrBuilder * * *
-   * Optional.
-   * Notes about the event provided by recruiters or other users, for example,
-   * feedback on why a profile was bookmarked.
+   * Optional. Notes about the event provided by recruiters or other users, for
+   * example, feedback on why a profile was bookmarked.
    * 
* * string event_notes = 9; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CommuteFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CommuteFilter.java index 6fcb3271a258..d72e97d9d177 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CommuteFilter.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CommuteFilter.java @@ -340,8 +340,8 @@ public TrafficOptionCase getTrafficOptionCase() { * * *
-   * Required.
-   * The method of transportation for which to calculate the commute time.
+   * Required. The method of transportation for which to calculate the commute
+   * time.
    * 
* * .google.cloud.talent.v4beta1.CommuteMethod commute_method = 1; @@ -353,8 +353,8 @@ public int getCommuteMethodValue() { * * *
-   * Required.
-   * The method of transportation for which to calculate the commute time.
+   * Required. The method of transportation for which to calculate the commute
+   * time.
    * 
* * .google.cloud.talent.v4beta1.CommuteMethod commute_method = 1; @@ -372,9 +372,8 @@ public com.google.cloud.talent.v4beta1.CommuteMethod getCommuteMethod() { * * *
-   * Required.
-   * The latitude and longitude of the location from which to calculate the
-   * commute time.
+   * Required. The latitude and longitude of the location from which to
+   * calculate the commute time.
    * 
* * .google.type.LatLng start_coordinates = 2; @@ -386,9 +385,8 @@ public boolean hasStartCoordinates() { * * *
-   * Required.
-   * The latitude and longitude of the location from which to calculate the
-   * commute time.
+   * Required. The latitude and longitude of the location from which to
+   * calculate the commute time.
    * 
* * .google.type.LatLng start_coordinates = 2; @@ -402,9 +400,8 @@ public com.google.type.LatLng getStartCoordinates() { * * *
-   * Required.
-   * The latitude and longitude of the location from which to calculate the
-   * commute time.
+   * Required. The latitude and longitude of the location from which to
+   * calculate the commute time.
    * 
* * .google.type.LatLng start_coordinates = 2; @@ -419,9 +416,8 @@ public com.google.type.LatLngOrBuilder getStartCoordinatesOrBuilder() { * * *
-   * Required.
-   * The maximum travel time in seconds. The maximum allowed value is `3600s`
-   * (one hour). Format is `123s`.
+   * Required. The maximum travel time in seconds. The maximum allowed value is
+   * `3600s` (one hour). Format is `123s`.
    * 
* * .google.protobuf.Duration travel_duration = 3; @@ -433,9 +429,8 @@ public boolean hasTravelDuration() { * * *
-   * Required.
-   * The maximum travel time in seconds. The maximum allowed value is `3600s`
-   * (one hour). Format is `123s`.
+   * Required. The maximum travel time in seconds. The maximum allowed value is
+   * `3600s` (one hour). Format is `123s`.
    * 
* * .google.protobuf.Duration travel_duration = 3; @@ -449,9 +444,8 @@ public com.google.protobuf.Duration getTravelDuration() { * * *
-   * Required.
-   * The maximum travel time in seconds. The maximum allowed value is `3600s`
-   * (one hour). Format is `123s`.
+   * Required. The maximum travel time in seconds. The maximum allowed value is
+   * `3600s` (one hour). Format is `123s`.
    * 
* * .google.protobuf.Duration travel_duration = 3; @@ -466,12 +460,11 @@ public com.google.protobuf.DurationOrBuilder getTravelDurationOrBuilder() { * * *
-   * Optional.
-   * If `true`, jobs without street level addresses may also be returned.
-   * For city level addresses, the city center is used. For state and coarser
-   * level addresses, text matching is used.
-   * If this field is set to `false` or isn't specified, only jobs that include
-   * street level addresses will be returned by commute search.
+   * Optional. If `true`, jobs without street level addresses may also be
+   * returned. For city level addresses, the city center is used. For state and
+   * coarser level addresses, text matching is used. If this field is set to
+   * `false` or isn't specified, only jobs that include street level addresses
+   * will be returned by commute search.
    * 
* * bool allow_imprecise_addresses = 4; @@ -485,8 +478,8 @@ public boolean getAllowImpreciseAddresses() { * * *
-   * Optional.
-   * Specifies the traffic density to use when calculating commute time.
+   * Optional. Specifies the traffic density to use when calculating commute
+   * time.
    * 
* * .google.cloud.talent.v4beta1.CommuteFilter.RoadTraffic road_traffic = 5; @@ -501,8 +494,8 @@ public int getRoadTrafficValue() { * * *
-   * Optional.
-   * Specifies the traffic density to use when calculating commute time.
+   * Optional. Specifies the traffic density to use when calculating commute
+   * time.
    * 
* * .google.cloud.talent.v4beta1.CommuteFilter.RoadTraffic road_traffic = 5; @@ -525,9 +518,9 @@ public com.google.cloud.talent.v4beta1.CommuteFilter.RoadTraffic getRoadTraffic( * * *
-   * Optional.
-   * The departure time used to calculate traffic impact, represented as
-   * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+   * Optional. The departure time used to calculate traffic impact,
+   * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+   * time zone.
    * Currently traffic model is restricted to hour level resolution.
    * 
* @@ -540,9 +533,9 @@ public boolean hasDepartureTime() { * * *
-   * Optional.
-   * The departure time used to calculate traffic impact, represented as
-   * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+   * Optional. The departure time used to calculate traffic impact,
+   * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+   * time zone.
    * Currently traffic model is restricted to hour level resolution.
    * 
* @@ -558,9 +551,9 @@ public com.google.type.TimeOfDay getDepartureTime() { * * *
-   * Optional.
-   * The departure time used to calculate traffic impact, represented as
-   * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+   * Optional. The departure time used to calculate traffic impact,
+   * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+   * time zone.
    * Currently traffic model is restricted to hour level resolution.
    * 
* @@ -1049,8 +1042,8 @@ public Builder clearTrafficOption() { * * *
-     * Required.
-     * The method of transportation for which to calculate the commute time.
+     * Required. The method of transportation for which to calculate the commute
+     * time.
      * 
* * .google.cloud.talent.v4beta1.CommuteMethod commute_method = 1; @@ -1062,8 +1055,8 @@ public int getCommuteMethodValue() { * * *
-     * Required.
-     * The method of transportation for which to calculate the commute time.
+     * Required. The method of transportation for which to calculate the commute
+     * time.
      * 
* * .google.cloud.talent.v4beta1.CommuteMethod commute_method = 1; @@ -1077,8 +1070,8 @@ public Builder setCommuteMethodValue(int value) { * * *
-     * Required.
-     * The method of transportation for which to calculate the commute time.
+     * Required. The method of transportation for which to calculate the commute
+     * time.
      * 
* * .google.cloud.talent.v4beta1.CommuteMethod commute_method = 1; @@ -1093,8 +1086,8 @@ public com.google.cloud.talent.v4beta1.CommuteMethod getCommuteMethod() { * * *
-     * Required.
-     * The method of transportation for which to calculate the commute time.
+     * Required. The method of transportation for which to calculate the commute
+     * time.
      * 
* * .google.cloud.talent.v4beta1.CommuteMethod commute_method = 1; @@ -1112,8 +1105,8 @@ public Builder setCommuteMethod(com.google.cloud.talent.v4beta1.CommuteMethod va * * *
-     * Required.
-     * The method of transportation for which to calculate the commute time.
+     * Required. The method of transportation for which to calculate the commute
+     * time.
      * 
* * .google.cloud.talent.v4beta1.CommuteMethod commute_method = 1; @@ -1133,9 +1126,8 @@ public Builder clearCommuteMethod() { * * *
-     * Required.
-     * The latitude and longitude of the location from which to calculate the
-     * commute time.
+     * Required. The latitude and longitude of the location from which to
+     * calculate the commute time.
      * 
* * .google.type.LatLng start_coordinates = 2; @@ -1147,9 +1139,8 @@ public boolean hasStartCoordinates() { * * *
-     * Required.
-     * The latitude and longitude of the location from which to calculate the
-     * commute time.
+     * Required. The latitude and longitude of the location from which to
+     * calculate the commute time.
      * 
* * .google.type.LatLng start_coordinates = 2; @@ -1167,9 +1158,8 @@ public com.google.type.LatLng getStartCoordinates() { * * *
-     * Required.
-     * The latitude and longitude of the location from which to calculate the
-     * commute time.
+     * Required. The latitude and longitude of the location from which to
+     * calculate the commute time.
      * 
* * .google.type.LatLng start_coordinates = 2; @@ -1191,9 +1181,8 @@ public Builder setStartCoordinates(com.google.type.LatLng value) { * * *
-     * Required.
-     * The latitude and longitude of the location from which to calculate the
-     * commute time.
+     * Required. The latitude and longitude of the location from which to
+     * calculate the commute time.
      * 
* * .google.type.LatLng start_coordinates = 2; @@ -1212,9 +1201,8 @@ public Builder setStartCoordinates(com.google.type.LatLng.Builder builderForValu * * *
-     * Required.
-     * The latitude and longitude of the location from which to calculate the
-     * commute time.
+     * Required. The latitude and longitude of the location from which to
+     * calculate the commute time.
      * 
* * .google.type.LatLng start_coordinates = 2; @@ -1238,9 +1226,8 @@ public Builder mergeStartCoordinates(com.google.type.LatLng value) { * * *
-     * Required.
-     * The latitude and longitude of the location from which to calculate the
-     * commute time.
+     * Required. The latitude and longitude of the location from which to
+     * calculate the commute time.
      * 
* * .google.type.LatLng start_coordinates = 2; @@ -1260,9 +1247,8 @@ public Builder clearStartCoordinates() { * * *
-     * Required.
-     * The latitude and longitude of the location from which to calculate the
-     * commute time.
+     * Required. The latitude and longitude of the location from which to
+     * calculate the commute time.
      * 
* * .google.type.LatLng start_coordinates = 2; @@ -1276,9 +1262,8 @@ public com.google.type.LatLng.Builder getStartCoordinatesBuilder() { * * *
-     * Required.
-     * The latitude and longitude of the location from which to calculate the
-     * commute time.
+     * Required. The latitude and longitude of the location from which to
+     * calculate the commute time.
      * 
* * .google.type.LatLng start_coordinates = 2; @@ -1296,9 +1281,8 @@ public com.google.type.LatLngOrBuilder getStartCoordinatesOrBuilder() { * * *
-     * Required.
-     * The latitude and longitude of the location from which to calculate the
-     * commute time.
+     * Required. The latitude and longitude of the location from which to
+     * calculate the commute time.
      * 
* * .google.type.LatLng start_coordinates = 2; @@ -1328,9 +1312,8 @@ public com.google.type.LatLngOrBuilder getStartCoordinatesOrBuilder() { * * *
-     * Required.
-     * The maximum travel time in seconds. The maximum allowed value is `3600s`
-     * (one hour). Format is `123s`.
+     * Required. The maximum travel time in seconds. The maximum allowed value is
+     * `3600s` (one hour). Format is `123s`.
      * 
* * .google.protobuf.Duration travel_duration = 3; @@ -1342,9 +1325,8 @@ public boolean hasTravelDuration() { * * *
-     * Required.
-     * The maximum travel time in seconds. The maximum allowed value is `3600s`
-     * (one hour). Format is `123s`.
+     * Required. The maximum travel time in seconds. The maximum allowed value is
+     * `3600s` (one hour). Format is `123s`.
      * 
* * .google.protobuf.Duration travel_duration = 3; @@ -1362,9 +1344,8 @@ public com.google.protobuf.Duration getTravelDuration() { * * *
-     * Required.
-     * The maximum travel time in seconds. The maximum allowed value is `3600s`
-     * (one hour). Format is `123s`.
+     * Required. The maximum travel time in seconds. The maximum allowed value is
+     * `3600s` (one hour). Format is `123s`.
      * 
* * .google.protobuf.Duration travel_duration = 3; @@ -1386,9 +1367,8 @@ public Builder setTravelDuration(com.google.protobuf.Duration value) { * * *
-     * Required.
-     * The maximum travel time in seconds. The maximum allowed value is `3600s`
-     * (one hour). Format is `123s`.
+     * Required. The maximum travel time in seconds. The maximum allowed value is
+     * `3600s` (one hour). Format is `123s`.
      * 
* * .google.protobuf.Duration travel_duration = 3; @@ -1407,9 +1387,8 @@ public Builder setTravelDuration(com.google.protobuf.Duration.Builder builderFor * * *
-     * Required.
-     * The maximum travel time in seconds. The maximum allowed value is `3600s`
-     * (one hour). Format is `123s`.
+     * Required. The maximum travel time in seconds. The maximum allowed value is
+     * `3600s` (one hour). Format is `123s`.
      * 
* * .google.protobuf.Duration travel_duration = 3; @@ -1435,9 +1414,8 @@ public Builder mergeTravelDuration(com.google.protobuf.Duration value) { * * *
-     * Required.
-     * The maximum travel time in seconds. The maximum allowed value is `3600s`
-     * (one hour). Format is `123s`.
+     * Required. The maximum travel time in seconds. The maximum allowed value is
+     * `3600s` (one hour). Format is `123s`.
      * 
* * .google.protobuf.Duration travel_duration = 3; @@ -1457,9 +1435,8 @@ public Builder clearTravelDuration() { * * *
-     * Required.
-     * The maximum travel time in seconds. The maximum allowed value is `3600s`
-     * (one hour). Format is `123s`.
+     * Required. The maximum travel time in seconds. The maximum allowed value is
+     * `3600s` (one hour). Format is `123s`.
      * 
* * .google.protobuf.Duration travel_duration = 3; @@ -1473,9 +1450,8 @@ public com.google.protobuf.Duration.Builder getTravelDurationBuilder() { * * *
-     * Required.
-     * The maximum travel time in seconds. The maximum allowed value is `3600s`
-     * (one hour). Format is `123s`.
+     * Required. The maximum travel time in seconds. The maximum allowed value is
+     * `3600s` (one hour). Format is `123s`.
      * 
* * .google.protobuf.Duration travel_duration = 3; @@ -1493,9 +1469,8 @@ public com.google.protobuf.DurationOrBuilder getTravelDurationOrBuilder() { * * *
-     * Required.
-     * The maximum travel time in seconds. The maximum allowed value is `3600s`
-     * (one hour). Format is `123s`.
+     * Required. The maximum travel time in seconds. The maximum allowed value is
+     * `3600s` (one hour). Format is `123s`.
      * 
* * .google.protobuf.Duration travel_duration = 3; @@ -1522,12 +1497,11 @@ public com.google.protobuf.DurationOrBuilder getTravelDurationOrBuilder() { * * *
-     * Optional.
-     * If `true`, jobs without street level addresses may also be returned.
-     * For city level addresses, the city center is used. For state and coarser
-     * level addresses, text matching is used.
-     * If this field is set to `false` or isn't specified, only jobs that include
-     * street level addresses will be returned by commute search.
+     * Optional. If `true`, jobs without street level addresses may also be
+     * returned. For city level addresses, the city center is used. For state and
+     * coarser level addresses, text matching is used. If this field is set to
+     * `false` or isn't specified, only jobs that include street level addresses
+     * will be returned by commute search.
      * 
* * bool allow_imprecise_addresses = 4; @@ -1539,12 +1513,11 @@ public boolean getAllowImpreciseAddresses() { * * *
-     * Optional.
-     * If `true`, jobs without street level addresses may also be returned.
-     * For city level addresses, the city center is used. For state and coarser
-     * level addresses, text matching is used.
-     * If this field is set to `false` or isn't specified, only jobs that include
-     * street level addresses will be returned by commute search.
+     * Optional. If `true`, jobs without street level addresses may also be
+     * returned. For city level addresses, the city center is used. For state and
+     * coarser level addresses, text matching is used. If this field is set to
+     * `false` or isn't specified, only jobs that include street level addresses
+     * will be returned by commute search.
      * 
* * bool allow_imprecise_addresses = 4; @@ -1559,12 +1532,11 @@ public Builder setAllowImpreciseAddresses(boolean value) { * * *
-     * Optional.
-     * If `true`, jobs without street level addresses may also be returned.
-     * For city level addresses, the city center is used. For state and coarser
-     * level addresses, text matching is used.
-     * If this field is set to `false` or isn't specified, only jobs that include
-     * street level addresses will be returned by commute search.
+     * Optional. If `true`, jobs without street level addresses may also be
+     * returned. For city level addresses, the city center is used. For state and
+     * coarser level addresses, text matching is used. If this field is set to
+     * `false` or isn't specified, only jobs that include street level addresses
+     * will be returned by commute search.
      * 
* * bool allow_imprecise_addresses = 4; @@ -1580,8 +1552,8 @@ public Builder clearAllowImpreciseAddresses() { * * *
-     * Optional.
-     * Specifies the traffic density to use when calculating commute time.
+     * Optional. Specifies the traffic density to use when calculating commute
+     * time.
      * 
* * .google.cloud.talent.v4beta1.CommuteFilter.RoadTraffic road_traffic = 5; @@ -1596,8 +1568,8 @@ public int getRoadTrafficValue() { * * *
-     * Optional.
-     * Specifies the traffic density to use when calculating commute time.
+     * Optional. Specifies the traffic density to use when calculating commute
+     * time.
      * 
* * .google.cloud.talent.v4beta1.CommuteFilter.RoadTraffic road_traffic = 5; @@ -1612,8 +1584,8 @@ public Builder setRoadTrafficValue(int value) { * * *
-     * Optional.
-     * Specifies the traffic density to use when calculating commute time.
+     * Optional. Specifies the traffic density to use when calculating commute
+     * time.
      * 
* * .google.cloud.talent.v4beta1.CommuteFilter.RoadTraffic road_traffic = 5; @@ -1634,8 +1606,8 @@ public com.google.cloud.talent.v4beta1.CommuteFilter.RoadTraffic getRoadTraffic( * * *
-     * Optional.
-     * Specifies the traffic density to use when calculating commute time.
+     * Optional. Specifies the traffic density to use when calculating commute
+     * time.
      * 
* * .google.cloud.talent.v4beta1.CommuteFilter.RoadTraffic road_traffic = 5; @@ -1653,8 +1625,8 @@ public Builder setRoadTraffic(com.google.cloud.talent.v4beta1.CommuteFilter.Road * * *
-     * Optional.
-     * Specifies the traffic density to use when calculating commute time.
+     * Optional. Specifies the traffic density to use when calculating commute
+     * time.
      * 
* * .google.cloud.talent.v4beta1.CommuteFilter.RoadTraffic road_traffic = 5; @@ -1677,9 +1649,9 @@ public Builder clearRoadTraffic() { * * *
-     * Optional.
-     * The departure time used to calculate traffic impact, represented as
-     * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+     * Optional. The departure time used to calculate traffic impact,
+     * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+     * time zone.
      * Currently traffic model is restricted to hour level resolution.
      * 
* @@ -1692,9 +1664,9 @@ public boolean hasDepartureTime() { * * *
-     * Optional.
-     * The departure time used to calculate traffic impact, represented as
-     * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+     * Optional. The departure time used to calculate traffic impact,
+     * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+     * time zone.
      * Currently traffic model is restricted to hour level resolution.
      * 
* @@ -1717,9 +1689,9 @@ public com.google.type.TimeOfDay getDepartureTime() { * * *
-     * Optional.
-     * The departure time used to calculate traffic impact, represented as
-     * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+     * Optional. The departure time used to calculate traffic impact,
+     * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+     * time zone.
      * Currently traffic model is restricted to hour level resolution.
      * 
* @@ -1742,9 +1714,9 @@ public Builder setDepartureTime(com.google.type.TimeOfDay value) { * * *
-     * Optional.
-     * The departure time used to calculate traffic impact, represented as
-     * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+     * Optional. The departure time used to calculate traffic impact,
+     * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+     * time zone.
      * Currently traffic model is restricted to hour level resolution.
      * 
* @@ -1764,9 +1736,9 @@ public Builder setDepartureTime(com.google.type.TimeOfDay.Builder builderForValu * * *
-     * Optional.
-     * The departure time used to calculate traffic impact, represented as
-     * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+     * Optional. The departure time used to calculate traffic impact,
+     * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+     * time zone.
      * Currently traffic model is restricted to hour level resolution.
      * 
* @@ -1797,9 +1769,9 @@ public Builder mergeDepartureTime(com.google.type.TimeOfDay value) { * * *
-     * Optional.
-     * The departure time used to calculate traffic impact, represented as
-     * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+     * Optional. The departure time used to calculate traffic impact,
+     * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+     * time zone.
      * Currently traffic model is restricted to hour level resolution.
      * 
* @@ -1825,9 +1797,9 @@ public Builder clearDepartureTime() { * * *
-     * Optional.
-     * The departure time used to calculate traffic impact, represented as
-     * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+     * Optional. The departure time used to calculate traffic impact,
+     * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+     * time zone.
      * Currently traffic model is restricted to hour level resolution.
      * 
* @@ -1840,9 +1812,9 @@ public com.google.type.TimeOfDay.Builder getDepartureTimeBuilder() { * * *
-     * Optional.
-     * The departure time used to calculate traffic impact, represented as
-     * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+     * Optional. The departure time used to calculate traffic impact,
+     * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+     * time zone.
      * Currently traffic model is restricted to hour level resolution.
      * 
* @@ -1862,9 +1834,9 @@ public com.google.type.TimeOfDayOrBuilder getDepartureTimeOrBuilder() { * * *
-     * Optional.
-     * The departure time used to calculate traffic impact, represented as
-     * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+     * Optional. The departure time used to calculate traffic impact,
+     * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+     * time zone.
      * Currently traffic model is restricted to hour level resolution.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CommuteFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CommuteFilterOrBuilder.java index bb7b708b2b3a..09955d6805f3 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CommuteFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CommuteFilterOrBuilder.java @@ -12,8 +12,8 @@ public interface CommuteFilterOrBuilder * * *
-   * Required.
-   * The method of transportation for which to calculate the commute time.
+   * Required. The method of transportation for which to calculate the commute
+   * time.
    * 
* * .google.cloud.talent.v4beta1.CommuteMethod commute_method = 1; @@ -23,8 +23,8 @@ public interface CommuteFilterOrBuilder * * *
-   * Required.
-   * The method of transportation for which to calculate the commute time.
+   * Required. The method of transportation for which to calculate the commute
+   * time.
    * 
* * .google.cloud.talent.v4beta1.CommuteMethod commute_method = 1; @@ -35,9 +35,8 @@ public interface CommuteFilterOrBuilder * * *
-   * Required.
-   * The latitude and longitude of the location from which to calculate the
-   * commute time.
+   * Required. The latitude and longitude of the location from which to
+   * calculate the commute time.
    * 
* * .google.type.LatLng start_coordinates = 2; @@ -47,9 +46,8 @@ public interface CommuteFilterOrBuilder * * *
-   * Required.
-   * The latitude and longitude of the location from which to calculate the
-   * commute time.
+   * Required. The latitude and longitude of the location from which to
+   * calculate the commute time.
    * 
* * .google.type.LatLng start_coordinates = 2; @@ -59,9 +57,8 @@ public interface CommuteFilterOrBuilder * * *
-   * Required.
-   * The latitude and longitude of the location from which to calculate the
-   * commute time.
+   * Required. The latitude and longitude of the location from which to
+   * calculate the commute time.
    * 
* * .google.type.LatLng start_coordinates = 2; @@ -72,9 +69,8 @@ public interface CommuteFilterOrBuilder * * *
-   * Required.
-   * The maximum travel time in seconds. The maximum allowed value is `3600s`
-   * (one hour). Format is `123s`.
+   * Required. The maximum travel time in seconds. The maximum allowed value is
+   * `3600s` (one hour). Format is `123s`.
    * 
* * .google.protobuf.Duration travel_duration = 3; @@ -84,9 +80,8 @@ public interface CommuteFilterOrBuilder * * *
-   * Required.
-   * The maximum travel time in seconds. The maximum allowed value is `3600s`
-   * (one hour). Format is `123s`.
+   * Required. The maximum travel time in seconds. The maximum allowed value is
+   * `3600s` (one hour). Format is `123s`.
    * 
* * .google.protobuf.Duration travel_duration = 3; @@ -96,9 +91,8 @@ public interface CommuteFilterOrBuilder * * *
-   * Required.
-   * The maximum travel time in seconds. The maximum allowed value is `3600s`
-   * (one hour). Format is `123s`.
+   * Required. The maximum travel time in seconds. The maximum allowed value is
+   * `3600s` (one hour). Format is `123s`.
    * 
* * .google.protobuf.Duration travel_duration = 3; @@ -109,12 +103,11 @@ public interface CommuteFilterOrBuilder * * *
-   * Optional.
-   * If `true`, jobs without street level addresses may also be returned.
-   * For city level addresses, the city center is used. For state and coarser
-   * level addresses, text matching is used.
-   * If this field is set to `false` or isn't specified, only jobs that include
-   * street level addresses will be returned by commute search.
+   * Optional. If `true`, jobs without street level addresses may also be
+   * returned. For city level addresses, the city center is used. For state and
+   * coarser level addresses, text matching is used. If this field is set to
+   * `false` or isn't specified, only jobs that include street level addresses
+   * will be returned by commute search.
    * 
* * bool allow_imprecise_addresses = 4; @@ -125,8 +118,8 @@ public interface CommuteFilterOrBuilder * * *
-   * Optional.
-   * Specifies the traffic density to use when calculating commute time.
+   * Optional. Specifies the traffic density to use when calculating commute
+   * time.
    * 
* * .google.cloud.talent.v4beta1.CommuteFilter.RoadTraffic road_traffic = 5; @@ -136,8 +129,8 @@ public interface CommuteFilterOrBuilder * * *
-   * Optional.
-   * Specifies the traffic density to use when calculating commute time.
+   * Optional. Specifies the traffic density to use when calculating commute
+   * time.
    * 
* * .google.cloud.talent.v4beta1.CommuteFilter.RoadTraffic road_traffic = 5; @@ -148,9 +141,9 @@ public interface CommuteFilterOrBuilder * * *
-   * Optional.
-   * The departure time used to calculate traffic impact, represented as
-   * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+   * Optional. The departure time used to calculate traffic impact,
+   * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+   * time zone.
    * Currently traffic model is restricted to hour level resolution.
    * 
* @@ -161,9 +154,9 @@ public interface CommuteFilterOrBuilder * * *
-   * Optional.
-   * The departure time used to calculate traffic impact, represented as
-   * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+   * Optional. The departure time used to calculate traffic impact,
+   * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+   * time zone.
    * Currently traffic model is restricted to hour level resolution.
    * 
* @@ -174,9 +167,9 @@ public interface CommuteFilterOrBuilder * * *
-   * Optional.
-   * The departure time used to calculate traffic impact, represented as
-   * [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone.
+   * Optional. The departure time used to calculate traffic impact,
+   * represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local
+   * time zone.
    * Currently traffic model is restricted to hour level resolution.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Company.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Company.java index 5f1cc525416f..d544a1020a4a 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Company.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Company.java @@ -1036,8 +1036,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-   * Required.
-   * The display name of the company, for example, "Google, LLC".
+   * Required. The display name of the company, for example, "Google, LLC".
    * 
* * string display_name = 2; @@ -1057,8 +1056,7 @@ public java.lang.String getDisplayName() { * * *
-   * Required.
-   * The display name of the company, for example, "Google, LLC".
+   * Required. The display name of the company, for example, "Google, LLC".
    * 
* * string display_name = 2; @@ -1081,8 +1079,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-   * Required.
-   * Client side company identifier, used to uniquely identify the
+   * Required. Client side company identifier, used to uniquely identify the
    * company.
    * The maximum number of allowed characters is 255.
    * 
@@ -1104,8 +1101,7 @@ public java.lang.String getExternalId() { * * *
-   * Required.
-   * Client side company identifier, used to uniquely identify the
+   * Required. Client side company identifier, used to uniquely identify the
    * company.
    * The maximum number of allowed characters is 255.
    * 
@@ -1130,8 +1126,7 @@ public com.google.protobuf.ByteString getExternalIdBytes() { * * *
-   * Optional.
-   * The employer's company size.
+   * Optional. The employer's company size.
    * 
* * .google.cloud.talent.v4beta1.CompanySize size = 4; @@ -1143,8 +1138,7 @@ public int getSizeValue() { * * *
-   * Optional.
-   * The employer's company size.
+   * Optional. The employer's company size.
    * 
* * .google.cloud.talent.v4beta1.CompanySize size = 4; @@ -1162,11 +1156,10 @@ public com.google.cloud.talent.v4beta1.CompanySize getSize() { * * *
-   * Optional.
-   * The street address of the company's main headquarters, which may be
-   * different from the job location. The service attempts
-   * to geolocate the provided address, and populates a more specific
-   * location wherever possible in
+   * Optional. The street address of the company's main headquarters, which may
+   * be different from the job location. The service attempts to geolocate the
+   * provided address, and populates a more specific location wherever possible
+   * in
    * [DerivedInfo.headquarters_location][google.cloud.talent.v4beta1.Company.DerivedInfo.headquarters_location].
    * 
* @@ -1187,11 +1180,10 @@ public java.lang.String getHeadquartersAddress() { * * *
-   * Optional.
-   * The street address of the company's main headquarters, which may be
-   * different from the job location. The service attempts
-   * to geolocate the provided address, and populates a more specific
-   * location wherever possible in
+   * Optional. The street address of the company's main headquarters, which may
+   * be different from the job location. The service attempts to geolocate the
+   * provided address, and populates a more specific location wherever possible
+   * in
    * [DerivedInfo.headquarters_location][google.cloud.talent.v4beta1.Company.DerivedInfo.headquarters_location].
    * 
* @@ -1215,8 +1207,7 @@ public com.google.protobuf.ByteString getHeadquartersAddressBytes() { * * *
-   * Optional.
-   * Set to true if it is the hiring agency that post jobs for other
+   * Optional. Set to true if it is the hiring agency that post jobs for other
    * employers.
    * Defaults to false if not provided.
    * 
@@ -1233,8 +1224,7 @@ public boolean getHiringAgency() { * * *
-   * Optional.
-   * Equal Employment Opportunity legal disclaimer text to be
+   * Optional. Equal Employment Opportunity legal disclaimer text to be
    * associated with all jobs, and typically to be displayed in all
    * roles.
    * The maximum number of allowed characters is 500.
@@ -1257,8 +1247,7 @@ public java.lang.String getEeoText() {
    *
    *
    * 
-   * Optional.
-   * Equal Employment Opportunity legal disclaimer text to be
+   * Optional. Equal Employment Opportunity legal disclaimer text to be
    * associated with all jobs, and typically to be displayed in all
    * roles.
    * The maximum number of allowed characters is 500.
@@ -1284,8 +1273,7 @@ public com.google.protobuf.ByteString getEeoTextBytes() {
    *
    *
    * 
-   * Optional.
-   * The URI representing the company's primary web site or home page,
+   * Optional. The URI representing the company's primary web site or home page,
    * for example, "https://www.google.com".
    * The maximum number of allowed characters is 255.
    * 
@@ -1307,8 +1295,7 @@ public java.lang.String getWebsiteUri() { * * *
-   * Optional.
-   * The URI representing the company's primary web site or home page,
+   * Optional. The URI representing the company's primary web site or home page,
    * for example, "https://www.google.com".
    * The maximum number of allowed characters is 255.
    * 
@@ -1333,9 +1320,8 @@ public com.google.protobuf.ByteString getWebsiteUriBytes() { * * *
-   * Optional.
-   * The URI to employer's career site or careers page on the employer's web
-   * site, for example, "https://careers.google.com".
+   * Optional. The URI to employer's career site or careers page on the
+   * employer's web site, for example, "https://careers.google.com".
    * 
* * string career_site_uri = 9; @@ -1355,9 +1341,8 @@ public java.lang.String getCareerSiteUri() { * * *
-   * Optional.
-   * The URI to employer's career site or careers page on the employer's web
-   * site, for example, "https://careers.google.com".
+   * Optional. The URI to employer's career site or careers page on the
+   * employer's web site, for example, "https://careers.google.com".
    * 
* * string career_site_uri = 9; @@ -1380,8 +1365,7 @@ public com.google.protobuf.ByteString getCareerSiteUriBytes() { * * *
-   * Optional.
-   * A URI that hosts the employer's company logo.
+   * Optional. A URI that hosts the employer's company logo.
    * 
* * string image_uri = 10; @@ -1401,8 +1385,7 @@ public java.lang.String getImageUri() { * * *
-   * Optional.
-   * A URI that hosts the employer's company logo.
+   * Optional. A URI that hosts the employer's company logo.
    * 
* * string image_uri = 10; @@ -1425,8 +1408,7 @@ public com.google.protobuf.ByteString getImageUriBytes() { * * *
-   * Optional.
-   * A list of keys of filterable
+   * Optional. A list of keys of filterable
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
    * whose corresponding `string_values` are used in keyword searches. Jobs with
    * `string_values` under these specified field keys are returned if any
@@ -1444,8 +1426,7 @@ public com.google.protobuf.ProtocolStringList getKeywordSearchableJobCustomAttri
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable
+   * Optional. A list of keys of filterable
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
    * whose corresponding `string_values` are used in keyword searches. Jobs with
    * `string_values` under these specified field keys are returned if any
@@ -1463,8 +1444,7 @@ public int getKeywordSearchableJobCustomAttributesCount() {
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable
+   * Optional. A list of keys of filterable
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
    * whose corresponding `string_values` are used in keyword searches. Jobs with
    * `string_values` under these specified field keys are returned if any
@@ -1482,8 +1462,7 @@ public java.lang.String getKeywordSearchableJobCustomAttributes(int index) {
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable
+   * Optional. A list of keys of filterable
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
    * whose corresponding `string_values` are used in keyword searches. Jobs with
    * `string_values` under these specified field keys are returned if any
@@ -2233,8 +2212,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * The display name of the company, for example, "Google, LLC".
+     * Required. The display name of the company, for example, "Google, LLC".
      * 
* * string display_name = 2; @@ -2254,8 +2232,7 @@ public java.lang.String getDisplayName() { * * *
-     * Required.
-     * The display name of the company, for example, "Google, LLC".
+     * Required. The display name of the company, for example, "Google, LLC".
      * 
* * string display_name = 2; @@ -2275,8 +2252,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-     * Required.
-     * The display name of the company, for example, "Google, LLC".
+     * Required. The display name of the company, for example, "Google, LLC".
      * 
* * string display_name = 2; @@ -2294,8 +2270,7 @@ public Builder setDisplayName(java.lang.String value) { * * *
-     * Required.
-     * The display name of the company, for example, "Google, LLC".
+     * Required. The display name of the company, for example, "Google, LLC".
      * 
* * string display_name = 2; @@ -2310,8 +2285,7 @@ public Builder clearDisplayName() { * * *
-     * Required.
-     * The display name of the company, for example, "Google, LLC".
+     * Required. The display name of the company, for example, "Google, LLC".
      * 
* * string display_name = 2; @@ -2332,8 +2306,7 @@ public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Required.
-     * Client side company identifier, used to uniquely identify the
+     * Required. Client side company identifier, used to uniquely identify the
      * company.
      * The maximum number of allowed characters is 255.
      * 
@@ -2355,8 +2328,7 @@ public java.lang.String getExternalId() { * * *
-     * Required.
-     * Client side company identifier, used to uniquely identify the
+     * Required. Client side company identifier, used to uniquely identify the
      * company.
      * The maximum number of allowed characters is 255.
      * 
@@ -2378,8 +2350,7 @@ public com.google.protobuf.ByteString getExternalIdBytes() { * * *
-     * Required.
-     * Client side company identifier, used to uniquely identify the
+     * Required. Client side company identifier, used to uniquely identify the
      * company.
      * The maximum number of allowed characters is 255.
      * 
@@ -2399,8 +2370,7 @@ public Builder setExternalId(java.lang.String value) { * * *
-     * Required.
-     * Client side company identifier, used to uniquely identify the
+     * Required. Client side company identifier, used to uniquely identify the
      * company.
      * The maximum number of allowed characters is 255.
      * 
@@ -2417,8 +2387,7 @@ public Builder clearExternalId() { * * *
-     * Required.
-     * Client side company identifier, used to uniquely identify the
+     * Required. Client side company identifier, used to uniquely identify the
      * company.
      * The maximum number of allowed characters is 255.
      * 
@@ -2441,8 +2410,7 @@ public Builder setExternalIdBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The employer's company size.
+     * Optional. The employer's company size.
      * 
* * .google.cloud.talent.v4beta1.CompanySize size = 4; @@ -2454,8 +2422,7 @@ public int getSizeValue() { * * *
-     * Optional.
-     * The employer's company size.
+     * Optional. The employer's company size.
      * 
* * .google.cloud.talent.v4beta1.CompanySize size = 4; @@ -2469,8 +2436,7 @@ public Builder setSizeValue(int value) { * * *
-     * Optional.
-     * The employer's company size.
+     * Optional. The employer's company size.
      * 
* * .google.cloud.talent.v4beta1.CompanySize size = 4; @@ -2485,8 +2451,7 @@ public com.google.cloud.talent.v4beta1.CompanySize getSize() { * * *
-     * Optional.
-     * The employer's company size.
+     * Optional. The employer's company size.
      * 
* * .google.cloud.talent.v4beta1.CompanySize size = 4; @@ -2504,8 +2469,7 @@ public Builder setSize(com.google.cloud.talent.v4beta1.CompanySize value) { * * *
-     * Optional.
-     * The employer's company size.
+     * Optional. The employer's company size.
      * 
* * .google.cloud.talent.v4beta1.CompanySize size = 4; @@ -2522,11 +2486,10 @@ public Builder clearSize() { * * *
-     * Optional.
-     * The street address of the company's main headquarters, which may be
-     * different from the job location. The service attempts
-     * to geolocate the provided address, and populates a more specific
-     * location wherever possible in
+     * Optional. The street address of the company's main headquarters, which may
+     * be different from the job location. The service attempts to geolocate the
+     * provided address, and populates a more specific location wherever possible
+     * in
      * [DerivedInfo.headquarters_location][google.cloud.talent.v4beta1.Company.DerivedInfo.headquarters_location].
      * 
* @@ -2547,11 +2510,10 @@ public java.lang.String getHeadquartersAddress() { * * *
-     * Optional.
-     * The street address of the company's main headquarters, which may be
-     * different from the job location. The service attempts
-     * to geolocate the provided address, and populates a more specific
-     * location wherever possible in
+     * Optional. The street address of the company's main headquarters, which may
+     * be different from the job location. The service attempts to geolocate the
+     * provided address, and populates a more specific location wherever possible
+     * in
      * [DerivedInfo.headquarters_location][google.cloud.talent.v4beta1.Company.DerivedInfo.headquarters_location].
      * 
* @@ -2572,11 +2534,10 @@ public com.google.protobuf.ByteString getHeadquartersAddressBytes() { * * *
-     * Optional.
-     * The street address of the company's main headquarters, which may be
-     * different from the job location. The service attempts
-     * to geolocate the provided address, and populates a more specific
-     * location wherever possible in
+     * Optional. The street address of the company's main headquarters, which may
+     * be different from the job location. The service attempts to geolocate the
+     * provided address, and populates a more specific location wherever possible
+     * in
      * [DerivedInfo.headquarters_location][google.cloud.talent.v4beta1.Company.DerivedInfo.headquarters_location].
      * 
* @@ -2595,11 +2556,10 @@ public Builder setHeadquartersAddress(java.lang.String value) { * * *
-     * Optional.
-     * The street address of the company's main headquarters, which may be
-     * different from the job location. The service attempts
-     * to geolocate the provided address, and populates a more specific
-     * location wherever possible in
+     * Optional. The street address of the company's main headquarters, which may
+     * be different from the job location. The service attempts to geolocate the
+     * provided address, and populates a more specific location wherever possible
+     * in
      * [DerivedInfo.headquarters_location][google.cloud.talent.v4beta1.Company.DerivedInfo.headquarters_location].
      * 
* @@ -2615,11 +2575,10 @@ public Builder clearHeadquartersAddress() { * * *
-     * Optional.
-     * The street address of the company's main headquarters, which may be
-     * different from the job location. The service attempts
-     * to geolocate the provided address, and populates a more specific
-     * location wherever possible in
+     * Optional. The street address of the company's main headquarters, which may
+     * be different from the job location. The service attempts to geolocate the
+     * provided address, and populates a more specific location wherever possible
+     * in
      * [DerivedInfo.headquarters_location][google.cloud.talent.v4beta1.Company.DerivedInfo.headquarters_location].
      * 
* @@ -2641,8 +2600,7 @@ public Builder setHeadquartersAddressBytes(com.google.protobuf.ByteString value) * * *
-     * Optional.
-     * Set to true if it is the hiring agency that post jobs for other
+     * Optional. Set to true if it is the hiring agency that post jobs for other
      * employers.
      * Defaults to false if not provided.
      * 
@@ -2656,8 +2614,7 @@ public boolean getHiringAgency() { * * *
-     * Optional.
-     * Set to true if it is the hiring agency that post jobs for other
+     * Optional. Set to true if it is the hiring agency that post jobs for other
      * employers.
      * Defaults to false if not provided.
      * 
@@ -2674,8 +2631,7 @@ public Builder setHiringAgency(boolean value) { * * *
-     * Optional.
-     * Set to true if it is the hiring agency that post jobs for other
+     * Optional. Set to true if it is the hiring agency that post jobs for other
      * employers.
      * Defaults to false if not provided.
      * 
@@ -2694,8 +2650,7 @@ public Builder clearHiringAgency() { * * *
-     * Optional.
-     * Equal Employment Opportunity legal disclaimer text to be
+     * Optional. Equal Employment Opportunity legal disclaimer text to be
      * associated with all jobs, and typically to be displayed in all
      * roles.
      * The maximum number of allowed characters is 500.
@@ -2718,8 +2673,7 @@ public java.lang.String getEeoText() {
      *
      *
      * 
-     * Optional.
-     * Equal Employment Opportunity legal disclaimer text to be
+     * Optional. Equal Employment Opportunity legal disclaimer text to be
      * associated with all jobs, and typically to be displayed in all
      * roles.
      * The maximum number of allowed characters is 500.
@@ -2742,8 +2696,7 @@ public com.google.protobuf.ByteString getEeoTextBytes() {
      *
      *
      * 
-     * Optional.
-     * Equal Employment Opportunity legal disclaimer text to be
+     * Optional. Equal Employment Opportunity legal disclaimer text to be
      * associated with all jobs, and typically to be displayed in all
      * roles.
      * The maximum number of allowed characters is 500.
@@ -2764,8 +2717,7 @@ public Builder setEeoText(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * Equal Employment Opportunity legal disclaimer text to be
+     * Optional. Equal Employment Opportunity legal disclaimer text to be
      * associated with all jobs, and typically to be displayed in all
      * roles.
      * The maximum number of allowed characters is 500.
@@ -2783,8 +2735,7 @@ public Builder clearEeoText() {
      *
      *
      * 
-     * Optional.
-     * Equal Employment Opportunity legal disclaimer text to be
+     * Optional. Equal Employment Opportunity legal disclaimer text to be
      * associated with all jobs, and typically to be displayed in all
      * roles.
      * The maximum number of allowed characters is 500.
@@ -2808,8 +2759,7 @@ public Builder setEeoTextBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * The URI representing the company's primary web site or home page,
+     * Optional. The URI representing the company's primary web site or home page,
      * for example, "https://www.google.com".
      * The maximum number of allowed characters is 255.
      * 
@@ -2831,8 +2781,7 @@ public java.lang.String getWebsiteUri() { * * *
-     * Optional.
-     * The URI representing the company's primary web site or home page,
+     * Optional. The URI representing the company's primary web site or home page,
      * for example, "https://www.google.com".
      * The maximum number of allowed characters is 255.
      * 
@@ -2854,8 +2803,7 @@ public com.google.protobuf.ByteString getWebsiteUriBytes() { * * *
-     * Optional.
-     * The URI representing the company's primary web site or home page,
+     * Optional. The URI representing the company's primary web site or home page,
      * for example, "https://www.google.com".
      * The maximum number of allowed characters is 255.
      * 
@@ -2875,8 +2823,7 @@ public Builder setWebsiteUri(java.lang.String value) { * * *
-     * Optional.
-     * The URI representing the company's primary web site or home page,
+     * Optional. The URI representing the company's primary web site or home page,
      * for example, "https://www.google.com".
      * The maximum number of allowed characters is 255.
      * 
@@ -2893,8 +2840,7 @@ public Builder clearWebsiteUri() { * * *
-     * Optional.
-     * The URI representing the company's primary web site or home page,
+     * Optional. The URI representing the company's primary web site or home page,
      * for example, "https://www.google.com".
      * The maximum number of allowed characters is 255.
      * 
@@ -2917,9 +2863,8 @@ public Builder setWebsiteUriBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The URI to employer's career site or careers page on the employer's web
-     * site, for example, "https://careers.google.com".
+     * Optional. The URI to employer's career site or careers page on the
+     * employer's web site, for example, "https://careers.google.com".
      * 
* * string career_site_uri = 9; @@ -2939,9 +2884,8 @@ public java.lang.String getCareerSiteUri() { * * *
-     * Optional.
-     * The URI to employer's career site or careers page on the employer's web
-     * site, for example, "https://careers.google.com".
+     * Optional. The URI to employer's career site or careers page on the
+     * employer's web site, for example, "https://careers.google.com".
      * 
* * string career_site_uri = 9; @@ -2961,9 +2905,8 @@ public com.google.protobuf.ByteString getCareerSiteUriBytes() { * * *
-     * Optional.
-     * The URI to employer's career site or careers page on the employer's web
-     * site, for example, "https://careers.google.com".
+     * Optional. The URI to employer's career site or careers page on the
+     * employer's web site, for example, "https://careers.google.com".
      * 
* * string career_site_uri = 9; @@ -2981,9 +2924,8 @@ public Builder setCareerSiteUri(java.lang.String value) { * * *
-     * Optional.
-     * The URI to employer's career site or careers page on the employer's web
-     * site, for example, "https://careers.google.com".
+     * Optional. The URI to employer's career site or careers page on the
+     * employer's web site, for example, "https://careers.google.com".
      * 
* * string career_site_uri = 9; @@ -2998,9 +2940,8 @@ public Builder clearCareerSiteUri() { * * *
-     * Optional.
-     * The URI to employer's career site or careers page on the employer's web
-     * site, for example, "https://careers.google.com".
+     * Optional. The URI to employer's career site or careers page on the
+     * employer's web site, for example, "https://careers.google.com".
      * 
* * string career_site_uri = 9; @@ -3021,8 +2962,7 @@ public Builder setCareerSiteUriBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * A URI that hosts the employer's company logo.
+     * Optional. A URI that hosts the employer's company logo.
      * 
* * string image_uri = 10; @@ -3042,8 +2982,7 @@ public java.lang.String getImageUri() { * * *
-     * Optional.
-     * A URI that hosts the employer's company logo.
+     * Optional. A URI that hosts the employer's company logo.
      * 
* * string image_uri = 10; @@ -3063,8 +3002,7 @@ public com.google.protobuf.ByteString getImageUriBytes() { * * *
-     * Optional.
-     * A URI that hosts the employer's company logo.
+     * Optional. A URI that hosts the employer's company logo.
      * 
* * string image_uri = 10; @@ -3082,8 +3020,7 @@ public Builder setImageUri(java.lang.String value) { * * *
-     * Optional.
-     * A URI that hosts the employer's company logo.
+     * Optional. A URI that hosts the employer's company logo.
      * 
* * string image_uri = 10; @@ -3098,8 +3035,7 @@ public Builder clearImageUri() { * * *
-     * Optional.
-     * A URI that hosts the employer's company logo.
+     * Optional. A URI that hosts the employer's company logo.
      * 
* * string image_uri = 10; @@ -3129,8 +3065,7 @@ private void ensureKeywordSearchableJobCustomAttributesIsMutable() { * * *
-     * Optional.
-     * A list of keys of filterable
+     * Optional. A list of keys of filterable
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
      * whose corresponding `string_values` are used in keyword searches. Jobs with
      * `string_values` under these specified field keys are returned if any
@@ -3148,8 +3083,7 @@ public com.google.protobuf.ProtocolStringList getKeywordSearchableJobCustomAttri
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable
+     * Optional. A list of keys of filterable
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
      * whose corresponding `string_values` are used in keyword searches. Jobs with
      * `string_values` under these specified field keys are returned if any
@@ -3167,8 +3101,7 @@ public int getKeywordSearchableJobCustomAttributesCount() {
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable
+     * Optional. A list of keys of filterable
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
      * whose corresponding `string_values` are used in keyword searches. Jobs with
      * `string_values` under these specified field keys are returned if any
@@ -3186,8 +3119,7 @@ public java.lang.String getKeywordSearchableJobCustomAttributes(int index) {
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable
+     * Optional. A list of keys of filterable
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
      * whose corresponding `string_values` are used in keyword searches. Jobs with
      * `string_values` under these specified field keys are returned if any
@@ -3205,8 +3137,7 @@ public com.google.protobuf.ByteString getKeywordSearchableJobCustomAttributesByt
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable
+     * Optional. A list of keys of filterable
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
      * whose corresponding `string_values` are used in keyword searches. Jobs with
      * `string_values` under these specified field keys are returned if any
@@ -3230,8 +3161,7 @@ public Builder setKeywordSearchableJobCustomAttributes(int index, java.lang.Stri
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable
+     * Optional. A list of keys of filterable
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
      * whose corresponding `string_values` are used in keyword searches. Jobs with
      * `string_values` under these specified field keys are returned if any
@@ -3255,8 +3185,7 @@ public Builder addKeywordSearchableJobCustomAttributes(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable
+     * Optional. A list of keys of filterable
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
      * whose corresponding `string_values` are used in keyword searches. Jobs with
      * `string_values` under these specified field keys are returned if any
@@ -3279,8 +3208,7 @@ public Builder addAllKeywordSearchableJobCustomAttributes(
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable
+     * Optional. A list of keys of filterable
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
      * whose corresponding `string_values` are used in keyword searches. Jobs with
      * `string_values` under these specified field keys are returned if any
@@ -3301,8 +3229,7 @@ public Builder clearKeywordSearchableJobCustomAttributes() {
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable
+     * Optional. A list of keys of filterable
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
      * whose corresponding `string_values` are used in keyword searches. Jobs with
      * `string_values` under these specified field keys are returned if any
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompanyOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompanyOrBuilder.java
index 81a6af749a31..1359c8cdd891 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompanyOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompanyOrBuilder.java
@@ -47,8 +47,7 @@ public interface CompanyOrBuilder
    *
    *
    * 
-   * Required.
-   * The display name of the company, for example, "Google, LLC".
+   * Required. The display name of the company, for example, "Google, LLC".
    * 
* * string display_name = 2; @@ -58,8 +57,7 @@ public interface CompanyOrBuilder * * *
-   * Required.
-   * The display name of the company, for example, "Google, LLC".
+   * Required. The display name of the company, for example, "Google, LLC".
    * 
* * string display_name = 2; @@ -70,8 +68,7 @@ public interface CompanyOrBuilder * * *
-   * Required.
-   * Client side company identifier, used to uniquely identify the
+   * Required. Client side company identifier, used to uniquely identify the
    * company.
    * The maximum number of allowed characters is 255.
    * 
@@ -83,8 +80,7 @@ public interface CompanyOrBuilder * * *
-   * Required.
-   * Client side company identifier, used to uniquely identify the
+   * Required. Client side company identifier, used to uniquely identify the
    * company.
    * The maximum number of allowed characters is 255.
    * 
@@ -97,8 +93,7 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * The employer's company size.
+   * Optional. The employer's company size.
    * 
* * .google.cloud.talent.v4beta1.CompanySize size = 4; @@ -108,8 +103,7 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * The employer's company size.
+   * Optional. The employer's company size.
    * 
* * .google.cloud.talent.v4beta1.CompanySize size = 4; @@ -120,11 +114,10 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * The street address of the company's main headquarters, which may be
-   * different from the job location. The service attempts
-   * to geolocate the provided address, and populates a more specific
-   * location wherever possible in
+   * Optional. The street address of the company's main headquarters, which may
+   * be different from the job location. The service attempts to geolocate the
+   * provided address, and populates a more specific location wherever possible
+   * in
    * [DerivedInfo.headquarters_location][google.cloud.talent.v4beta1.Company.DerivedInfo.headquarters_location].
    * 
* @@ -135,11 +128,10 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * The street address of the company's main headquarters, which may be
-   * different from the job location. The service attempts
-   * to geolocate the provided address, and populates a more specific
-   * location wherever possible in
+   * Optional. The street address of the company's main headquarters, which may
+   * be different from the job location. The service attempts to geolocate the
+   * provided address, and populates a more specific location wherever possible
+   * in
    * [DerivedInfo.headquarters_location][google.cloud.talent.v4beta1.Company.DerivedInfo.headquarters_location].
    * 
* @@ -151,8 +143,7 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * Set to true if it is the hiring agency that post jobs for other
+   * Optional. Set to true if it is the hiring agency that post jobs for other
    * employers.
    * Defaults to false if not provided.
    * 
@@ -165,8 +156,7 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * Equal Employment Opportunity legal disclaimer text to be
+   * Optional. Equal Employment Opportunity legal disclaimer text to be
    * associated with all jobs, and typically to be displayed in all
    * roles.
    * The maximum number of allowed characters is 500.
@@ -179,8 +169,7 @@ public interface CompanyOrBuilder
    *
    *
    * 
-   * Optional.
-   * Equal Employment Opportunity legal disclaimer text to be
+   * Optional. Equal Employment Opportunity legal disclaimer text to be
    * associated with all jobs, and typically to be displayed in all
    * roles.
    * The maximum number of allowed characters is 500.
@@ -194,8 +183,7 @@ public interface CompanyOrBuilder
    *
    *
    * 
-   * Optional.
-   * The URI representing the company's primary web site or home page,
+   * Optional. The URI representing the company's primary web site or home page,
    * for example, "https://www.google.com".
    * The maximum number of allowed characters is 255.
    * 
@@ -207,8 +195,7 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * The URI representing the company's primary web site or home page,
+   * Optional. The URI representing the company's primary web site or home page,
    * for example, "https://www.google.com".
    * The maximum number of allowed characters is 255.
    * 
@@ -221,9 +208,8 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * The URI to employer's career site or careers page on the employer's web
-   * site, for example, "https://careers.google.com".
+   * Optional. The URI to employer's career site or careers page on the
+   * employer's web site, for example, "https://careers.google.com".
    * 
* * string career_site_uri = 9; @@ -233,9 +219,8 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * The URI to employer's career site or careers page on the employer's web
-   * site, for example, "https://careers.google.com".
+   * Optional. The URI to employer's career site or careers page on the
+   * employer's web site, for example, "https://careers.google.com".
    * 
* * string career_site_uri = 9; @@ -246,8 +231,7 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * A URI that hosts the employer's company logo.
+   * Optional. A URI that hosts the employer's company logo.
    * 
* * string image_uri = 10; @@ -257,8 +241,7 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * A URI that hosts the employer's company logo.
+   * Optional. A URI that hosts the employer's company logo.
    * 
* * string image_uri = 10; @@ -269,8 +252,7 @@ public interface CompanyOrBuilder * * *
-   * Optional.
-   * A list of keys of filterable
+   * Optional. A list of keys of filterable
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
    * whose corresponding `string_values` are used in keyword searches. Jobs with
    * `string_values` under these specified field keys are returned if any
@@ -286,8 +268,7 @@ public interface CompanyOrBuilder
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable
+   * Optional. A list of keys of filterable
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
    * whose corresponding `string_values` are used in keyword searches. Jobs with
    * `string_values` under these specified field keys are returned if any
@@ -303,8 +284,7 @@ public interface CompanyOrBuilder
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable
+   * Optional. A list of keys of filterable
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
    * whose corresponding `string_values` are used in keyword searches. Jobs with
    * `string_values` under these specified field keys are returned if any
@@ -320,8 +300,7 @@ public interface CompanyOrBuilder
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable
+   * Optional. A list of keys of filterable
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes],
    * whose corresponding `string_values` are used in keyword searches. Jobs with
    * `string_values` under these specified field keys are returned if any
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompanyServiceProto.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompanyServiceProto.java
index 6ff174bf7509..1d5e077d7623 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompanyServiceProto.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompanyServiceProto.java
@@ -47,56 +47,59 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
     java.lang.String[] descriptorData = {
       "\n1google/cloud/talent/v4beta1/company_se"
           + "rvice.proto\022\033google.cloud.talent.v4beta1"
-          + "\032\034google/api/annotations.proto\032(google/c"
-          + "loud/talent/v4beta1/common.proto\032)google"
-          + "/cloud/talent/v4beta1/company.proto\032\033goo"
-          + "gle/protobuf/empty.proto\032 google/protobu"
-          + "f/field_mask.proto\"]\n\024CreateCompanyReque"
-          + "st\022\016\n\006parent\030\001 \001(\t\0225\n\007company\030\002 \001(\0132$.go"
-          + "ogle.cloud.talent.v4beta1.Company\"!\n\021Get"
-          + "CompanyRequest\022\014\n\004name\030\001 \001(\t\"~\n\024UpdateCo"
-          + "mpanyRequest\0225\n\007company\030\001 \001(\0132$.google.c"
-          + "loud.talent.v4beta1.Company\022/\n\013update_ma"
-          + "sk\030\002 \001(\0132\032.google.protobuf.FieldMask\"$\n\024"
-          + "DeleteCompanyRequest\022\014\n\004name\030\001 \001(\t\"h\n\024Li"
-          + "stCompaniesRequest\022\016\n\006parent\030\001 \001(\t\022\022\n\npa"
-          + "ge_token\030\002 \001(\t\022\021\n\tpage_size\030\003 \001(\005\022\031\n\021req"
-          + "uire_open_jobs\030\004 \001(\010\"\252\001\n\025ListCompaniesRe"
-          + "sponse\0227\n\tcompanies\030\001 \003(\0132$.google.cloud"
-          + ".talent.v4beta1.Company\022\027\n\017next_page_tok"
-          + "en\030\002 \001(\t\022?\n\010metadata\030\003 \001(\0132-.google.clou"
-          + "d.talent.v4beta1.ResponseMetadata2\261\010\n\016Co"
-          + "mpanyService\022\322\001\n\rCreateCompany\0221.google."
-          + "cloud.talent.v4beta1.CreateCompanyReques"
-          + "t\032$.google.cloud.talent.v4beta1.Company\""
-          + "h\202\323\344\223\002b\"0/v4beta1/{parent=projects/*/ten"
-          + "ants/*}/companies:\001*Z+\"&/v4beta1/{parent"
-          + "=projects/*}/companies:\001*\022\306\001\n\nGetCompany"
-          + "\022..google.cloud.talent.v4beta1.GetCompan"
-          + "yRequest\032$.google.cloud.talent.v4beta1.C"
-          + "ompany\"b\202\323\344\223\002\\\0220/v4beta1/{name=projects/"
-          + "*/tenants/*/companies/*}Z(\022&/v4beta1/{na"
-          + "me=projects/*/companies/*}\022\342\001\n\rUpdateCom"
-          + "pany\0221.google.cloud.talent.v4beta1.Updat"
-          + "eCompanyRequest\032$.google.cloud.talent.v4"
-          + "beta1.Company\"x\202\323\344\223\002r28/v4beta1/{company"
-          + ".name=projects/*/tenants/*/companies/*}:"
-          + "\001*Z32./v4beta1/{company.name=projects/*/"
-          + "companies/*}:\001*\022\276\001\n\rDeleteCompany\0221.goog"
-          + "le.cloud.talent.v4beta1.DeleteCompanyReq"
-          + "uest\032\026.google.protobuf.Empty\"b\202\323\344\223\002\\*0/v"
-          + "4beta1/{name=projects/*/tenants/*/compan"
-          + "ies/*}Z(*&/v4beta1/{name=projects/*/comp"
-          + "anies/*}\022\332\001\n\rListCompanies\0221.google.clou"
-          + "d.talent.v4beta1.ListCompaniesRequest\0322."
-          + "google.cloud.talent.v4beta1.ListCompanie"
-          + "sResponse\"b\202\323\344\223\002\\\0220/v4beta1/{parent=proj"
-          + "ects/*/tenants/*}/companiesZ(\022&/v4beta1/"
-          + "{parent=projects/*}/companiesB\201\001\n\037com.go"
-          + "ogle.cloud.talent.v4beta1B\023CompanyServic"
-          + "eProtoP\001ZAgoogle.golang.org/genproto/goo"
-          + "gleapis/cloud/talent/v4beta1;talent\242\002\003CT"
-          + "Sb\006proto3"
+          + "\032\034google/api/annotations.proto\032\027google/a"
+          + "pi/client.proto\032(google/cloud/talent/v4b"
+          + "eta1/common.proto\032)google/cloud/talent/v"
+          + "4beta1/company.proto\032\033google/protobuf/em"
+          + "pty.proto\032 google/protobuf/field_mask.pr"
+          + "oto\"]\n\024CreateCompanyRequest\022\016\n\006parent\030\001 "
+          + "\001(\t\0225\n\007company\030\002 \001(\0132$.google.cloud.tale"
+          + "nt.v4beta1.Company\"!\n\021GetCompanyRequest\022"
+          + "\014\n\004name\030\001 \001(\t\"~\n\024UpdateCompanyRequest\0225\n"
+          + "\007company\030\001 \001(\0132$.google.cloud.talent.v4b"
+          + "eta1.Company\022/\n\013update_mask\030\002 \001(\0132\032.goog"
+          + "le.protobuf.FieldMask\"$\n\024DeleteCompanyRe"
+          + "quest\022\014\n\004name\030\001 \001(\t\"h\n\024ListCompaniesRequ"
+          + "est\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_token\030\002 \001(\t\022"
+          + "\021\n\tpage_size\030\003 \001(\005\022\031\n\021require_open_jobs\030"
+          + "\004 \001(\010\"\252\001\n\025ListCompaniesResponse\0227\n\tcompa"
+          + "nies\030\001 \003(\0132$.google.cloud.talent.v4beta1"
+          + ".Company\022\027\n\017next_page_token\030\002 \001(\t\022?\n\010met"
+          + "adata\030\003 \001(\0132-.google.cloud.talent.v4beta"
+          + "1.ResponseMetadata2\237\t\n\016CompanyService\022\322\001"
+          + "\n\rCreateCompany\0221.google.cloud.talent.v4"
+          + "beta1.CreateCompanyRequest\032$.google.clou"
+          + "d.talent.v4beta1.Company\"h\202\323\344\223\002b\"0/v4bet"
+          + "a1/{parent=projects/*/tenants/*}/compani"
+          + "es:\001*Z+\"&/v4beta1/{parent=projects/*}/co"
+          + "mpanies:\001*\022\306\001\n\nGetCompany\022..google.cloud"
+          + ".talent.v4beta1.GetCompanyRequest\032$.goog"
+          + "le.cloud.talent.v4beta1.Company\"b\202\323\344\223\002\\\022"
+          + "0/v4beta1/{name=projects/*/tenants/*/com"
+          + "panies/*}Z(\022&/v4beta1/{name=projects/*/c"
+          + "ompanies/*}\022\342\001\n\rUpdateCompany\0221.google.c"
+          + "loud.talent.v4beta1.UpdateCompanyRequest"
+          + "\032$.google.cloud.talent.v4beta1.Company\"x"
+          + "\202\323\344\223\002r28/v4beta1/{company.name=projects/"
+          + "*/tenants/*/companies/*}:\001*Z32./v4beta1/"
+          + "{company.name=projects/*/companies/*}:\001*"
+          + "\022\276\001\n\rDeleteCompany\0221.google.cloud.talent"
+          + ".v4beta1.DeleteCompanyRequest\032\026.google.p"
+          + "rotobuf.Empty\"b\202\323\344\223\002\\*0/v4beta1/{name=pr"
+          + "ojects/*/tenants/*/companies/*}Z(*&/v4be"
+          + "ta1/{name=projects/*/companies/*}\022\332\001\n\rLi"
+          + "stCompanies\0221.google.cloud.talent.v4beta"
+          + "1.ListCompaniesRequest\0322.google.cloud.ta"
+          + "lent.v4beta1.ListCompaniesResponse\"b\202\323\344\223"
+          + "\002\\\0220/v4beta1/{parent=projects/*/tenants/"
+          + "*}/companiesZ(\022&/v4beta1/{parent=project"
+          + "s/*}/companies\032l\312A\023jobs.googleapis.com\322A"
+          + "Shttps://www.googleapis.com/auth/cloud-p"
+          + "latform,https://www.googleapis.com/auth/"
+          + "jobsB\201\001\n\037com.google.cloud.talent.v4beta1"
+          + "B\023CompanyServiceProtoP\001ZAgoogle.golang.o"
+          + "rg/genproto/googleapis/cloud/talent/v4be"
+          + "ta1;talent\242\002\003CTSb\006proto3"
     };
     com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
         new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
@@ -110,6 +113,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors(
         descriptorData,
         new com.google.protobuf.Descriptors.FileDescriptor[] {
           com.google.api.AnnotationsProto.getDescriptor(),
+          com.google.api.ClientProto.getDescriptor(),
           com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(),
           com.google.cloud.talent.v4beta1.CompanyResourceProto.getDescriptor(),
           com.google.protobuf.EmptyProto.getDescriptor(),
@@ -166,10 +170,13 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors(
             });
     com.google.protobuf.ExtensionRegistry registry =
         com.google.protobuf.ExtensionRegistry.newInstance();
+    registry.add(com.google.api.ClientProto.defaultHost);
     registry.add(com.google.api.AnnotationsProto.http);
+    registry.add(com.google.api.ClientProto.oauthScopes);
     com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor(
         descriptor, registry);
     com.google.api.AnnotationsProto.getDescriptor();
+    com.google.api.ClientProto.getDescriptor();
     com.google.cloud.talent.v4beta1.CommonProto.getDescriptor();
     com.google.cloud.talent.v4beta1.CompanyResourceProto.getDescriptor();
     com.google.protobuf.EmptyProto.getDescriptor();
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationFilter.java
index 943df03aa5bc..149d68690ff8 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationFilter.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationFilter.java
@@ -392,8 +392,7 @@ private FilterType(int value) {
    *
    *
    * 
-   * Required.
-   * Type of filter.
+   * Required. Type of filter.
    * 
* * .google.cloud.talent.v4beta1.CompensationFilter.FilterType type = 1; @@ -405,8 +404,7 @@ public int getTypeValue() { * * *
-   * Required.
-   * Type of filter.
+   * Required. Type of filter.
    * 
* * .google.cloud.talent.v4beta1.CompensationFilter.FilterType type = 1; @@ -442,8 +440,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit convert * * *
-   * Required.
-   * Specify desired `base compensation entry's`
+   * Required. Specify desired `base compensation entry's`
    * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
    * 
* @@ -459,8 +456,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit convert * * *
-   * Required.
-   * Specify desired `base compensation entry's`
+   * Required. Specify desired `base compensation entry's`
    * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
    * 
* @@ -473,8 +469,7 @@ public int getUnitsCount() { * * *
-   * Required.
-   * Specify desired `base compensation entry's`
+   * Required. Specify desired `base compensation entry's`
    * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
    * 
* @@ -487,8 +482,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit getUnit * * *
-   * Required.
-   * Specify desired `base compensation entry's`
+   * Required. Specify desired `base compensation entry's`
    * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
    * 
* @@ -501,8 +495,7 @@ public java.util.List getUnitsValueList() { * * *
-   * Required.
-   * Specify desired `base compensation entry's`
+   * Required. Specify desired `base compensation entry's`
    * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
    * 
* @@ -520,8 +513,7 @@ public int getUnitsValue(int index) { * * *
-   * Optional.
-   * Compensation range.
+   * Optional. Compensation range.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -533,8 +525,7 @@ public boolean hasRange() { * * *
-   * Optional.
-   * Compensation range.
+   * Optional. Compensation range.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -548,8 +539,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationRange getRan * * *
-   * Optional.
-   * Compensation range.
+   * Optional. Compensation range.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -565,9 +555,8 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationRange getRan * * *
-   * Optional.
-   * If set to true, jobs with unspecified compensation range fields are
-   * included.
+   * Optional. If set to true, jobs with unspecified compensation range fields
+   * are included.
    * 
* * bool include_jobs_with_unspecified_compensation_range = 4; @@ -1001,8 +990,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * Type of filter.
+     * Required. Type of filter.
      * 
* * .google.cloud.talent.v4beta1.CompensationFilter.FilterType type = 1; @@ -1014,8 +1002,7 @@ public int getTypeValue() { * * *
-     * Required.
-     * Type of filter.
+     * Required. Type of filter.
      * 
* * .google.cloud.talent.v4beta1.CompensationFilter.FilterType type = 1; @@ -1029,8 +1016,7 @@ public Builder setTypeValue(int value) { * * *
-     * Required.
-     * Type of filter.
+     * Required. Type of filter.
      * 
* * .google.cloud.talent.v4beta1.CompensationFilter.FilterType type = 1; @@ -1047,8 +1033,7 @@ public com.google.cloud.talent.v4beta1.CompensationFilter.FilterType getType() { * * *
-     * Required.
-     * Type of filter.
+     * Required. Type of filter.
      * 
* * .google.cloud.talent.v4beta1.CompensationFilter.FilterType type = 1; @@ -1066,8 +1051,7 @@ public Builder setType(com.google.cloud.talent.v4beta1.CompensationFilter.Filter * * *
-     * Required.
-     * Type of filter.
+     * Required. Type of filter.
      * 
* * .google.cloud.talent.v4beta1.CompensationFilter.FilterType type = 1; @@ -1091,8 +1075,7 @@ private void ensureUnitsIsMutable() { * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1109,8 +1092,7 @@ private void ensureUnitsIsMutable() { * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1124,8 +1106,7 @@ public int getUnitsCount() { * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1139,8 +1120,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit getUnit * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1161,8 +1141,7 @@ public Builder setUnits( * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1183,8 +1162,7 @@ public Builder addUnits( * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1206,8 +1184,7 @@ public Builder addAllUnits( * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1224,8 +1201,7 @@ public Builder clearUnits() { * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1239,8 +1215,7 @@ public java.util.List getUnitsValueList() { * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1254,8 +1229,7 @@ public int getUnitsValue(int index) { * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1272,8 +1246,7 @@ public Builder setUnitsValue(int index, int value) { * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1290,8 +1263,7 @@ public Builder addUnitsValue(int value) { * * *
-     * Required.
-     * Specify desired `base compensation entry's`
+     * Required. Specify desired `base compensation entry's`
      * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
      * 
* @@ -1317,8 +1289,7 @@ public Builder addAllUnitsValue(java.lang.Iterable values) { * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -1330,8 +1301,7 @@ public boolean hasRange() { * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -1350,8 +1320,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationRange getRan * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -1374,8 +1343,7 @@ public Builder setRange( * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -1396,8 +1364,7 @@ public Builder setRange( * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -1424,8 +1391,7 @@ public Builder mergeRange( * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -1445,8 +1411,7 @@ public Builder clearRange() { * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -1461,8 +1426,7 @@ public Builder clearRange() { * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -1482,8 +1446,7 @@ public Builder clearRange() { * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -1510,9 +1473,8 @@ public Builder clearRange() { * * *
-     * Optional.
-     * If set to true, jobs with unspecified compensation range fields are
-     * included.
+     * Optional. If set to true, jobs with unspecified compensation range fields
+     * are included.
      * 
* * bool include_jobs_with_unspecified_compensation_range = 4; @@ -1524,9 +1486,8 @@ public boolean getIncludeJobsWithUnspecifiedCompensationRange() { * * *
-     * Optional.
-     * If set to true, jobs with unspecified compensation range fields are
-     * included.
+     * Optional. If set to true, jobs with unspecified compensation range fields
+     * are included.
      * 
* * bool include_jobs_with_unspecified_compensation_range = 4; @@ -1541,9 +1502,8 @@ public Builder setIncludeJobsWithUnspecifiedCompensationRange(boolean value) { * * *
-     * Optional.
-     * If set to true, jobs with unspecified compensation range fields are
-     * included.
+     * Optional. If set to true, jobs with unspecified compensation range fields
+     * are included.
      * 
* * bool include_jobs_with_unspecified_compensation_range = 4; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationFilterOrBuilder.java index 8b4bd419365d..0cf6bfe97bf2 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationFilterOrBuilder.java @@ -12,8 +12,7 @@ public interface CompensationFilterOrBuilder * * *
-   * Required.
-   * Type of filter.
+   * Required. Type of filter.
    * 
* * .google.cloud.talent.v4beta1.CompensationFilter.FilterType type = 1; @@ -23,8 +22,7 @@ public interface CompensationFilterOrBuilder * * *
-   * Required.
-   * Type of filter.
+   * Required. Type of filter.
    * 
* * .google.cloud.talent.v4beta1.CompensationFilter.FilterType type = 1; @@ -35,8 +33,7 @@ public interface CompensationFilterOrBuilder * * *
-   * Required.
-   * Specify desired `base compensation entry's`
+   * Required. Specify desired `base compensation entry's`
    * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
    * 
* @@ -47,8 +44,7 @@ public interface CompensationFilterOrBuilder * * *
-   * Required.
-   * Specify desired `base compensation entry's`
+   * Required. Specify desired `base compensation entry's`
    * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
    * 
* @@ -59,8 +55,7 @@ public interface CompensationFilterOrBuilder * * *
-   * Required.
-   * Specify desired `base compensation entry's`
+   * Required. Specify desired `base compensation entry's`
    * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
    * 
* @@ -71,8 +66,7 @@ public interface CompensationFilterOrBuilder * * *
-   * Required.
-   * Specify desired `base compensation entry's`
+   * Required. Specify desired `base compensation entry's`
    * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
    * 
* @@ -83,8 +77,7 @@ public interface CompensationFilterOrBuilder * * *
-   * Required.
-   * Specify desired `base compensation entry's`
+   * Required. Specify desired `base compensation entry's`
    * [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit].
    * 
* @@ -96,8 +89,7 @@ public interface CompensationFilterOrBuilder * * *
-   * Optional.
-   * Compensation range.
+   * Optional. Compensation range.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -107,8 +99,7 @@ public interface CompensationFilterOrBuilder * * *
-   * Optional.
-   * Compensation range.
+   * Optional. Compensation range.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -118,8 +109,7 @@ public interface CompensationFilterOrBuilder * * *
-   * Optional.
-   * Compensation range.
+   * Optional. Compensation range.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 3; @@ -130,9 +120,8 @@ public interface CompensationFilterOrBuilder * * *
-   * Optional.
-   * If set to true, jobs with unspecified compensation range fields are
-   * included.
+   * Optional. If set to true, jobs with unspecified compensation range fields
+   * are included.
    * 
* * bool include_jobs_with_unspecified_compensation_range = 4; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationInfo.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationInfo.java index 248e7adb8d2c..31d5b2cba592 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationInfo.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationInfo.java @@ -711,8 +711,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Compensation type.
+     * Optional. Compensation type.
      * Default is
      * [CompensationType.COMPENSATION_TYPE_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.COMPENSATION_TYPE_UNSPECIFIED].
      * 
@@ -724,8 +723,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Compensation type.
+     * Optional. Compensation type.
      * Default is
      * [CompensationType.COMPENSATION_TYPE_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.COMPENSATION_TYPE_UNSPECIFIED].
      * 
@@ -738,8 +736,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Frequency of the specified amount.
+     * Optional. Frequency of the specified amount.
      * Default is
      * [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED].
      * 
@@ -751,8 +748,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Frequency of the specified amount.
+     * Optional. Frequency of the specified amount.
      * Default is
      * [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED].
      * 
@@ -765,8 +761,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Compensation amount.
+     * Optional. Compensation amount.
      * 
* * .google.type.Money amount = 3; @@ -776,8 +771,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Compensation amount.
+     * Optional. Compensation amount.
      * 
* * .google.type.Money amount = 3; @@ -787,8 +781,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Compensation amount.
+     * Optional. Compensation amount.
      * 
* * .google.type.Money amount = 3; @@ -799,8 +792,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -810,8 +802,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -821,8 +812,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -833,8 +823,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Compensation description.  For example, could
+     * Optional. Compensation description.  For example, could
      * indicate equity terms or provide additional context to an estimated
      * bonus.
      * 
@@ -846,8 +835,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Compensation description.  For example, could
+     * Optional. Compensation description.  For example, could
      * indicate equity terms or provide additional context to an estimated
      * bonus.
      * 
@@ -860,8 +848,7 @@ public interface CompensationEntryOrBuilder * * *
-     * Optional.
-     * Expected number of units paid each year. If not specified, when
+     * Optional. Expected number of units paid each year. If not specified, when
      * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
      * is FULLTIME, a default value is inferred based on
      * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -880,8 +867,7 @@ public interface CompensationEntryOrBuilder
      *
      *
      * 
-     * Optional.
-     * Expected number of units paid each year. If not specified, when
+     * Optional. Expected number of units paid each year. If not specified, when
      * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
      * is FULLTIME, a default value is inferred based on
      * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -900,8 +886,7 @@ public interface CompensationEntryOrBuilder
      *
      *
      * 
-     * Optional.
-     * Expected number of units paid each year. If not specified, when
+     * Optional. Expected number of units paid each year. If not specified, when
      * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
      * is FULLTIME, a default value is inferred based on
      * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -1137,8 +1122,7 @@ public CompensationAmountCase getCompensationAmountCase() {
      *
      *
      * 
-     * Optional.
-     * Compensation type.
+     * Optional. Compensation type.
      * Default is
      * [CompensationType.COMPENSATION_TYPE_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.COMPENSATION_TYPE_UNSPECIFIED].
      * 
@@ -1152,8 +1136,7 @@ public int getTypeValue() { * * *
-     * Optional.
-     * Compensation type.
+     * Optional. Compensation type.
      * Default is
      * [CompensationType.COMPENSATION_TYPE_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.COMPENSATION_TYPE_UNSPECIFIED].
      * 
@@ -1175,8 +1158,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationType getType * * *
-     * Optional.
-     * Frequency of the specified amount.
+     * Optional. Frequency of the specified amount.
      * Default is
      * [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED].
      * 
@@ -1190,8 +1172,7 @@ public int getUnitValue() { * * *
-     * Optional.
-     * Frequency of the specified amount.
+     * Optional. Frequency of the specified amount.
      * Default is
      * [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED].
      * 
@@ -1212,8 +1193,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit getUnit * * *
-     * Optional.
-     * Compensation amount.
+     * Optional. Compensation amount.
      * 
* * .google.type.Money amount = 3; @@ -1225,8 +1205,7 @@ public boolean hasAmount() { * * *
-     * Optional.
-     * Compensation amount.
+     * Optional. Compensation amount.
      * 
* * .google.type.Money amount = 3; @@ -1241,8 +1220,7 @@ public com.google.type.Money getAmount() { * * *
-     * Optional.
-     * Compensation amount.
+     * Optional. Compensation amount.
      * 
* * .google.type.Money amount = 3; @@ -1259,8 +1237,7 @@ public com.google.type.MoneyOrBuilder getAmountOrBuilder() { * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -1272,8 +1249,7 @@ public boolean hasRange() { * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -1290,8 +1266,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationRange getRan * * *
-     * Optional.
-     * Compensation range.
+     * Optional. Compensation range.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -1312,8 +1287,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationRange getRan * * *
-     * Optional.
-     * Compensation description.  For example, could
+     * Optional. Compensation description.  For example, could
      * indicate equity terms or provide additional context to an estimated
      * bonus.
      * 
@@ -1335,8 +1309,7 @@ public java.lang.String getDescription() { * * *
-     * Optional.
-     * Compensation description.  For example, could
+     * Optional. Compensation description.  For example, could
      * indicate equity terms or provide additional context to an estimated
      * bonus.
      * 
@@ -1361,8 +1334,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-     * Optional.
-     * Expected number of units paid each year. If not specified, when
+     * Optional. Expected number of units paid each year. If not specified, when
      * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
      * is FULLTIME, a default value is inferred based on
      * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -1383,8 +1355,7 @@ public boolean hasExpectedUnitsPerYear() {
      *
      *
      * 
-     * Optional.
-     * Expected number of units paid each year. If not specified, when
+     * Optional. Expected number of units paid each year. If not specified, when
      * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
      * is FULLTIME, a default value is inferred based on
      * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -1407,8 +1378,7 @@ public com.google.protobuf.DoubleValue getExpectedUnitsPerYear() {
      *
      *
      * 
-     * Optional.
-     * Expected number of units paid each year. If not specified, when
+     * Optional. Expected number of units paid each year. If not specified, when
      * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
      * is FULLTIME, a default value is inferred based on
      * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -1938,8 +1908,7 @@ public Builder clearCompensationAmount() {
        *
        *
        * 
-       * Optional.
-       * Compensation type.
+       * Optional. Compensation type.
        * Default is
        * [CompensationType.COMPENSATION_TYPE_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.COMPENSATION_TYPE_UNSPECIFIED].
        * 
@@ -1953,8 +1922,7 @@ public int getTypeValue() { * * *
-       * Optional.
-       * Compensation type.
+       * Optional. Compensation type.
        * Default is
        * [CompensationType.COMPENSATION_TYPE_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.COMPENSATION_TYPE_UNSPECIFIED].
        * 
@@ -1970,8 +1938,7 @@ public Builder setTypeValue(int value) { * * *
-       * Optional.
-       * Compensation type.
+       * Optional. Compensation type.
        * Default is
        * [CompensationType.COMPENSATION_TYPE_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.COMPENSATION_TYPE_UNSPECIFIED].
        * 
@@ -1990,8 +1957,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationType getType * * *
-       * Optional.
-       * Compensation type.
+       * Optional. Compensation type.
        * Default is
        * [CompensationType.COMPENSATION_TYPE_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.COMPENSATION_TYPE_UNSPECIFIED].
        * 
@@ -2012,8 +1978,7 @@ public Builder setType( * * *
-       * Optional.
-       * Compensation type.
+       * Optional. Compensation type.
        * Default is
        * [CompensationType.COMPENSATION_TYPE_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.COMPENSATION_TYPE_UNSPECIFIED].
        * 
@@ -2032,8 +1997,7 @@ public Builder clearType() { * * *
-       * Optional.
-       * Frequency of the specified amount.
+       * Optional. Frequency of the specified amount.
        * Default is
        * [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED].
        * 
@@ -2047,8 +2011,7 @@ public int getUnitValue() { * * *
-       * Optional.
-       * Frequency of the specified amount.
+       * Optional. Frequency of the specified amount.
        * Default is
        * [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED].
        * 
@@ -2064,8 +2027,7 @@ public Builder setUnitValue(int value) { * * *
-       * Optional.
-       * Frequency of the specified amount.
+       * Optional. Frequency of the specified amount.
        * Default is
        * [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED].
        * 
@@ -2084,8 +2046,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit getUnit * * *
-       * Optional.
-       * Frequency of the specified amount.
+       * Optional. Frequency of the specified amount.
        * Default is
        * [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED].
        * 
@@ -2106,8 +2067,7 @@ public Builder setUnit( * * *
-       * Optional.
-       * Frequency of the specified amount.
+       * Optional. Frequency of the specified amount.
        * Default is
        * [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED].
        * 
@@ -2128,8 +2088,7 @@ public Builder clearUnit() { * * *
-       * Optional.
-       * Compensation amount.
+       * Optional. Compensation amount.
        * 
* * .google.type.Money amount = 3; @@ -2141,8 +2100,7 @@ public boolean hasAmount() { * * *
-       * Optional.
-       * Compensation amount.
+       * Optional. Compensation amount.
        * 
* * .google.type.Money amount = 3; @@ -2164,8 +2122,7 @@ public com.google.type.Money getAmount() { * * *
-       * Optional.
-       * Compensation amount.
+       * Optional. Compensation amount.
        * 
* * .google.type.Money amount = 3; @@ -2187,8 +2144,7 @@ public Builder setAmount(com.google.type.Money value) { * * *
-       * Optional.
-       * Compensation amount.
+       * Optional. Compensation amount.
        * 
* * .google.type.Money amount = 3; @@ -2207,8 +2163,7 @@ public Builder setAmount(com.google.type.Money.Builder builderForValue) { * * *
-       * Optional.
-       * Compensation amount.
+       * Optional. Compensation amount.
        * 
* * .google.type.Money amount = 3; @@ -2238,8 +2193,7 @@ public Builder mergeAmount(com.google.type.Money value) { * * *
-       * Optional.
-       * Compensation amount.
+       * Optional. Compensation amount.
        * 
* * .google.type.Money amount = 3; @@ -2264,8 +2218,7 @@ public Builder clearAmount() { * * *
-       * Optional.
-       * Compensation amount.
+       * Optional. Compensation amount.
        * 
* * .google.type.Money amount = 3; @@ -2277,8 +2230,7 @@ public com.google.type.Money.Builder getAmountBuilder() { * * *
-       * Optional.
-       * Compensation amount.
+       * Optional. Compensation amount.
        * 
* * .google.type.Money amount = 3; @@ -2297,8 +2249,7 @@ public com.google.type.MoneyOrBuilder getAmountOrBuilder() { * * *
-       * Optional.
-       * Compensation amount.
+       * Optional. Compensation amount.
        * 
* * .google.type.Money amount = 3; @@ -2333,8 +2284,7 @@ public com.google.type.MoneyOrBuilder getAmountOrBuilder() { * * *
-       * Optional.
-       * Compensation range.
+       * Optional. Compensation range.
        * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -2346,8 +2296,7 @@ public boolean hasRange() { * * *
-       * Optional.
-       * Compensation range.
+       * Optional. Compensation range.
        * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -2372,8 +2321,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationRange getRan * * *
-       * Optional.
-       * Compensation range.
+       * Optional. Compensation range.
        * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -2396,8 +2344,7 @@ public Builder setRange( * * *
-       * Optional.
-       * Compensation range.
+       * Optional. Compensation range.
        * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -2418,8 +2365,7 @@ public Builder setRange( * * *
-       * Optional.
-       * Compensation range.
+       * Optional. Compensation range.
        * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -2454,8 +2400,7 @@ public Builder mergeRange( * * *
-       * Optional.
-       * Compensation range.
+       * Optional. Compensation range.
        * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -2480,8 +2425,7 @@ public Builder clearRange() { * * *
-       * Optional.
-       * Compensation range.
+       * Optional. Compensation range.
        * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -2494,8 +2438,7 @@ public Builder clearRange() { * * *
-       * Optional.
-       * Compensation range.
+       * Optional. Compensation range.
        * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -2517,8 +2460,7 @@ public Builder clearRange() { * * *
-       * Optional.
-       * Compensation range.
+       * Optional. Compensation range.
        * 
* * .google.cloud.talent.v4beta1.CompensationInfo.CompensationRange range = 4; @@ -2556,8 +2498,7 @@ public Builder clearRange() { * * *
-       * Optional.
-       * Compensation description.  For example, could
+       * Optional. Compensation description.  For example, could
        * indicate equity terms or provide additional context to an estimated
        * bonus.
        * 
@@ -2579,8 +2520,7 @@ public java.lang.String getDescription() { * * *
-       * Optional.
-       * Compensation description.  For example, could
+       * Optional. Compensation description.  For example, could
        * indicate equity terms or provide additional context to an estimated
        * bonus.
        * 
@@ -2602,8 +2542,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-       * Optional.
-       * Compensation description.  For example, could
+       * Optional. Compensation description.  For example, could
        * indicate equity terms or provide additional context to an estimated
        * bonus.
        * 
@@ -2623,8 +2562,7 @@ public Builder setDescription(java.lang.String value) { * * *
-       * Optional.
-       * Compensation description.  For example, could
+       * Optional. Compensation description.  For example, could
        * indicate equity terms or provide additional context to an estimated
        * bonus.
        * 
@@ -2641,8 +2579,7 @@ public Builder clearDescription() { * * *
-       * Optional.
-       * Compensation description.  For example, could
+       * Optional. Compensation description.  For example, could
        * indicate equity terms or provide additional context to an estimated
        * bonus.
        * 
@@ -2670,8 +2607,7 @@ public Builder setDescriptionBytes(com.google.protobuf.ByteString value) { * * *
-       * Optional.
-       * Expected number of units paid each year. If not specified, when
+       * Optional. Expected number of units paid each year. If not specified, when
        * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
        * is FULLTIME, a default value is inferred based on
        * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -2692,8 +2628,7 @@ public boolean hasExpectedUnitsPerYear() {
        *
        *
        * 
-       * Optional.
-       * Expected number of units paid each year. If not specified, when
+       * Optional. Expected number of units paid each year. If not specified, when
        * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
        * is FULLTIME, a default value is inferred based on
        * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -2720,8 +2655,7 @@ public com.google.protobuf.DoubleValue getExpectedUnitsPerYear() {
        *
        *
        * 
-       * Optional.
-       * Expected number of units paid each year. If not specified, when
+       * Optional. Expected number of units paid each year. If not specified, when
        * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
        * is FULLTIME, a default value is inferred based on
        * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -2752,8 +2686,7 @@ public Builder setExpectedUnitsPerYear(com.google.protobuf.DoubleValue value) {
        *
        *
        * 
-       * Optional.
-       * Expected number of units paid each year. If not specified, when
+       * Optional. Expected number of units paid each year. If not specified, when
        * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
        * is FULLTIME, a default value is inferred based on
        * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -2782,8 +2715,7 @@ public Builder setExpectedUnitsPerYear(
        *
        *
        * 
-       * Optional.
-       * Expected number of units paid each year. If not specified, when
+       * Optional. Expected number of units paid each year. If not specified, when
        * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
        * is FULLTIME, a default value is inferred based on
        * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -2818,8 +2750,7 @@ public Builder mergeExpectedUnitsPerYear(com.google.protobuf.DoubleValue value)
        *
        *
        * 
-       * Optional.
-       * Expected number of units paid each year. If not specified, when
+       * Optional. Expected number of units paid each year. If not specified, when
        * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
        * is FULLTIME, a default value is inferred based on
        * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -2848,8 +2779,7 @@ public Builder clearExpectedUnitsPerYear() {
        *
        *
        * 
-       * Optional.
-       * Expected number of units paid each year. If not specified, when
+       * Optional. Expected number of units paid each year. If not specified, when
        * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
        * is FULLTIME, a default value is inferred based on
        * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -2872,8 +2802,7 @@ public com.google.protobuf.DoubleValue.Builder getExpectedUnitsPerYearBuilder()
        *
        *
        * 
-       * Optional.
-       * Expected number of units paid each year. If not specified, when
+       * Optional. Expected number of units paid each year. If not specified, when
        * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
        * is FULLTIME, a default value is inferred based on
        * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -2900,8 +2829,7 @@ public com.google.protobuf.DoubleValueOrBuilder getExpectedUnitsPerYearOrBuilder
        *
        *
        * 
-       * Optional.
-       * Expected number of units paid each year. If not specified, when
+       * Optional. Expected number of units paid each year. If not specified, when
        * [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types]
        * is FULLTIME, a default value is inferred based on
        * [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit].
@@ -2996,11 +2924,9 @@ public interface CompensationRangeOrBuilder
      *
      *
      * 
-     * Optional.
-     * The maximum amount of compensation. If left empty, the value is set
-     * to a maximal compensation value and the currency code is set to
-     * match the [currency code][google.type.Money.currency_code] of
-     * min_compensation.
+     * Optional. The maximum amount of compensation. If left empty, the value is
+     * set to a maximal compensation value and the currency code is set to match
+     * the [currency code][google.type.Money.currency_code] of min_compensation.
      * 
* * .google.type.Money max_compensation = 2; @@ -3010,11 +2936,9 @@ public interface CompensationRangeOrBuilder * * *
-     * Optional.
-     * The maximum amount of compensation. If left empty, the value is set
-     * to a maximal compensation value and the currency code is set to
-     * match the [currency code][google.type.Money.currency_code] of
-     * min_compensation.
+     * Optional. The maximum amount of compensation. If left empty, the value is
+     * set to a maximal compensation value and the currency code is set to match
+     * the [currency code][google.type.Money.currency_code] of min_compensation.
      * 
* * .google.type.Money max_compensation = 2; @@ -3024,11 +2948,9 @@ public interface CompensationRangeOrBuilder * * *
-     * Optional.
-     * The maximum amount of compensation. If left empty, the value is set
-     * to a maximal compensation value and the currency code is set to
-     * match the [currency code][google.type.Money.currency_code] of
-     * min_compensation.
+     * Optional. The maximum amount of compensation. If left empty, the value is
+     * set to a maximal compensation value and the currency code is set to match
+     * the [currency code][google.type.Money.currency_code] of min_compensation.
      * 
* * .google.type.Money max_compensation = 2; @@ -3039,10 +2961,9 @@ public interface CompensationRangeOrBuilder * * *
-     * Optional.
-     * The minimum amount of compensation. If left empty, the value is set
-     * to zero and the currency code is set to match the
-     * [currency code][google.type.Money.currency_code] of max_compensation.
+     * Optional. The minimum amount of compensation. If left empty, the value is
+     * set to zero and the currency code is set to match the [currency
+     * code][google.type.Money.currency_code] of max_compensation.
      * 
* * .google.type.Money min_compensation = 1; @@ -3052,10 +2973,9 @@ public interface CompensationRangeOrBuilder * * *
-     * Optional.
-     * The minimum amount of compensation. If left empty, the value is set
-     * to zero and the currency code is set to match the
-     * [currency code][google.type.Money.currency_code] of max_compensation.
+     * Optional. The minimum amount of compensation. If left empty, the value is
+     * set to zero and the currency code is set to match the [currency
+     * code][google.type.Money.currency_code] of max_compensation.
      * 
* * .google.type.Money min_compensation = 1; @@ -3065,10 +2985,9 @@ public interface CompensationRangeOrBuilder * * *
-     * Optional.
-     * The minimum amount of compensation. If left empty, the value is set
-     * to zero and the currency code is set to match the
-     * [currency code][google.type.Money.currency_code] of max_compensation.
+     * Optional. The minimum amount of compensation. If left empty, the value is
+     * set to zero and the currency code is set to match the [currency
+     * code][google.type.Money.currency_code] of max_compensation.
      * 
* * .google.type.Money min_compensation = 1; @@ -3190,11 +3109,9 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-     * Optional.
-     * The maximum amount of compensation. If left empty, the value is set
-     * to a maximal compensation value and the currency code is set to
-     * match the [currency code][google.type.Money.currency_code] of
-     * min_compensation.
+     * Optional. The maximum amount of compensation. If left empty, the value is
+     * set to a maximal compensation value and the currency code is set to match
+     * the [currency code][google.type.Money.currency_code] of min_compensation.
      * 
* * .google.type.Money max_compensation = 2; @@ -3206,11 +3123,9 @@ public boolean hasMaxCompensation() { * * *
-     * Optional.
-     * The maximum amount of compensation. If left empty, the value is set
-     * to a maximal compensation value and the currency code is set to
-     * match the [currency code][google.type.Money.currency_code] of
-     * min_compensation.
+     * Optional. The maximum amount of compensation. If left empty, the value is
+     * set to a maximal compensation value and the currency code is set to match
+     * the [currency code][google.type.Money.currency_code] of min_compensation.
      * 
* * .google.type.Money max_compensation = 2; @@ -3224,11 +3139,9 @@ public com.google.type.Money getMaxCompensation() { * * *
-     * Optional.
-     * The maximum amount of compensation. If left empty, the value is set
-     * to a maximal compensation value and the currency code is set to
-     * match the [currency code][google.type.Money.currency_code] of
-     * min_compensation.
+     * Optional. The maximum amount of compensation. If left empty, the value is
+     * set to a maximal compensation value and the currency code is set to match
+     * the [currency code][google.type.Money.currency_code] of min_compensation.
      * 
* * .google.type.Money max_compensation = 2; @@ -3243,10 +3156,9 @@ public com.google.type.MoneyOrBuilder getMaxCompensationOrBuilder() { * * *
-     * Optional.
-     * The minimum amount of compensation. If left empty, the value is set
-     * to zero and the currency code is set to match the
-     * [currency code][google.type.Money.currency_code] of max_compensation.
+     * Optional. The minimum amount of compensation. If left empty, the value is
+     * set to zero and the currency code is set to match the [currency
+     * code][google.type.Money.currency_code] of max_compensation.
      * 
* * .google.type.Money min_compensation = 1; @@ -3258,10 +3170,9 @@ public boolean hasMinCompensation() { * * *
-     * Optional.
-     * The minimum amount of compensation. If left empty, the value is set
-     * to zero and the currency code is set to match the
-     * [currency code][google.type.Money.currency_code] of max_compensation.
+     * Optional. The minimum amount of compensation. If left empty, the value is
+     * set to zero and the currency code is set to match the [currency
+     * code][google.type.Money.currency_code] of max_compensation.
      * 
* * .google.type.Money min_compensation = 1; @@ -3275,10 +3186,9 @@ public com.google.type.Money getMinCompensation() { * * *
-     * Optional.
-     * The minimum amount of compensation. If left empty, the value is set
-     * to zero and the currency code is set to match the
-     * [currency code][google.type.Money.currency_code] of max_compensation.
+     * Optional. The minimum amount of compensation. If left empty, the value is
+     * set to zero and the currency code is set to match the [currency
+     * code][google.type.Money.currency_code] of max_compensation.
      * 
* * .google.type.Money min_compensation = 1; @@ -3666,11 +3576,9 @@ public Builder mergeFrom( * * *
-       * Optional.
-       * The maximum amount of compensation. If left empty, the value is set
-       * to a maximal compensation value and the currency code is set to
-       * match the [currency code][google.type.Money.currency_code] of
-       * min_compensation.
+       * Optional. The maximum amount of compensation. If left empty, the value is
+       * set to a maximal compensation value and the currency code is set to match
+       * the [currency code][google.type.Money.currency_code] of min_compensation.
        * 
* * .google.type.Money max_compensation = 2; @@ -3682,11 +3590,9 @@ public boolean hasMaxCompensation() { * * *
-       * Optional.
-       * The maximum amount of compensation. If left empty, the value is set
-       * to a maximal compensation value and the currency code is set to
-       * match the [currency code][google.type.Money.currency_code] of
-       * min_compensation.
+       * Optional. The maximum amount of compensation. If left empty, the value is
+       * set to a maximal compensation value and the currency code is set to match
+       * the [currency code][google.type.Money.currency_code] of min_compensation.
        * 
* * .google.type.Money max_compensation = 2; @@ -3704,11 +3610,9 @@ public com.google.type.Money getMaxCompensation() { * * *
-       * Optional.
-       * The maximum amount of compensation. If left empty, the value is set
-       * to a maximal compensation value and the currency code is set to
-       * match the [currency code][google.type.Money.currency_code] of
-       * min_compensation.
+       * Optional. The maximum amount of compensation. If left empty, the value is
+       * set to a maximal compensation value and the currency code is set to match
+       * the [currency code][google.type.Money.currency_code] of min_compensation.
        * 
* * .google.type.Money max_compensation = 2; @@ -3730,11 +3634,9 @@ public Builder setMaxCompensation(com.google.type.Money value) { * * *
-       * Optional.
-       * The maximum amount of compensation. If left empty, the value is set
-       * to a maximal compensation value and the currency code is set to
-       * match the [currency code][google.type.Money.currency_code] of
-       * min_compensation.
+       * Optional. The maximum amount of compensation. If left empty, the value is
+       * set to a maximal compensation value and the currency code is set to match
+       * the [currency code][google.type.Money.currency_code] of min_compensation.
        * 
* * .google.type.Money max_compensation = 2; @@ -3753,11 +3655,9 @@ public Builder setMaxCompensation(com.google.type.Money.Builder builderForValue) * * *
-       * Optional.
-       * The maximum amount of compensation. If left empty, the value is set
-       * to a maximal compensation value and the currency code is set to
-       * match the [currency code][google.type.Money.currency_code] of
-       * min_compensation.
+       * Optional. The maximum amount of compensation. If left empty, the value is
+       * set to a maximal compensation value and the currency code is set to match
+       * the [currency code][google.type.Money.currency_code] of min_compensation.
        * 
* * .google.type.Money max_compensation = 2; @@ -3781,11 +3681,9 @@ public Builder mergeMaxCompensation(com.google.type.Money value) { * * *
-       * Optional.
-       * The maximum amount of compensation. If left empty, the value is set
-       * to a maximal compensation value and the currency code is set to
-       * match the [currency code][google.type.Money.currency_code] of
-       * min_compensation.
+       * Optional. The maximum amount of compensation. If left empty, the value is
+       * set to a maximal compensation value and the currency code is set to match
+       * the [currency code][google.type.Money.currency_code] of min_compensation.
        * 
* * .google.type.Money max_compensation = 2; @@ -3805,11 +3703,9 @@ public Builder clearMaxCompensation() { * * *
-       * Optional.
-       * The maximum amount of compensation. If left empty, the value is set
-       * to a maximal compensation value and the currency code is set to
-       * match the [currency code][google.type.Money.currency_code] of
-       * min_compensation.
+       * Optional. The maximum amount of compensation. If left empty, the value is
+       * set to a maximal compensation value and the currency code is set to match
+       * the [currency code][google.type.Money.currency_code] of min_compensation.
        * 
* * .google.type.Money max_compensation = 2; @@ -3823,11 +3719,9 @@ public com.google.type.Money.Builder getMaxCompensationBuilder() { * * *
-       * Optional.
-       * The maximum amount of compensation. If left empty, the value is set
-       * to a maximal compensation value and the currency code is set to
-       * match the [currency code][google.type.Money.currency_code] of
-       * min_compensation.
+       * Optional. The maximum amount of compensation. If left empty, the value is
+       * set to a maximal compensation value and the currency code is set to match
+       * the [currency code][google.type.Money.currency_code] of min_compensation.
        * 
* * .google.type.Money max_compensation = 2; @@ -3845,11 +3739,9 @@ public com.google.type.MoneyOrBuilder getMaxCompensationOrBuilder() { * * *
-       * Optional.
-       * The maximum amount of compensation. If left empty, the value is set
-       * to a maximal compensation value and the currency code is set to
-       * match the [currency code][google.type.Money.currency_code] of
-       * min_compensation.
+       * Optional. The maximum amount of compensation. If left empty, the value is
+       * set to a maximal compensation value and the currency code is set to match
+       * the [currency code][google.type.Money.currency_code] of min_compensation.
        * 
* * .google.type.Money max_compensation = 2; @@ -3877,10 +3769,9 @@ public com.google.type.MoneyOrBuilder getMaxCompensationOrBuilder() { * * *
-       * Optional.
-       * The minimum amount of compensation. If left empty, the value is set
-       * to zero and the currency code is set to match the
-       * [currency code][google.type.Money.currency_code] of max_compensation.
+       * Optional. The minimum amount of compensation. If left empty, the value is
+       * set to zero and the currency code is set to match the [currency
+       * code][google.type.Money.currency_code] of max_compensation.
        * 
* * .google.type.Money min_compensation = 1; @@ -3892,10 +3783,9 @@ public boolean hasMinCompensation() { * * *
-       * Optional.
-       * The minimum amount of compensation. If left empty, the value is set
-       * to zero and the currency code is set to match the
-       * [currency code][google.type.Money.currency_code] of max_compensation.
+       * Optional. The minimum amount of compensation. If left empty, the value is
+       * set to zero and the currency code is set to match the [currency
+       * code][google.type.Money.currency_code] of max_compensation.
        * 
* * .google.type.Money min_compensation = 1; @@ -3913,10 +3803,9 @@ public com.google.type.Money getMinCompensation() { * * *
-       * Optional.
-       * The minimum amount of compensation. If left empty, the value is set
-       * to zero and the currency code is set to match the
-       * [currency code][google.type.Money.currency_code] of max_compensation.
+       * Optional. The minimum amount of compensation. If left empty, the value is
+       * set to zero and the currency code is set to match the [currency
+       * code][google.type.Money.currency_code] of max_compensation.
        * 
* * .google.type.Money min_compensation = 1; @@ -3938,10 +3827,9 @@ public Builder setMinCompensation(com.google.type.Money value) { * * *
-       * Optional.
-       * The minimum amount of compensation. If left empty, the value is set
-       * to zero and the currency code is set to match the
-       * [currency code][google.type.Money.currency_code] of max_compensation.
+       * Optional. The minimum amount of compensation. If left empty, the value is
+       * set to zero and the currency code is set to match the [currency
+       * code][google.type.Money.currency_code] of max_compensation.
        * 
* * .google.type.Money min_compensation = 1; @@ -3960,10 +3848,9 @@ public Builder setMinCompensation(com.google.type.Money.Builder builderForValue) * * *
-       * Optional.
-       * The minimum amount of compensation. If left empty, the value is set
-       * to zero and the currency code is set to match the
-       * [currency code][google.type.Money.currency_code] of max_compensation.
+       * Optional. The minimum amount of compensation. If left empty, the value is
+       * set to zero and the currency code is set to match the [currency
+       * code][google.type.Money.currency_code] of max_compensation.
        * 
* * .google.type.Money min_compensation = 1; @@ -3987,10 +3874,9 @@ public Builder mergeMinCompensation(com.google.type.Money value) { * * *
-       * Optional.
-       * The minimum amount of compensation. If left empty, the value is set
-       * to zero and the currency code is set to match the
-       * [currency code][google.type.Money.currency_code] of max_compensation.
+       * Optional. The minimum amount of compensation. If left empty, the value is
+       * set to zero and the currency code is set to match the [currency
+       * code][google.type.Money.currency_code] of max_compensation.
        * 
* * .google.type.Money min_compensation = 1; @@ -4010,10 +3896,9 @@ public Builder clearMinCompensation() { * * *
-       * Optional.
-       * The minimum amount of compensation. If left empty, the value is set
-       * to zero and the currency code is set to match the
-       * [currency code][google.type.Money.currency_code] of max_compensation.
+       * Optional. The minimum amount of compensation. If left empty, the value is
+       * set to zero and the currency code is set to match the [currency
+       * code][google.type.Money.currency_code] of max_compensation.
        * 
* * .google.type.Money min_compensation = 1; @@ -4027,10 +3912,9 @@ public com.google.type.Money.Builder getMinCompensationBuilder() { * * *
-       * Optional.
-       * The minimum amount of compensation. If left empty, the value is set
-       * to zero and the currency code is set to match the
-       * [currency code][google.type.Money.currency_code] of max_compensation.
+       * Optional. The minimum amount of compensation. If left empty, the value is
+       * set to zero and the currency code is set to match the [currency
+       * code][google.type.Money.currency_code] of max_compensation.
        * 
* * .google.type.Money min_compensation = 1; @@ -4048,10 +3932,9 @@ public com.google.type.MoneyOrBuilder getMinCompensationOrBuilder() { * * *
-       * Optional.
-       * The minimum amount of compensation. If left empty, the value is set
-       * to zero and the currency code is set to match the
-       * [currency code][google.type.Money.currency_code] of max_compensation.
+       * Optional. The minimum amount of compensation. If left empty, the value is
+       * set to zero and the currency code is set to match the [currency
+       * code][google.type.Money.currency_code] of max_compensation.
        * 
* * .google.type.Money min_compensation = 1; @@ -4134,8 +4017,7 @@ public com.google.protobuf.Parser getParserForType() { * * *
-   * Optional.
-   * Job compensation information.
+   * Optional. Job compensation information.
    * At most one entry can be of type
    * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
    * which is referred as **base compensation entry** for the job.
@@ -4152,8 +4034,7 @@ public com.google.protobuf.Parser getParserForType() {
    *
    *
    * 
-   * Optional.
-   * Job compensation information.
+   * Optional. Job compensation information.
    * At most one entry can be of type
    * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
    * which is referred as **base compensation entry** for the job.
@@ -4171,8 +4052,7 @@ public com.google.protobuf.Parser getParserForType() {
    *
    *
    * 
-   * Optional.
-   * Job compensation information.
+   * Optional. Job compensation information.
    * At most one entry can be of type
    * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
    * which is referred as **base compensation entry** for the job.
@@ -4188,8 +4068,7 @@ public int getEntriesCount() {
    *
    *
    * 
-   * Optional.
-   * Job compensation information.
+   * Optional. Job compensation information.
    * At most one entry can be of type
    * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
    * which is referred as **base compensation entry** for the job.
@@ -4205,8 +4084,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry getEnt
    *
    *
    * 
-   * Optional.
-   * Job compensation information.
+   * Optional. Job compensation information.
    * At most one entry can be of type
    * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
    * which is referred as **base compensation entry** for the job.
@@ -4809,8 +4687,7 @@ private void ensureEntriesIsMutable() {
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -4831,8 +4708,7 @@ private void ensureEntriesIsMutable() {
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -4852,8 +4728,7 @@ public int getEntriesCount() {
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -4874,8 +4749,7 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry getEnt
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -4902,8 +4776,7 @@ public Builder setEntries(
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -4929,8 +4802,7 @@ public Builder setEntries(
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -4957,8 +4829,7 @@ public Builder addEntries(
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -4985,8 +4856,7 @@ public Builder addEntries(
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -5011,8 +4881,7 @@ public Builder addEntries(
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -5038,8 +4907,7 @@ public Builder addEntries(
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -5065,8 +4933,7 @@ public Builder addAllEntries(
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -5089,8 +4956,7 @@ public Builder clearEntries() {
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -5113,8 +4979,7 @@ public Builder removeEntries(int index) {
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -5131,8 +4996,7 @@ public Builder removeEntries(int index) {
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -5153,8 +5017,7 @@ public Builder removeEntries(int index) {
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -5176,8 +5039,7 @@ public Builder removeEntries(int index) {
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -5197,8 +5059,7 @@ public Builder removeEntries(int index) {
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
@@ -5219,8 +5080,7 @@ public Builder removeEntries(int index) {
      *
      *
      * 
-     * Optional.
-     * Job compensation information.
+     * Optional. Job compensation information.
      * At most one entry can be of type
      * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
      * which is referred as **base compensation entry** for the job.
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationInfoOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationInfoOrBuilder.java
index baa72a1e516d..7586bffc93b8 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationInfoOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompensationInfoOrBuilder.java
@@ -12,8 +12,7 @@ public interface CompensationInfoOrBuilder
    *
    *
    * 
-   * Optional.
-   * Job compensation information.
+   * Optional. Job compensation information.
    * At most one entry can be of type
    * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
    * which is referred as **base compensation entry** for the job.
@@ -28,8 +27,7 @@ public interface CompensationInfoOrBuilder
    *
    *
    * 
-   * Optional.
-   * Job compensation information.
+   * Optional. Job compensation information.
    * At most one entry can be of type
    * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
    * which is referred as **base compensation entry** for the job.
@@ -43,8 +41,7 @@ public interface CompensationInfoOrBuilder
    *
    *
    * 
-   * Optional.
-   * Job compensation information.
+   * Optional. Job compensation information.
    * At most one entry can be of type
    * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
    * which is referred as **base compensation entry** for the job.
@@ -58,8 +55,7 @@ public interface CompensationInfoOrBuilder
    *
    *
    * 
-   * Optional.
-   * Job compensation information.
+   * Optional. Job compensation information.
    * At most one entry can be of type
    * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
    * which is referred as **base compensation entry** for the job.
@@ -75,8 +71,7 @@ public interface CompensationInfoOrBuilder
    *
    *
    * 
-   * Optional.
-   * Job compensation information.
+   * Optional. Job compensation information.
    * At most one entry can be of type
    * [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE],
    * which is referred as **base compensation entry** for the job.
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompleteQueryRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompleteQueryRequest.java
index 46e92142c689..7ab5dd5c73f3 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompleteQueryRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompleteQueryRequest.java
@@ -470,8 +470,7 @@ private CompletionType(int value) {
    *
    *
    * 
-   * Required.
-   * Resource name of tenant the completion is performed within.
+   * Required. Resource name of tenant the completion is performed within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -495,8 +494,7 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * Resource name of tenant the completion is performed within.
+   * Required. Resource name of tenant the completion is performed within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -523,8 +521,7 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Required.
-   * The query used to generate suggestions.
+   * Required. The query used to generate suggestions.
    * The maximum number of allowed characters is 255.
    * 
* @@ -545,8 +542,7 @@ public java.lang.String getQuery() { * * *
-   * Required.
-   * The query used to generate suggestions.
+   * Required. The query used to generate suggestions.
    * The maximum number of allowed characters is 255.
    * 
* @@ -570,8 +566,7 @@ public com.google.protobuf.ByteString getQueryBytes() { * * *
-   * Optional.
-   * The list of languages of the query. This is
+   * Optional. The list of languages of the query. This is
    * the BCP-47 language code, such as "en-US" or "sr-Latn".
    * For more information, see
    * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -604,8 +599,7 @@ public com.google.protobuf.ProtocolStringList getLanguageCodesList() {
    *
    *
    * 
-   * Optional.
-   * The list of languages of the query. This is
+   * Optional. The list of languages of the query. This is
    * the BCP-47 language code, such as "en-US" or "sr-Latn".
    * For more information, see
    * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -638,8 +632,7 @@ public int getLanguageCodesCount() {
    *
    *
    * 
-   * Optional.
-   * The list of languages of the query. This is
+   * Optional. The list of languages of the query. This is
    * the BCP-47 language code, such as "en-US" or "sr-Latn".
    * For more information, see
    * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -672,8 +665,7 @@ public java.lang.String getLanguageCodes(int index) {
    *
    *
    * 
-   * Optional.
-   * The list of languages of the query. This is
+   * Optional. The list of languages of the query. This is
    * the BCP-47 language code, such as "en-US" or "sr-Latn".
    * For more information, see
    * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -709,8 +701,7 @@ public com.google.protobuf.ByteString getLanguageCodesBytes(int index) {
    *
    *
    * 
-   * Required.
-   * Completion result count.
+   * Required. Completion result count.
    * The maximum allowed page size is 10.
    * 
* @@ -726,8 +717,7 @@ public int getPageSize() { * * *
-   * Optional.
-   * If provided, restricts completion to specified company.
+   * Optional. If provided, restricts completion to specified company.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -752,8 +742,7 @@ public java.lang.String getCompany() {
    *
    *
    * 
-   * Optional.
-   * If provided, restricts completion to specified company.
+   * Optional. If provided, restricts completion to specified company.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -781,8 +770,7 @@ public com.google.protobuf.ByteString getCompanyBytes() {
    *
    *
    * 
-   * Optional.
-   * The scope of the completion. The defaults is
+   * Optional. The scope of the completion. The defaults is
    * [CompletionScope.PUBLIC][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope.PUBLIC].
    * 
* @@ -795,8 +783,7 @@ public int getScopeValue() { * * *
-   * Optional.
-   * The scope of the completion. The defaults is
+   * Optional. The scope of the completion. The defaults is
    * [CompletionScope.PUBLIC][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope.PUBLIC].
    * 
* @@ -817,8 +804,7 @@ public com.google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope getS * * *
-   * Optional.
-   * The completion topic. The default is
+   * Optional. The completion topic. The default is
    * [CompletionType.COMBINED][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionType.COMBINED].
    * 
* @@ -831,8 +817,7 @@ public int getTypeValue() { * * *
-   * Optional.
-   * The completion topic. The default is
+   * Optional. The completion topic. The default is
    * [CompletionType.COMBINED][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionType.COMBINED].
    * 
* @@ -1298,8 +1283,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * Resource name of tenant the completion is performed within.
+     * Required. Resource name of tenant the completion is performed within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -1323,8 +1307,7 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of tenant the completion is performed within.
+     * Required. Resource name of tenant the completion is performed within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -1348,8 +1331,7 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * Resource name of tenant the completion is performed within.
+     * Required. Resource name of tenant the completion is performed within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -1371,8 +1353,7 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * Resource name of tenant the completion is performed within.
+     * Required. Resource name of tenant the completion is performed within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -1391,8 +1372,7 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of tenant the completion is performed within.
+     * Required. Resource name of tenant the completion is performed within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -1417,8 +1397,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * The query used to generate suggestions.
+     * Required. The query used to generate suggestions.
      * The maximum number of allowed characters is 255.
      * 
* @@ -1439,8 +1418,7 @@ public java.lang.String getQuery() { * * *
-     * Required.
-     * The query used to generate suggestions.
+     * Required. The query used to generate suggestions.
      * The maximum number of allowed characters is 255.
      * 
* @@ -1461,8 +1439,7 @@ public com.google.protobuf.ByteString getQueryBytes() { * * *
-     * Required.
-     * The query used to generate suggestions.
+     * Required. The query used to generate suggestions.
      * The maximum number of allowed characters is 255.
      * 
* @@ -1481,8 +1458,7 @@ public Builder setQuery(java.lang.String value) { * * *
-     * Required.
-     * The query used to generate suggestions.
+     * Required. The query used to generate suggestions.
      * The maximum number of allowed characters is 255.
      * 
* @@ -1498,8 +1474,7 @@ public Builder clearQuery() { * * *
-     * Required.
-     * The query used to generate suggestions.
+     * Required. The query used to generate suggestions.
      * The maximum number of allowed characters is 255.
      * 
* @@ -1529,8 +1504,7 @@ private void ensureLanguageCodesIsMutable() { * * *
-     * Optional.
-     * The list of languages of the query. This is
+     * Optional. The list of languages of the query. This is
      * the BCP-47 language code, such as "en-US" or "sr-Latn".
      * For more information, see
      * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -1563,8 +1537,7 @@ public com.google.protobuf.ProtocolStringList getLanguageCodesList() {
      *
      *
      * 
-     * Optional.
-     * The list of languages of the query. This is
+     * Optional. The list of languages of the query. This is
      * the BCP-47 language code, such as "en-US" or "sr-Latn".
      * For more information, see
      * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -1597,8 +1570,7 @@ public int getLanguageCodesCount() {
      *
      *
      * 
-     * Optional.
-     * The list of languages of the query. This is
+     * Optional. The list of languages of the query. This is
      * the BCP-47 language code, such as "en-US" or "sr-Latn".
      * For more information, see
      * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -1631,8 +1603,7 @@ public java.lang.String getLanguageCodes(int index) {
      *
      *
      * 
-     * Optional.
-     * The list of languages of the query. This is
+     * Optional. The list of languages of the query. This is
      * the BCP-47 language code, such as "en-US" or "sr-Latn".
      * For more information, see
      * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -1665,8 +1636,7 @@ public com.google.protobuf.ByteString getLanguageCodesBytes(int index) {
      *
      *
      * 
-     * Optional.
-     * The list of languages of the query. This is
+     * Optional. The list of languages of the query. This is
      * the BCP-47 language code, such as "en-US" or "sr-Latn".
      * For more information, see
      * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -1705,8 +1675,7 @@ public Builder setLanguageCodes(int index, java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The list of languages of the query. This is
+     * Optional. The list of languages of the query. This is
      * the BCP-47 language code, such as "en-US" or "sr-Latn".
      * For more information, see
      * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -1745,8 +1714,7 @@ public Builder addLanguageCodes(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The list of languages of the query. This is
+     * Optional. The list of languages of the query. This is
      * the BCP-47 language code, such as "en-US" or "sr-Latn".
      * For more information, see
      * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -1782,8 +1750,7 @@ public Builder addAllLanguageCodes(java.lang.Iterable values)
      *
      *
      * 
-     * Optional.
-     * The list of languages of the query. This is
+     * Optional. The list of languages of the query. This is
      * the BCP-47 language code, such as "en-US" or "sr-Latn".
      * For more information, see
      * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -1819,8 +1786,7 @@ public Builder clearLanguageCodes() {
      *
      *
      * 
-     * Optional.
-     * The list of languages of the query. This is
+     * Optional. The list of languages of the query. This is
      * the BCP-47 language code, such as "en-US" or "sr-Latn".
      * For more information, see
      * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -1862,8 +1828,7 @@ public Builder addLanguageCodesBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * Completion result count.
+     * Required. Completion result count.
      * The maximum allowed page size is 10.
      * 
* @@ -1876,8 +1841,7 @@ public int getPageSize() { * * *
-     * Required.
-     * Completion result count.
+     * Required. Completion result count.
      * The maximum allowed page size is 10.
      * 
* @@ -1893,8 +1857,7 @@ public Builder setPageSize(int value) { * * *
-     * Required.
-     * Completion result count.
+     * Required. Completion result count.
      * The maximum allowed page size is 10.
      * 
* @@ -1912,8 +1875,7 @@ public Builder clearPageSize() { * * *
-     * Optional.
-     * If provided, restricts completion to specified company.
+     * Optional. If provided, restricts completion to specified company.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -1938,8 +1900,7 @@ public java.lang.String getCompany() {
      *
      *
      * 
-     * Optional.
-     * If provided, restricts completion to specified company.
+     * Optional. If provided, restricts completion to specified company.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -1964,8 +1925,7 @@ public com.google.protobuf.ByteString getCompanyBytes() {
      *
      *
      * 
-     * Optional.
-     * If provided, restricts completion to specified company.
+     * Optional. If provided, restricts completion to specified company.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -1988,8 +1948,7 @@ public Builder setCompany(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * If provided, restricts completion to specified company.
+     * Optional. If provided, restricts completion to specified company.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -2009,8 +1968,7 @@ public Builder clearCompany() {
      *
      *
      * 
-     * Optional.
-     * If provided, restricts completion to specified company.
+     * Optional. If provided, restricts completion to specified company.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -2036,8 +1994,7 @@ public Builder setCompanyBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * The scope of the completion. The defaults is
+     * Optional. The scope of the completion. The defaults is
      * [CompletionScope.PUBLIC][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope.PUBLIC].
      * 
* @@ -2050,8 +2007,7 @@ public int getScopeValue() { * * *
-     * Optional.
-     * The scope of the completion. The defaults is
+     * Optional. The scope of the completion. The defaults is
      * [CompletionScope.PUBLIC][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope.PUBLIC].
      * 
* @@ -2066,8 +2022,7 @@ public Builder setScopeValue(int value) { * * *
-     * Optional.
-     * The scope of the completion. The defaults is
+     * Optional. The scope of the completion. The defaults is
      * [CompletionScope.PUBLIC][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope.PUBLIC].
      * 
* @@ -2085,8 +2040,7 @@ public com.google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope getS * * *
-     * Optional.
-     * The scope of the completion. The defaults is
+     * Optional. The scope of the completion. The defaults is
      * [CompletionScope.PUBLIC][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope.PUBLIC].
      * 
* @@ -2106,8 +2060,7 @@ public Builder setScope( * * *
-     * Optional.
-     * The scope of the completion. The defaults is
+     * Optional. The scope of the completion. The defaults is
      * [CompletionScope.PUBLIC][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope.PUBLIC].
      * 
* @@ -2125,8 +2078,7 @@ public Builder clearScope() { * * *
-     * Optional.
-     * The completion topic. The default is
+     * Optional. The completion topic. The default is
      * [CompletionType.COMBINED][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionType.COMBINED].
      * 
* @@ -2139,8 +2091,7 @@ public int getTypeValue() { * * *
-     * Optional.
-     * The completion topic. The default is
+     * Optional. The completion topic. The default is
      * [CompletionType.COMBINED][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionType.COMBINED].
      * 
* @@ -2155,8 +2106,7 @@ public Builder setTypeValue(int value) { * * *
-     * Optional.
-     * The completion topic. The default is
+     * Optional. The completion topic. The default is
      * [CompletionType.COMBINED][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionType.COMBINED].
      * 
* @@ -2174,8 +2124,7 @@ public com.google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionType getTy * * *
-     * Optional.
-     * The completion topic. The default is
+     * Optional. The completion topic. The default is
      * [CompletionType.COMBINED][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionType.COMBINED].
      * 
* @@ -2195,8 +2144,7 @@ public Builder setType( * * *
-     * Optional.
-     * The completion topic. The default is
+     * Optional. The completion topic. The default is
      * [CompletionType.COMBINED][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionType.COMBINED].
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompleteQueryRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompleteQueryRequestOrBuilder.java index bd0fed0ec143..31079ab9c95d 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompleteQueryRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompleteQueryRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface CompleteQueryRequestOrBuilder * * *
-   * Required.
-   * Resource name of tenant the completion is performed within.
+   * Required. Resource name of tenant the completion is performed within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -27,8 +26,7 @@ public interface CompleteQueryRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Resource name of tenant the completion is performed within.
+   * Required. Resource name of tenant the completion is performed within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -43,8 +41,7 @@ public interface CompleteQueryRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The query used to generate suggestions.
+   * Required. The query used to generate suggestions.
    * The maximum number of allowed characters is 255.
    * 
* @@ -55,8 +52,7 @@ public interface CompleteQueryRequestOrBuilder * * *
-   * Required.
-   * The query used to generate suggestions.
+   * Required. The query used to generate suggestions.
    * The maximum number of allowed characters is 255.
    * 
* @@ -68,8 +64,7 @@ public interface CompleteQueryRequestOrBuilder * * *
-   * Optional.
-   * The list of languages of the query. This is
+   * Optional. The list of languages of the query. This is
    * the BCP-47 language code, such as "en-US" or "sr-Latn".
    * For more information, see
    * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -100,8 +95,7 @@ public interface CompleteQueryRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The list of languages of the query. This is
+   * Optional. The list of languages of the query. This is
    * the BCP-47 language code, such as "en-US" or "sr-Latn".
    * For more information, see
    * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -132,8 +126,7 @@ public interface CompleteQueryRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The list of languages of the query. This is
+   * Optional. The list of languages of the query. This is
    * the BCP-47 language code, such as "en-US" or "sr-Latn".
    * For more information, see
    * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -164,8 +157,7 @@ public interface CompleteQueryRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The list of languages of the query. This is
+   * Optional. The list of languages of the query. This is
    * the BCP-47 language code, such as "en-US" or "sr-Latn".
    * For more information, see
    * [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
@@ -197,8 +189,7 @@ public interface CompleteQueryRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Completion result count.
+   * Required. Completion result count.
    * The maximum allowed page size is 10.
    * 
* @@ -210,8 +201,7 @@ public interface CompleteQueryRequestOrBuilder * * *
-   * Optional.
-   * If provided, restricts completion to specified company.
+   * Optional. If provided, restricts completion to specified company.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -226,8 +216,7 @@ public interface CompleteQueryRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * If provided, restricts completion to specified company.
+   * Optional. If provided, restricts completion to specified company.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -243,8 +232,7 @@ public interface CompleteQueryRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The scope of the completion. The defaults is
+   * Optional. The scope of the completion. The defaults is
    * [CompletionScope.PUBLIC][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope.PUBLIC].
    * 
* @@ -255,8 +243,7 @@ public interface CompleteQueryRequestOrBuilder * * *
-   * Optional.
-   * The scope of the completion. The defaults is
+   * Optional. The scope of the completion. The defaults is
    * [CompletionScope.PUBLIC][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope.PUBLIC].
    * 
* @@ -268,8 +255,7 @@ public interface CompleteQueryRequestOrBuilder * * *
-   * Optional.
-   * The completion topic. The default is
+   * Optional. The completion topic. The default is
    * [CompletionType.COMBINED][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionType.COMBINED].
    * 
* @@ -280,8 +266,7 @@ public interface CompleteQueryRequestOrBuilder * * *
-   * Optional.
-   * The completion topic. The default is
+   * Optional. The completion topic. The default is
    * [CompletionType.COMBINED][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionType.COMBINED].
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompletionServiceProto.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompletionServiceProto.java index 9e26e58cfaa8..175b49e64c10 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompletionServiceProto.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CompletionServiceProto.java @@ -35,37 +35,41 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { java.lang.String[] descriptorData = { "\n4google/cloud/talent/v4beta1/completion" + "_service.proto\022\033google.cloud.talent.v4be" - + "ta1\032\034google/api/annotations.proto\032(googl" - + "e/cloud/talent/v4beta1/common.proto\"\302\003\n\024" - + "CompleteQueryRequest\022\016\n\006parent\030\001 \001(\t\022\r\n\005" - + "query\030\002 \001(\t\022\026\n\016language_codes\030\003 \003(\t\022\021\n\tp" - + "age_size\030\004 \001(\005\022\017\n\007company\030\005 \001(\t\022P\n\005scope" - + "\030\006 \001(\0162A.google.cloud.talent.v4beta1.Com" - + "pleteQueryRequest.CompletionScope\022N\n\004typ" - + "e\030\007 \001(\0162@.google.cloud.talent.v4beta1.Co" - + "mpleteQueryRequest.CompletionType\"K\n\017Com" - + "pletionScope\022 \n\034COMPLETION_SCOPE_UNSPECI" - + "FIED\020\000\022\n\n\006TENANT\020\001\022\n\n\006PUBLIC\020\002\"`\n\016Comple" - + "tionType\022\037\n\033COMPLETION_TYPE_UNSPECIFIED\020" - + "\000\022\r\n\tJOB_TITLE\020\001\022\020\n\014COMPANY_NAME\020\002\022\014\n\010CO" - + "MBINED\020\003\"\305\002\n\025CompleteQueryResponse\022_\n\022co" - + "mpletion_results\030\001 \003(\0132C.google.cloud.ta" - + "lent.v4beta1.CompleteQueryResponse.Compl" - + "etionResult\022?\n\010metadata\030\002 \001(\0132-.google.c" - + "loud.talent.v4beta1.ResponseMetadata\032\211\001\n" - + "\020CompletionResult\022\022\n\nsuggestion\030\001 \001(\t\022N\n" - + "\004type\030\002 \001(\0162@.google.cloud.talent.v4beta" - + "1.CompleteQueryRequest.CompletionType\022\021\n" - + "\timage_uri\030\003 \001(\t2\347\001\n\nCompletion\022\330\001\n\rComp" - + "leteQuery\0221.google.cloud.talent.v4beta1." - + "CompleteQueryRequest\0322.google.cloud.tale" - + "nt.v4beta1.CompleteQueryResponse\"`\202\323\344\223\002Z" - + "\022//v4beta1/{parent=projects/*/tenants/*}" - + ":completeZ\'\022%/v4beta1/{parent=projects/*" - + "}:completeB\204\001\n\037com.google.cloud.talent.v" - + "4beta1B\026CompletionServiceProtoP\001ZAgoogle" - + ".golang.org/genproto/googleapis/cloud/ta" - + "lent/v4beta1;talent\242\002\003CTSb\006proto3" + + "ta1\032\034google/api/annotations.proto\032\027googl" + + "e/api/client.proto\032(google/cloud/talent/" + + "v4beta1/common.proto\"\302\003\n\024CompleteQueryRe" + + "quest\022\016\n\006parent\030\001 \001(\t\022\r\n\005query\030\002 \001(\t\022\026\n\016" + + "language_codes\030\003 \003(\t\022\021\n\tpage_size\030\004 \001(\005\022" + + "\017\n\007company\030\005 \001(\t\022P\n\005scope\030\006 \001(\0162A.google" + + ".cloud.talent.v4beta1.CompleteQueryReque" + + "st.CompletionScope\022N\n\004type\030\007 \001(\0162@.googl" + + "e.cloud.talent.v4beta1.CompleteQueryRequ" + + "est.CompletionType\"K\n\017CompletionScope\022 \n" + + "\034COMPLETION_SCOPE_UNSPECIFIED\020\000\022\n\n\006TENAN" + + "T\020\001\022\n\n\006PUBLIC\020\002\"`\n\016CompletionType\022\037\n\033COM" + + "PLETION_TYPE_UNSPECIFIED\020\000\022\r\n\tJOB_TITLE\020" + + "\001\022\020\n\014COMPANY_NAME\020\002\022\014\n\010COMBINED\020\003\"\305\002\n\025Co" + + "mpleteQueryResponse\022_\n\022completion_result" + + "s\030\001 \003(\0132C.google.cloud.talent.v4beta1.Co" + + "mpleteQueryResponse.CompletionResult\022?\n\010" + + "metadata\030\002 \001(\0132-.google.cloud.talent.v4b" + + "eta1.ResponseMetadata\032\211\001\n\020CompletionResu" + + "lt\022\022\n\nsuggestion\030\001 \001(\t\022N\n\004type\030\002 \001(\0162@.g" + + "oogle.cloud.talent.v4beta1.CompleteQuery" + + "Request.CompletionType\022\021\n\timage_uri\030\003 \001(" + + "\t2\325\002\n\nCompletion\022\330\001\n\rCompleteQuery\0221.goo" + + "gle.cloud.talent.v4beta1.CompleteQueryRe" + + "quest\0322.google.cloud.talent.v4beta1.Comp" + + "leteQueryResponse\"`\202\323\344\223\002Z\022//v4beta1/{par" + + "ent=projects/*/tenants/*}:completeZ\'\022%/v" + + "4beta1/{parent=projects/*}:complete\032l\312A\023" + + "jobs.googleapis.com\322AShttps://www.google" + + "apis.com/auth/cloud-platform,https://www" + + ".googleapis.com/auth/jobsB\204\001\n\037com.google" + + ".cloud.talent.v4beta1B\026CompletionService" + + "ProtoP\001ZAgoogle.golang.org/genproto/goog" + + "leapis/cloud/talent/v4beta1;talent\242\002\003CTS" + + "b\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -79,6 +83,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.api.AnnotationsProto.getDescriptor(), + com.google.api.ClientProto.getDescriptor(), com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(), }, assigner); @@ -110,10 +115,13 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); + registry.add(com.google.api.ClientProto.defaultHost); registry.add(com.google.api.AnnotationsProto.http); + registry.add(com.google.api.ClientProto.oauthScopes); com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( descriptor, registry); com.google.api.AnnotationsProto.getDescriptor(); + com.google.api.ClientProto.getDescriptor(); com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(); } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateApplicationRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateApplicationRequest.java index 0c4943c8d149..a1ab6e66186e 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateApplicationRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateApplicationRequest.java @@ -113,8 +113,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * Resource name of the profile under which the application is created.
+   * Required. Resource name of the profile under which the application is
+   * created.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
    * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -137,8 +137,8 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * Resource name of the profile under which the application is created.
+   * Required. Resource name of the profile under which the application is
+   * created.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
    * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -164,8 +164,7 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Required.
-   * The application to be created.
+   * Required. The application to be created.
    * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -177,8 +176,7 @@ public boolean hasApplication() { * * *
-   * Required.
-   * The application to be created.
+   * Required. The application to be created.
    * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -192,8 +190,7 @@ public com.google.cloud.talent.v4beta1.Application getApplication() { * * *
-   * Required.
-   * The application to be created.
+   * Required. The application to be created.
    * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -554,8 +551,8 @@ public Builder mergeFrom( * * *
-     * Required.
-     * Resource name of the profile under which the application is created.
+     * Required. Resource name of the profile under which the application is
+     * created.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
      * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -578,8 +575,8 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile under which the application is created.
+     * Required. Resource name of the profile under which the application is
+     * created.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
      * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -602,8 +599,8 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile under which the application is created.
+     * Required. Resource name of the profile under which the application is
+     * created.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
      * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -624,8 +621,8 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile under which the application is created.
+     * Required. Resource name of the profile under which the application is
+     * created.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
      * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -643,8 +640,8 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile under which the application is created.
+     * Required. Resource name of the profile under which the application is
+     * created.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
      * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -673,8 +670,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * The application to be created.
+     * Required. The application to be created.
      * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -686,8 +682,7 @@ public boolean hasApplication() { * * *
-     * Required.
-     * The application to be created.
+     * Required. The application to be created.
      * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -705,8 +700,7 @@ public com.google.cloud.talent.v4beta1.Application getApplication() { * * *
-     * Required.
-     * The application to be created.
+     * Required. The application to be created.
      * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -728,8 +722,7 @@ public Builder setApplication(com.google.cloud.talent.v4beta1.Application value) * * *
-     * Required.
-     * The application to be created.
+     * Required. The application to be created.
      * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -749,8 +742,7 @@ public Builder setApplication( * * *
-     * Required.
-     * The application to be created.
+     * Required. The application to be created.
      * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -776,8 +768,7 @@ public Builder mergeApplication(com.google.cloud.talent.v4beta1.Application valu * * *
-     * Required.
-     * The application to be created.
+     * Required. The application to be created.
      * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -797,8 +788,7 @@ public Builder clearApplication() { * * *
-     * Required.
-     * The application to be created.
+     * Required. The application to be created.
      * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -812,8 +802,7 @@ public com.google.cloud.talent.v4beta1.Application.Builder getApplicationBuilder * * *
-     * Required.
-     * The application to be created.
+     * Required. The application to be created.
      * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -831,8 +820,7 @@ public com.google.cloud.talent.v4beta1.ApplicationOrBuilder getApplicationOrBuil * * *
-     * Required.
-     * The application to be created.
+     * Required. The application to be created.
      * 
* * .google.cloud.talent.v4beta1.Application application = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateApplicationRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateApplicationRequestOrBuilder.java index d49a51f3fad0..d993c869f511 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateApplicationRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateApplicationRequestOrBuilder.java @@ -12,8 +12,8 @@ public interface CreateApplicationRequestOrBuilder * * *
-   * Required.
-   * Resource name of the profile under which the application is created.
+   * Required. Resource name of the profile under which the application is
+   * created.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
    * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -26,8 +26,8 @@ public interface CreateApplicationRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Resource name of the profile under which the application is created.
+   * Required. Resource name of the profile under which the application is
+   * created.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
    * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -41,8 +41,7 @@ public interface CreateApplicationRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The application to be created.
+   * Required. The application to be created.
    * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -52,8 +51,7 @@ public interface CreateApplicationRequestOrBuilder * * *
-   * Required.
-   * The application to be created.
+   * Required. The application to be created.
    * 
* * .google.cloud.talent.v4beta1.Application application = 2; @@ -63,8 +61,7 @@ public interface CreateApplicationRequestOrBuilder * * *
-   * Required.
-   * The application to be created.
+   * Required. The application to be created.
    * 
* * .google.cloud.talent.v4beta1.Application application = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateClientEventRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateClientEventRequest.java index 40ac42965646..100c83101f2c 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateClientEventRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateClientEventRequest.java @@ -113,8 +113,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * Resource name of the tenant under which the event is created.
+   * Required. Resource name of the tenant under which the event is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -138,8 +137,7 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * Resource name of the tenant under which the event is created.
+   * Required. Resource name of the tenant under which the event is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -166,9 +164,8 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Required.
-   * Events issued when end user interacts with customer's application that
-   * uses Cloud Talent Solution.
+   * Required. Events issued when end user interacts with customer's application
+   * that uses Cloud Talent Solution.
    * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -180,9 +177,8 @@ public boolean hasClientEvent() { * * *
-   * Required.
-   * Events issued when end user interacts with customer's application that
-   * uses Cloud Talent Solution.
+   * Required. Events issued when end user interacts with customer's application
+   * that uses Cloud Talent Solution.
    * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -196,9 +192,8 @@ public com.google.cloud.talent.v4beta1.ClientEvent getClientEvent() { * * *
-   * Required.
-   * Events issued when end user interacts with customer's application that
-   * uses Cloud Talent Solution.
+   * Required. Events issued when end user interacts with customer's application
+   * that uses Cloud Talent Solution.
    * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -559,8 +554,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * Resource name of the tenant under which the event is created.
+     * Required. Resource name of the tenant under which the event is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -584,8 +578,7 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the event is created.
+     * Required. Resource name of the tenant under which the event is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -609,8 +602,7 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the event is created.
+     * Required. Resource name of the tenant under which the event is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -632,8 +624,7 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the event is created.
+     * Required. Resource name of the tenant under which the event is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -652,8 +643,7 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the event is created.
+     * Required. Resource name of the tenant under which the event is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -683,9 +673,8 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * Events issued when end user interacts with customer's application that
-     * uses Cloud Talent Solution.
+     * Required. Events issued when end user interacts with customer's application
+     * that uses Cloud Talent Solution.
      * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -697,9 +686,8 @@ public boolean hasClientEvent() { * * *
-     * Required.
-     * Events issued when end user interacts with customer's application that
-     * uses Cloud Talent Solution.
+     * Required. Events issued when end user interacts with customer's application
+     * that uses Cloud Talent Solution.
      * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -717,9 +705,8 @@ public com.google.cloud.talent.v4beta1.ClientEvent getClientEvent() { * * *
-     * Required.
-     * Events issued when end user interacts with customer's application that
-     * uses Cloud Talent Solution.
+     * Required. Events issued when end user interacts with customer's application
+     * that uses Cloud Talent Solution.
      * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -741,9 +728,8 @@ public Builder setClientEvent(com.google.cloud.talent.v4beta1.ClientEvent value) * * *
-     * Required.
-     * Events issued when end user interacts with customer's application that
-     * uses Cloud Talent Solution.
+     * Required. Events issued when end user interacts with customer's application
+     * that uses Cloud Talent Solution.
      * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -763,9 +749,8 @@ public Builder setClientEvent( * * *
-     * Required.
-     * Events issued when end user interacts with customer's application that
-     * uses Cloud Talent Solution.
+     * Required. Events issued when end user interacts with customer's application
+     * that uses Cloud Talent Solution.
      * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -791,9 +776,8 @@ public Builder mergeClientEvent(com.google.cloud.talent.v4beta1.ClientEvent valu * * *
-     * Required.
-     * Events issued when end user interacts with customer's application that
-     * uses Cloud Talent Solution.
+     * Required. Events issued when end user interacts with customer's application
+     * that uses Cloud Talent Solution.
      * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -813,9 +797,8 @@ public Builder clearClientEvent() { * * *
-     * Required.
-     * Events issued when end user interacts with customer's application that
-     * uses Cloud Talent Solution.
+     * Required. Events issued when end user interacts with customer's application
+     * that uses Cloud Talent Solution.
      * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -829,9 +812,8 @@ public com.google.cloud.talent.v4beta1.ClientEvent.Builder getClientEventBuilder * * *
-     * Required.
-     * Events issued when end user interacts with customer's application that
-     * uses Cloud Talent Solution.
+     * Required. Events issued when end user interacts with customer's application
+     * that uses Cloud Talent Solution.
      * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -849,9 +831,8 @@ public com.google.cloud.talent.v4beta1.ClientEventOrBuilder getClientEventOrBuil * * *
-     * Required.
-     * Events issued when end user interacts with customer's application that
-     * uses Cloud Talent Solution.
+     * Required. Events issued when end user interacts with customer's application
+     * that uses Cloud Talent Solution.
      * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateClientEventRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateClientEventRequestOrBuilder.java index 5a8ec7225fce..9b6f5edfd342 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateClientEventRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateClientEventRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface CreateClientEventRequestOrBuilder * * *
-   * Required.
-   * Resource name of the tenant under which the event is created.
+   * Required. Resource name of the tenant under which the event is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -27,8 +26,7 @@ public interface CreateClientEventRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Resource name of the tenant under which the event is created.
+   * Required. Resource name of the tenant under which the event is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -43,9 +41,8 @@ public interface CreateClientEventRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Events issued when end user interacts with customer's application that
-   * uses Cloud Talent Solution.
+   * Required. Events issued when end user interacts with customer's application
+   * that uses Cloud Talent Solution.
    * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -55,9 +52,8 @@ public interface CreateClientEventRequestOrBuilder * * *
-   * Required.
-   * Events issued when end user interacts with customer's application that
-   * uses Cloud Talent Solution.
+   * Required. Events issued when end user interacts with customer's application
+   * that uses Cloud Talent Solution.
    * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; @@ -67,9 +63,8 @@ public interface CreateClientEventRequestOrBuilder * * *
-   * Required.
-   * Events issued when end user interacts with customer's application that
-   * uses Cloud Talent Solution.
+   * Required. Events issued when end user interacts with customer's application
+   * that uses Cloud Talent Solution.
    * 
* * .google.cloud.talent.v4beta1.ClientEvent client_event = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateCompanyRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateCompanyRequest.java index 7a08326e5816..cc5b9bffb86b 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateCompanyRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateCompanyRequest.java @@ -113,8 +113,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * Resource name of the tenant under which the company is created.
+   * Required. Resource name of the tenant under which the company is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -138,8 +137,7 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * Resource name of the tenant under which the company is created.
+   * Required. Resource name of the tenant under which the company is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -166,8 +164,7 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Required.
-   * The company to be created.
+   * Required. The company to be created.
    * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -179,8 +176,7 @@ public boolean hasCompany() { * * *
-   * Required.
-   * The company to be created.
+   * Required. The company to be created.
    * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -194,8 +190,7 @@ public com.google.cloud.talent.v4beta1.Company getCompany() { * * *
-   * Required.
-   * The company to be created.
+   * Required. The company to be created.
    * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -555,8 +550,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * Resource name of the tenant under which the company is created.
+     * Required. Resource name of the tenant under which the company is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -580,8 +574,7 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the company is created.
+     * Required. Resource name of the tenant under which the company is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -605,8 +598,7 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the company is created.
+     * Required. Resource name of the tenant under which the company is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -628,8 +620,7 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the company is created.
+     * Required. Resource name of the tenant under which the company is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -648,8 +639,7 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the company is created.
+     * Required. Resource name of the tenant under which the company is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -679,8 +669,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * The company to be created.
+     * Required. The company to be created.
      * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -692,8 +681,7 @@ public boolean hasCompany() { * * *
-     * Required.
-     * The company to be created.
+     * Required. The company to be created.
      * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -711,8 +699,7 @@ public com.google.cloud.talent.v4beta1.Company getCompany() { * * *
-     * Required.
-     * The company to be created.
+     * Required. The company to be created.
      * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -734,8 +721,7 @@ public Builder setCompany(com.google.cloud.talent.v4beta1.Company value) { * * *
-     * Required.
-     * The company to be created.
+     * Required. The company to be created.
      * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -754,8 +740,7 @@ public Builder setCompany(com.google.cloud.talent.v4beta1.Company.Builder builde * * *
-     * Required.
-     * The company to be created.
+     * Required. The company to be created.
      * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -781,8 +766,7 @@ public Builder mergeCompany(com.google.cloud.talent.v4beta1.Company value) { * * *
-     * Required.
-     * The company to be created.
+     * Required. The company to be created.
      * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -802,8 +786,7 @@ public Builder clearCompany() { * * *
-     * Required.
-     * The company to be created.
+     * Required. The company to be created.
      * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -817,8 +800,7 @@ public com.google.cloud.talent.v4beta1.Company.Builder getCompanyBuilder() { * * *
-     * Required.
-     * The company to be created.
+     * Required. The company to be created.
      * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -836,8 +818,7 @@ public com.google.cloud.talent.v4beta1.CompanyOrBuilder getCompanyOrBuilder() { * * *
-     * Required.
-     * The company to be created.
+     * Required. The company to be created.
      * 
* * .google.cloud.talent.v4beta1.Company company = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateCompanyRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateCompanyRequestOrBuilder.java index 1fc6c76c6daf..42f0f113b9da 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateCompanyRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateCompanyRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface CreateCompanyRequestOrBuilder * * *
-   * Required.
-   * Resource name of the tenant under which the company is created.
+   * Required. Resource name of the tenant under which the company is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -27,8 +26,7 @@ public interface CreateCompanyRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Resource name of the tenant under which the company is created.
+   * Required. Resource name of the tenant under which the company is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -43,8 +41,7 @@ public interface CreateCompanyRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The company to be created.
+   * Required. The company to be created.
    * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -54,8 +51,7 @@ public interface CreateCompanyRequestOrBuilder * * *
-   * Required.
-   * The company to be created.
+   * Required. The company to be created.
    * 
* * .google.cloud.talent.v4beta1.Company company = 2; @@ -65,8 +61,7 @@ public interface CreateCompanyRequestOrBuilder * * *
-   * Required.
-   * The company to be created.
+   * Required. The company to be created.
    * 
* * .google.cloud.talent.v4beta1.Company company = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateJobRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateJobRequest.java index 7872acd68318..56f7c8ec9ddd 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateJobRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateJobRequest.java @@ -114,8 +114,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -139,8 +138,7 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -167,8 +165,7 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Required.
-   * The Job to be created.
+   * Required. The Job to be created.
    * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -180,8 +177,7 @@ public boolean hasJob() { * * *
-   * Required.
-   * The Job to be created.
+   * Required. The Job to be created.
    * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -193,8 +189,7 @@ public com.google.cloud.talent.v4beta1.Job getJob() { * * *
-   * Required.
-   * The Job to be created.
+   * Required. The Job to be created.
    * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -554,8 +549,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -579,8 +573,7 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -604,8 +597,7 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -627,8 +619,7 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -647,8 +638,7 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and a default tenant is created if unspecified, for
@@ -678,8 +668,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * The Job to be created.
+     * Required. The Job to be created.
      * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -691,8 +680,7 @@ public boolean hasJob() { * * *
-     * Required.
-     * The Job to be created.
+     * Required. The Job to be created.
      * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -708,8 +696,7 @@ public com.google.cloud.talent.v4beta1.Job getJob() { * * *
-     * Required.
-     * The Job to be created.
+     * Required. The Job to be created.
      * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -731,8 +718,7 @@ public Builder setJob(com.google.cloud.talent.v4beta1.Job value) { * * *
-     * Required.
-     * The Job to be created.
+     * Required. The Job to be created.
      * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -751,8 +737,7 @@ public Builder setJob(com.google.cloud.talent.v4beta1.Job.Builder builderForValu * * *
-     * Required.
-     * The Job to be created.
+     * Required. The Job to be created.
      * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -776,8 +761,7 @@ public Builder mergeJob(com.google.cloud.talent.v4beta1.Job value) { * * *
-     * Required.
-     * The Job to be created.
+     * Required. The Job to be created.
      * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -797,8 +781,7 @@ public Builder clearJob() { * * *
-     * Required.
-     * The Job to be created.
+     * Required. The Job to be created.
      * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -812,8 +795,7 @@ public com.google.cloud.talent.v4beta1.Job.Builder getJobBuilder() { * * *
-     * Required.
-     * The Job to be created.
+     * Required. The Job to be created.
      * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -829,8 +811,7 @@ public com.google.cloud.talent.v4beta1.JobOrBuilder getJobOrBuilder() { * * *
-     * Required.
-     * The Job to be created.
+     * Required. The Job to be created.
      * 
* * .google.cloud.talent.v4beta1.Job job = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateJobRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateJobRequestOrBuilder.java index b1d74d059f92..5a23d27e8760 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateJobRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateJobRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface CreateJobRequestOrBuilder * * *
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -27,8 +26,7 @@ public interface CreateJobRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and a default tenant is created if unspecified, for
@@ -43,8 +41,7 @@ public interface CreateJobRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The Job to be created.
+   * Required. The Job to be created.
    * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -54,8 +51,7 @@ public interface CreateJobRequestOrBuilder * * *
-   * Required.
-   * The Job to be created.
+   * Required. The Job to be created.
    * 
* * .google.cloud.talent.v4beta1.Job job = 2; @@ -65,8 +61,7 @@ public interface CreateJobRequestOrBuilder * * *
-   * Required.
-   * The Job to be created.
+   * Required. The Job to be created.
    * 
* * .google.cloud.talent.v4beta1.Job job = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateProfileRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateProfileRequest.java index 73d0deb4729b..62d08c72e40e 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateProfileRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateProfileRequest.java @@ -113,8 +113,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The name of the tenant this profile belongs to.
+   * Required. The name of the tenant this profile belongs to.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -136,8 +135,7 @@ public java.lang.String getParent() { * * *
-   * Required.
-   * The name of the tenant this profile belongs to.
+   * Required. The name of the tenant this profile belongs to.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -162,8 +160,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-   * Required.
-   * The profile to be created.
+   * Required. The profile to be created.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -175,8 +172,7 @@ public boolean hasProfile() { * * *
-   * Required.
-   * The profile to be created.
+   * Required. The profile to be created.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -190,8 +186,7 @@ public com.google.cloud.talent.v4beta1.Profile getProfile() { * * *
-   * Required.
-   * The profile to be created.
+   * Required. The profile to be created.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -551,8 +546,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The name of the tenant this profile belongs to.
+     * Required. The name of the tenant this profile belongs to.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -574,8 +568,7 @@ public java.lang.String getParent() { * * *
-     * Required.
-     * The name of the tenant this profile belongs to.
+     * Required. The name of the tenant this profile belongs to.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -597,8 +590,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-     * Required.
-     * The name of the tenant this profile belongs to.
+     * Required. The name of the tenant this profile belongs to.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -618,8 +610,7 @@ public Builder setParent(java.lang.String value) { * * *
-     * Required.
-     * The name of the tenant this profile belongs to.
+     * Required. The name of the tenant this profile belongs to.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -636,8 +627,7 @@ public Builder clearParent() { * * *
-     * Required.
-     * The name of the tenant this profile belongs to.
+     * Required. The name of the tenant this profile belongs to.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -665,8 +655,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) { * * *
-     * Required.
-     * The profile to be created.
+     * Required. The profile to be created.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -678,8 +667,7 @@ public boolean hasProfile() { * * *
-     * Required.
-     * The profile to be created.
+     * Required. The profile to be created.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -697,8 +685,7 @@ public com.google.cloud.talent.v4beta1.Profile getProfile() { * * *
-     * Required.
-     * The profile to be created.
+     * Required. The profile to be created.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -720,8 +707,7 @@ public Builder setProfile(com.google.cloud.talent.v4beta1.Profile value) { * * *
-     * Required.
-     * The profile to be created.
+     * Required. The profile to be created.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -740,8 +726,7 @@ public Builder setProfile(com.google.cloud.talent.v4beta1.Profile.Builder builde * * *
-     * Required.
-     * The profile to be created.
+     * Required. The profile to be created.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -767,8 +752,7 @@ public Builder mergeProfile(com.google.cloud.talent.v4beta1.Profile value) { * * *
-     * Required.
-     * The profile to be created.
+     * Required. The profile to be created.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -788,8 +772,7 @@ public Builder clearProfile() { * * *
-     * Required.
-     * The profile to be created.
+     * Required. The profile to be created.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -803,8 +786,7 @@ public com.google.cloud.talent.v4beta1.Profile.Builder getProfileBuilder() { * * *
-     * Required.
-     * The profile to be created.
+     * Required. The profile to be created.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -822,8 +804,7 @@ public com.google.cloud.talent.v4beta1.ProfileOrBuilder getProfileOrBuilder() { * * *
-     * Required.
-     * The profile to be created.
+     * Required. The profile to be created.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateProfileRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateProfileRequestOrBuilder.java index 99906e3c1cbb..561b5b6b8a07 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateProfileRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateProfileRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface CreateProfileRequestOrBuilder * * *
-   * Required.
-   * The name of the tenant this profile belongs to.
+   * Required. The name of the tenant this profile belongs to.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -25,8 +24,7 @@ public interface CreateProfileRequestOrBuilder * * *
-   * Required.
-   * The name of the tenant this profile belongs to.
+   * Required. The name of the tenant this profile belongs to.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -39,8 +37,7 @@ public interface CreateProfileRequestOrBuilder * * *
-   * Required.
-   * The profile to be created.
+   * Required. The profile to be created.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -50,8 +47,7 @@ public interface CreateProfileRequestOrBuilder * * *
-   * Required.
-   * The profile to be created.
+   * Required. The profile to be created.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; @@ -61,8 +57,7 @@ public interface CreateProfileRequestOrBuilder * * *
-   * Required.
-   * The profile to be created.
+   * Required. The profile to be created.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateTenantRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateTenantRequest.java index 8a9fbce1c3dc..bbbb0f0f33ce 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateTenantRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateTenantRequest.java @@ -113,8 +113,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * Resource name of the project under which the tenant is created.
+   * Required. Resource name of the project under which the tenant is created.
    * The format is "projects/{project_id}", for example,
    * "projects/api-test-project".
    * 
@@ -136,8 +135,7 @@ public java.lang.String getParent() { * * *
-   * Required.
-   * Resource name of the project under which the tenant is created.
+   * Required. Resource name of the project under which the tenant is created.
    * The format is "projects/{project_id}", for example,
    * "projects/api-test-project".
    * 
@@ -162,8 +160,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-   * Required.
-   * The tenant to be created.
+   * Required. The tenant to be created.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -175,8 +172,7 @@ public boolean hasTenant() { * * *
-   * Required.
-   * The tenant to be created.
+   * Required. The tenant to be created.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -188,8 +184,7 @@ public com.google.cloud.talent.v4beta1.Tenant getTenant() { * * *
-   * Required.
-   * The tenant to be created.
+   * Required. The tenant to be created.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -549,8 +544,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * Resource name of the project under which the tenant is created.
+     * Required. Resource name of the project under which the tenant is created.
      * The format is "projects/{project_id}", for example,
      * "projects/api-test-project".
      * 
@@ -572,8 +566,7 @@ public java.lang.String getParent() { * * *
-     * Required.
-     * Resource name of the project under which the tenant is created.
+     * Required. Resource name of the project under which the tenant is created.
      * The format is "projects/{project_id}", for example,
      * "projects/api-test-project".
      * 
@@ -595,8 +588,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-     * Required.
-     * Resource name of the project under which the tenant is created.
+     * Required. Resource name of the project under which the tenant is created.
      * The format is "projects/{project_id}", for example,
      * "projects/api-test-project".
      * 
@@ -616,8 +608,7 @@ public Builder setParent(java.lang.String value) { * * *
-     * Required.
-     * Resource name of the project under which the tenant is created.
+     * Required. Resource name of the project under which the tenant is created.
      * The format is "projects/{project_id}", for example,
      * "projects/api-test-project".
      * 
@@ -634,8 +625,7 @@ public Builder clearParent() { * * *
-     * Required.
-     * Resource name of the project under which the tenant is created.
+     * Required. Resource name of the project under which the tenant is created.
      * The format is "projects/{project_id}", for example,
      * "projects/api-test-project".
      * 
@@ -663,8 +653,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) { * * *
-     * Required.
-     * The tenant to be created.
+     * Required. The tenant to be created.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -676,8 +665,7 @@ public boolean hasTenant() { * * *
-     * Required.
-     * The tenant to be created.
+     * Required. The tenant to be created.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -695,8 +683,7 @@ public com.google.cloud.talent.v4beta1.Tenant getTenant() { * * *
-     * Required.
-     * The tenant to be created.
+     * Required. The tenant to be created.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -718,8 +705,7 @@ public Builder setTenant(com.google.cloud.talent.v4beta1.Tenant value) { * * *
-     * Required.
-     * The tenant to be created.
+     * Required. The tenant to be created.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -738,8 +724,7 @@ public Builder setTenant(com.google.cloud.talent.v4beta1.Tenant.Builder builderF * * *
-     * Required.
-     * The tenant to be created.
+     * Required. The tenant to be created.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -765,8 +750,7 @@ public Builder mergeTenant(com.google.cloud.talent.v4beta1.Tenant value) { * * *
-     * Required.
-     * The tenant to be created.
+     * Required. The tenant to be created.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -786,8 +770,7 @@ public Builder clearTenant() { * * *
-     * Required.
-     * The tenant to be created.
+     * Required. The tenant to be created.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -801,8 +784,7 @@ public com.google.cloud.talent.v4beta1.Tenant.Builder getTenantBuilder() { * * *
-     * Required.
-     * The tenant to be created.
+     * Required. The tenant to be created.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -820,8 +802,7 @@ public com.google.cloud.talent.v4beta1.TenantOrBuilder getTenantOrBuilder() { * * *
-     * Required.
-     * The tenant to be created.
+     * Required. The tenant to be created.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateTenantRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateTenantRequestOrBuilder.java index 418f88b7ef4b..3a3ae43f348f 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateTenantRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CreateTenantRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface CreateTenantRequestOrBuilder * * *
-   * Required.
-   * Resource name of the project under which the tenant is created.
+   * Required. Resource name of the project under which the tenant is created.
    * The format is "projects/{project_id}", for example,
    * "projects/api-test-project".
    * 
@@ -25,8 +24,7 @@ public interface CreateTenantRequestOrBuilder * * *
-   * Required.
-   * Resource name of the project under which the tenant is created.
+   * Required. Resource name of the project under which the tenant is created.
    * The format is "projects/{project_id}", for example,
    * "projects/api-test-project".
    * 
@@ -39,8 +37,7 @@ public interface CreateTenantRequestOrBuilder * * *
-   * Required.
-   * The tenant to be created.
+   * Required. The tenant to be created.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -50,8 +47,7 @@ public interface CreateTenantRequestOrBuilder * * *
-   * Required.
-   * The tenant to be created.
+   * Required. The tenant to be created.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; @@ -61,8 +57,7 @@ public interface CreateTenantRequestOrBuilder * * *
-   * Required.
-   * The tenant to be created.
+   * Required. The tenant to be created.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CustomAttribute.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CustomAttribute.java index 958fe6d03faa..ca38a97bb669 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CustomAttribute.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CustomAttribute.java @@ -292,9 +292,8 @@ public long getLongValues(int index) { * * *
-   * Optional.
-   * If the `filterable` flag is true, custom field values are searchable.
-   * If false, values are not searchable.
+   * Optional. If the `filterable` flag is true, custom field values are
+   * searchable. If false, values are not searchable.
    * Default is false.
    * 
* @@ -1102,9 +1101,8 @@ public Builder clearLongValues() { * * *
-     * Optional.
-     * If the `filterable` flag is true, custom field values are searchable.
-     * If false, values are not searchable.
+     * Optional. If the `filterable` flag is true, custom field values are
+     * searchable. If false, values are not searchable.
      * Default is false.
      * 
* @@ -1117,9 +1115,8 @@ public boolean getFilterable() { * * *
-     * Optional.
-     * If the `filterable` flag is true, custom field values are searchable.
-     * If false, values are not searchable.
+     * Optional. If the `filterable` flag is true, custom field values are
+     * searchable. If false, values are not searchable.
      * Default is false.
      * 
* @@ -1135,9 +1132,8 @@ public Builder setFilterable(boolean value) { * * *
-     * Optional.
-     * If the `filterable` flag is true, custom field values are searchable.
-     * If false, values are not searchable.
+     * Optional. If the `filterable` flag is true, custom field values are
+     * searchable. If false, values are not searchable.
      * Default is false.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CustomAttributeOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CustomAttributeOrBuilder.java index 6df759d1bea8..c0bc627a2f26 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CustomAttributeOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/CustomAttributeOrBuilder.java @@ -148,9 +148,8 @@ public interface CustomAttributeOrBuilder * * *
-   * Optional.
-   * If the `filterable` flag is true, custom field values are searchable.
-   * If false, values are not searchable.
+   * Optional. If the `filterable` flag is true, custom field values are
+   * searchable. If false, values are not searchable.
    * Default is false.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Degree.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Degree.java index e9275123e333..b24d6ac5738b 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Degree.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Degree.java @@ -120,8 +120,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * ISCED degree type.
+   * Optional. ISCED degree type.
    * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 1; @@ -133,8 +132,7 @@ public int getDegreeTypeValue() { * * *
-   * Optional.
-   * ISCED degree type.
+   * Optional. ISCED degree type.
    * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 1; @@ -152,8 +150,7 @@ public com.google.cloud.talent.v4beta1.DegreeType getDegreeType() { * * *
-   * Optional.
-   * Full Degree name.
+   * Optional. Full Degree name.
    * For example, "B.S.", "Master of Arts", and so on.
    * Number of characters allowed is 100.
    * 
@@ -175,8 +172,7 @@ public java.lang.String getDegreeName() { * * *
-   * Optional.
-   * Full Degree name.
+   * Optional. Full Degree name.
    * For example, "B.S.", "Master of Arts", and so on.
    * Number of characters allowed is 100.
    * 
@@ -201,8 +197,7 @@ public com.google.protobuf.ByteString getDegreeNameBytes() { * * *
-   * Optional.
-   * Fields of study for the degree.
+   * Optional. Fields of study for the degree.
    * For example, "Computer science", "engineering".
    * Number of characters allowed is 100.
    * 
@@ -216,8 +211,7 @@ public com.google.protobuf.ProtocolStringList getFieldsOfStudyList() { * * *
-   * Optional.
-   * Fields of study for the degree.
+   * Optional. Fields of study for the degree.
    * For example, "Computer science", "engineering".
    * Number of characters allowed is 100.
    * 
@@ -231,8 +225,7 @@ public int getFieldsOfStudyCount() { * * *
-   * Optional.
-   * Fields of study for the degree.
+   * Optional. Fields of study for the degree.
    * For example, "Computer science", "engineering".
    * Number of characters allowed is 100.
    * 
@@ -246,8 +239,7 @@ public java.lang.String getFieldsOfStudy(int index) { * * *
-   * Optional.
-   * Fields of study for the degree.
+   * Optional. Fields of study for the degree.
    * For example, "Computer science", "engineering".
    * Number of characters allowed is 100.
    * 
@@ -633,8 +625,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * ISCED degree type.
+     * Optional. ISCED degree type.
      * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 1; @@ -646,8 +637,7 @@ public int getDegreeTypeValue() { * * *
-     * Optional.
-     * ISCED degree type.
+     * Optional. ISCED degree type.
      * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 1; @@ -661,8 +651,7 @@ public Builder setDegreeTypeValue(int value) { * * *
-     * Optional.
-     * ISCED degree type.
+     * Optional. ISCED degree type.
      * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 1; @@ -677,8 +666,7 @@ public com.google.cloud.talent.v4beta1.DegreeType getDegreeType() { * * *
-     * Optional.
-     * ISCED degree type.
+     * Optional. ISCED degree type.
      * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 1; @@ -696,8 +684,7 @@ public Builder setDegreeType(com.google.cloud.talent.v4beta1.DegreeType value) { * * *
-     * Optional.
-     * ISCED degree type.
+     * Optional. ISCED degree type.
      * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 1; @@ -714,8 +701,7 @@ public Builder clearDegreeType() { * * *
-     * Optional.
-     * Full Degree name.
+     * Optional. Full Degree name.
      * For example, "B.S.", "Master of Arts", and so on.
      * Number of characters allowed is 100.
      * 
@@ -737,8 +723,7 @@ public java.lang.String getDegreeName() { * * *
-     * Optional.
-     * Full Degree name.
+     * Optional. Full Degree name.
      * For example, "B.S.", "Master of Arts", and so on.
      * Number of characters allowed is 100.
      * 
@@ -760,8 +745,7 @@ public com.google.protobuf.ByteString getDegreeNameBytes() { * * *
-     * Optional.
-     * Full Degree name.
+     * Optional. Full Degree name.
      * For example, "B.S.", "Master of Arts", and so on.
      * Number of characters allowed is 100.
      * 
@@ -781,8 +765,7 @@ public Builder setDegreeName(java.lang.String value) { * * *
-     * Optional.
-     * Full Degree name.
+     * Optional. Full Degree name.
      * For example, "B.S.", "Master of Arts", and so on.
      * Number of characters allowed is 100.
      * 
@@ -799,8 +782,7 @@ public Builder clearDegreeName() { * * *
-     * Optional.
-     * Full Degree name.
+     * Optional. Full Degree name.
      * For example, "B.S.", "Master of Arts", and so on.
      * Number of characters allowed is 100.
      * 
@@ -831,8 +813,7 @@ private void ensureFieldsOfStudyIsMutable() { * * *
-     * Optional.
-     * Fields of study for the degree.
+     * Optional. Fields of study for the degree.
      * For example, "Computer science", "engineering".
      * Number of characters allowed is 100.
      * 
@@ -846,8 +827,7 @@ public com.google.protobuf.ProtocolStringList getFieldsOfStudyList() { * * *
-     * Optional.
-     * Fields of study for the degree.
+     * Optional. Fields of study for the degree.
      * For example, "Computer science", "engineering".
      * Number of characters allowed is 100.
      * 
@@ -861,8 +841,7 @@ public int getFieldsOfStudyCount() { * * *
-     * Optional.
-     * Fields of study for the degree.
+     * Optional. Fields of study for the degree.
      * For example, "Computer science", "engineering".
      * Number of characters allowed is 100.
      * 
@@ -876,8 +855,7 @@ public java.lang.String getFieldsOfStudy(int index) { * * *
-     * Optional.
-     * Fields of study for the degree.
+     * Optional. Fields of study for the degree.
      * For example, "Computer science", "engineering".
      * Number of characters allowed is 100.
      * 
@@ -891,8 +869,7 @@ public com.google.protobuf.ByteString getFieldsOfStudyBytes(int index) { * * *
-     * Optional.
-     * Fields of study for the degree.
+     * Optional. Fields of study for the degree.
      * For example, "Computer science", "engineering".
      * Number of characters allowed is 100.
      * 
@@ -912,8 +889,7 @@ public Builder setFieldsOfStudy(int index, java.lang.String value) { * * *
-     * Optional.
-     * Fields of study for the degree.
+     * Optional. Fields of study for the degree.
      * For example, "Computer science", "engineering".
      * Number of characters allowed is 100.
      * 
@@ -933,8 +909,7 @@ public Builder addFieldsOfStudy(java.lang.String value) { * * *
-     * Optional.
-     * Fields of study for the degree.
+     * Optional. Fields of study for the degree.
      * For example, "Computer science", "engineering".
      * Number of characters allowed is 100.
      * 
@@ -951,8 +926,7 @@ public Builder addAllFieldsOfStudy(java.lang.Iterable values) * * *
-     * Optional.
-     * Fields of study for the degree.
+     * Optional. Fields of study for the degree.
      * For example, "Computer science", "engineering".
      * Number of characters allowed is 100.
      * 
@@ -969,8 +943,7 @@ public Builder clearFieldsOfStudy() { * * *
-     * Optional.
-     * Fields of study for the degree.
+     * Optional. Fields of study for the degree.
      * For example, "Computer science", "engineering".
      * Number of characters allowed is 100.
      * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DegreeOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DegreeOrBuilder.java index b599b209e539..966dbc0487a5 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DegreeOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DegreeOrBuilder.java @@ -12,8 +12,7 @@ public interface DegreeOrBuilder * * *
-   * Optional.
-   * ISCED degree type.
+   * Optional. ISCED degree type.
    * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 1; @@ -23,8 +22,7 @@ public interface DegreeOrBuilder * * *
-   * Optional.
-   * ISCED degree type.
+   * Optional. ISCED degree type.
    * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 1; @@ -35,8 +33,7 @@ public interface DegreeOrBuilder * * *
-   * Optional.
-   * Full Degree name.
+   * Optional. Full Degree name.
    * For example, "B.S.", "Master of Arts", and so on.
    * Number of characters allowed is 100.
    * 
@@ -48,8 +45,7 @@ public interface DegreeOrBuilder * * *
-   * Optional.
-   * Full Degree name.
+   * Optional. Full Degree name.
    * For example, "B.S.", "Master of Arts", and so on.
    * Number of characters allowed is 100.
    * 
@@ -62,8 +58,7 @@ public interface DegreeOrBuilder * * *
-   * Optional.
-   * Fields of study for the degree.
+   * Optional. Fields of study for the degree.
    * For example, "Computer science", "engineering".
    * Number of characters allowed is 100.
    * 
@@ -75,8 +70,7 @@ public interface DegreeOrBuilder * * *
-   * Optional.
-   * Fields of study for the degree.
+   * Optional. Fields of study for the degree.
    * For example, "Computer science", "engineering".
    * Number of characters allowed is 100.
    * 
@@ -88,8 +82,7 @@ public interface DegreeOrBuilder * * *
-   * Optional.
-   * Fields of study for the degree.
+   * Optional. Fields of study for the degree.
    * For example, "Computer science", "engineering".
    * Number of characters allowed is 100.
    * 
@@ -101,8 +94,7 @@ public interface DegreeOrBuilder * * *
-   * Optional.
-   * Fields of study for the degree.
+   * Optional. Fields of study for the degree.
    * For example, "Computer science", "engineering".
    * Number of characters allowed is 100.
    * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteApplicationRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteApplicationRequest.java index 72adaf23c2d9..8d8c21fe5cd2 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteApplicationRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteApplicationRequest.java @@ -97,8 +97,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The resource name of the application to be deleted.
+   * Required. The resource name of the application to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
    * for example,
@@ -122,8 +121,7 @@ public java.lang.String getName() {
    *
    *
    * 
-   * Required.
-   * The resource name of the application to be deleted.
+   * Required. The resource name of the application to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
    * for example,
@@ -468,8 +466,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * The resource name of the application to be deleted.
+     * Required. The resource name of the application to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
      * for example,
@@ -493,8 +490,7 @@ public java.lang.String getName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the application to be deleted.
+     * Required. The resource name of the application to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
      * for example,
@@ -518,8 +514,7 @@ public com.google.protobuf.ByteString getNameBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the application to be deleted.
+     * Required. The resource name of the application to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
      * for example,
@@ -541,8 +536,7 @@ public Builder setName(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the application to be deleted.
+     * Required. The resource name of the application to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
      * for example,
@@ -561,8 +555,7 @@ public Builder clearName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the application to be deleted.
+     * Required. The resource name of the application to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
      * for example,
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteApplicationRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteApplicationRequestOrBuilder.java
index aba3e0997479..9e7aec51f797 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteApplicationRequestOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteApplicationRequestOrBuilder.java
@@ -12,8 +12,7 @@ public interface DeleteApplicationRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the application to be deleted.
+   * Required. The resource name of the application to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
    * for example,
@@ -27,8 +26,7 @@ public interface DeleteApplicationRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the application to be deleted.
+   * Required. The resource name of the application to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
    * for example,
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteCompanyRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteCompanyRequest.java
index f36d424d7fcc..f660b382ef1f 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteCompanyRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteCompanyRequest.java
@@ -97,8 +97,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required.
-   * The resource name of the company to be deleted.
+   * Required. The resource name of the company to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -123,8 +122,7 @@ public java.lang.String getName() {
    *
    *
    * 
-   * Required.
-   * The resource name of the company to be deleted.
+   * Required. The resource name of the company to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -469,8 +467,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * The resource name of the company to be deleted.
+     * Required. The resource name of the company to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -495,8 +492,7 @@ public java.lang.String getName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the company to be deleted.
+     * Required. The resource name of the company to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -521,8 +517,7 @@ public com.google.protobuf.ByteString getNameBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the company to be deleted.
+     * Required. The resource name of the company to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -545,8 +540,7 @@ public Builder setName(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the company to be deleted.
+     * Required. The resource name of the company to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -566,8 +560,7 @@ public Builder clearName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the company to be deleted.
+     * Required. The resource name of the company to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteCompanyRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteCompanyRequestOrBuilder.java
index f9e2c33538d6..23053bc7c92f 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteCompanyRequestOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteCompanyRequestOrBuilder.java
@@ -12,8 +12,7 @@ public interface DeleteCompanyRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the company to be deleted.
+   * Required. The resource name of the company to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -28,8 +27,7 @@ public interface DeleteCompanyRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the company to be deleted.
+   * Required. The resource name of the company to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteJobRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteJobRequest.java
index 444e7cc431e7..3f9dd06b8522 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteJobRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteJobRequest.java
@@ -98,8 +98,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required.
-   * The resource name of the job to be deleted.
+   * Required. The resource name of the job to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -124,8 +123,7 @@ public java.lang.String getName() {
    *
    *
    * 
-   * Required.
-   * The resource name of the job to be deleted.
+   * Required. The resource name of the job to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -470,8 +468,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * The resource name of the job to be deleted.
+     * Required. The resource name of the job to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -496,8 +493,7 @@ public java.lang.String getName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the job to be deleted.
+     * Required. The resource name of the job to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -522,8 +518,7 @@ public com.google.protobuf.ByteString getNameBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the job to be deleted.
+     * Required. The resource name of the job to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -546,8 +541,7 @@ public Builder setName(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the job to be deleted.
+     * Required. The resource name of the job to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -567,8 +561,7 @@ public Builder clearName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the job to be deleted.
+     * Required. The resource name of the job to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteJobRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteJobRequestOrBuilder.java
index fadf96c121a2..87ad3460f055 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteJobRequestOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteJobRequestOrBuilder.java
@@ -12,8 +12,7 @@ public interface DeleteJobRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the job to be deleted.
+   * Required. The resource name of the job to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -28,8 +27,7 @@ public interface DeleteJobRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the job to be deleted.
+   * Required. The resource name of the job to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteProfileRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteProfileRequest.java
index 4b2489ad3af8..4fa5910fa3f7 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteProfileRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteProfileRequest.java
@@ -97,8 +97,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required.
-   * Resource name of the profile to be deleted.
+   * Required. Resource name of the profile to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -121,8 +120,7 @@ public java.lang.String getName() {
    *
    *
    * 
-   * Required.
-   * Resource name of the profile to be deleted.
+   * Required. Resource name of the profile to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -465,8 +463,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * Resource name of the profile to be deleted.
+     * Required. Resource name of the profile to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -489,8 +486,7 @@ public java.lang.String getName() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile to be deleted.
+     * Required. Resource name of the profile to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -513,8 +509,7 @@ public com.google.protobuf.ByteString getNameBytes() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile to be deleted.
+     * Required. Resource name of the profile to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -535,8 +530,7 @@ public Builder setName(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile to be deleted.
+     * Required. Resource name of the profile to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -554,8 +548,7 @@ public Builder clearName() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile to be deleted.
+     * Required. Resource name of the profile to be deleted.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteProfileRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteProfileRequestOrBuilder.java
index 98e1a1f74cb9..98e5948df871 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteProfileRequestOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteProfileRequestOrBuilder.java
@@ -12,8 +12,7 @@ public interface DeleteProfileRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Resource name of the profile to be deleted.
+   * Required. Resource name of the profile to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -26,8 +25,7 @@ public interface DeleteProfileRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Resource name of the profile to be deleted.
+   * Required. Resource name of the profile to be deleted.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteTenantRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteTenantRequest.java
index df47126d8167..2bc2f0472253 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteTenantRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteTenantRequest.java
@@ -97,8 +97,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant to be deleted.
+   * Required. The resource name of the tenant to be deleted.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -120,8 +119,7 @@ public java.lang.String getName() { * * *
-   * Required.
-   * The resource name of the tenant to be deleted.
+   * Required. The resource name of the tenant to be deleted.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -463,8 +461,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The resource name of the tenant to be deleted.
+     * Required. The resource name of the tenant to be deleted.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -486,8 +483,7 @@ public java.lang.String getName() { * * *
-     * Required.
-     * The resource name of the tenant to be deleted.
+     * Required. The resource name of the tenant to be deleted.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -509,8 +505,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-     * Required.
-     * The resource name of the tenant to be deleted.
+     * Required. The resource name of the tenant to be deleted.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -530,8 +525,7 @@ public Builder setName(java.lang.String value) { * * *
-     * Required.
-     * The resource name of the tenant to be deleted.
+     * Required. The resource name of the tenant to be deleted.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -548,8 +542,7 @@ public Builder clearName() { * * *
-     * Required.
-     * The resource name of the tenant to be deleted.
+     * Required. The resource name of the tenant to be deleted.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteTenantRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteTenantRequestOrBuilder.java index eb671bb335c3..b800a6421f8d 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteTenantRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeleteTenantRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface DeleteTenantRequestOrBuilder * * *
-   * Required.
-   * The resource name of the tenant to be deleted.
+   * Required. The resource name of the tenant to be deleted.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -25,8 +24,7 @@ public interface DeleteTenantRequestOrBuilder * * *
-   * Required.
-   * The resource name of the tenant to be deleted.
+   * Required. The resource name of the tenant to be deleted.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeviceInfo.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeviceInfo.java index 4f678c5fd077..f7473d06aac4 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeviceInfo.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeviceInfo.java @@ -346,8 +346,7 @@ private DeviceType(int value) { * * *
-   * Optional.
-   * Type of the device.
+   * Optional. Type of the device.
    * 
* * .google.cloud.talent.v4beta1.DeviceInfo.DeviceType device_type = 1; @@ -359,8 +358,7 @@ public int getDeviceTypeValue() { * * *
-   * Optional.
-   * Type of the device.
+   * Optional. Type of the device.
    * 
* * .google.cloud.talent.v4beta1.DeviceInfo.DeviceType device_type = 1; @@ -380,8 +378,7 @@ public com.google.cloud.talent.v4beta1.DeviceInfo.DeviceType getDeviceType() { * * *
-   * Optional.
-   * A device-specific ID. The ID must be a unique identifier that
+   * Optional. A device-specific ID. The ID must be a unique identifier that
    * distinguishes the device from other devices.
    * 
* @@ -402,8 +399,7 @@ public java.lang.String getId() { * * *
-   * Optional.
-   * A device-specific ID. The ID must be a unique identifier that
+   * Optional. A device-specific ID. The ID must be a unique identifier that
    * distinguishes the device from other devices.
    * 
* @@ -763,8 +759,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * Type of the device.
+     * Optional. Type of the device.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo.DeviceType device_type = 1; @@ -776,8 +771,7 @@ public int getDeviceTypeValue() { * * *
-     * Optional.
-     * Type of the device.
+     * Optional. Type of the device.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo.DeviceType device_type = 1; @@ -791,8 +785,7 @@ public Builder setDeviceTypeValue(int value) { * * *
-     * Optional.
-     * Type of the device.
+     * Optional. Type of the device.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo.DeviceType device_type = 1; @@ -809,8 +802,7 @@ public com.google.cloud.talent.v4beta1.DeviceInfo.DeviceType getDeviceType() { * * *
-     * Optional.
-     * Type of the device.
+     * Optional. Type of the device.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo.DeviceType device_type = 1; @@ -828,8 +820,7 @@ public Builder setDeviceType(com.google.cloud.talent.v4beta1.DeviceInfo.DeviceTy * * *
-     * Optional.
-     * Type of the device.
+     * Optional. Type of the device.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo.DeviceType device_type = 1; @@ -846,8 +837,7 @@ public Builder clearDeviceType() { * * *
-     * Optional.
-     * A device-specific ID. The ID must be a unique identifier that
+     * Optional. A device-specific ID. The ID must be a unique identifier that
      * distinguishes the device from other devices.
      * 
* @@ -868,8 +858,7 @@ public java.lang.String getId() { * * *
-     * Optional.
-     * A device-specific ID. The ID must be a unique identifier that
+     * Optional. A device-specific ID. The ID must be a unique identifier that
      * distinguishes the device from other devices.
      * 
* @@ -890,8 +879,7 @@ public com.google.protobuf.ByteString getIdBytes() { * * *
-     * Optional.
-     * A device-specific ID. The ID must be a unique identifier that
+     * Optional. A device-specific ID. The ID must be a unique identifier that
      * distinguishes the device from other devices.
      * 
* @@ -910,8 +898,7 @@ public Builder setId(java.lang.String value) { * * *
-     * Optional.
-     * A device-specific ID. The ID must be a unique identifier that
+     * Optional. A device-specific ID. The ID must be a unique identifier that
      * distinguishes the device from other devices.
      * 
* @@ -927,8 +914,7 @@ public Builder clearId() { * * *
-     * Optional.
-     * A device-specific ID. The ID must be a unique identifier that
+     * Optional. A device-specific ID. The ID must be a unique identifier that
      * distinguishes the device from other devices.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeviceInfoOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeviceInfoOrBuilder.java index 7596f3c6061d..611cbf24ebb6 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeviceInfoOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/DeviceInfoOrBuilder.java @@ -12,8 +12,7 @@ public interface DeviceInfoOrBuilder * * *
-   * Optional.
-   * Type of the device.
+   * Optional. Type of the device.
    * 
* * .google.cloud.talent.v4beta1.DeviceInfo.DeviceType device_type = 1; @@ -23,8 +22,7 @@ public interface DeviceInfoOrBuilder * * *
-   * Optional.
-   * Type of the device.
+   * Optional. Type of the device.
    * 
* * .google.cloud.talent.v4beta1.DeviceInfo.DeviceType device_type = 1; @@ -35,8 +33,7 @@ public interface DeviceInfoOrBuilder * * *
-   * Optional.
-   * A device-specific ID. The ID must be a unique identifier that
+   * Optional. A device-specific ID. The ID must be a unique identifier that
    * distinguishes the device from other devices.
    * 
* @@ -47,8 +44,7 @@ public interface DeviceInfoOrBuilder * * *
-   * Optional.
-   * A device-specific ID. The ID must be a unique identifier that
+   * Optional. A device-specific ID. The ID must be a unique identifier that
    * distinguishes the device from other devices.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationFilter.java index f8f90e49c53b..114e78344f02 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationFilter.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationFilter.java @@ -119,8 +119,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * The school name. For example "MIT", "University of California, Berkeley".
+   * Optional. The school name. For example "MIT", "University of California,
+   * Berkeley".
    * 
* * string school = 1; @@ -140,8 +140,8 @@ public java.lang.String getSchool() { * * *
-   * Optional.
-   * The school name. For example "MIT", "University of California, Berkeley".
+   * Optional. The school name. For example "MIT", "University of California,
+   * Berkeley".
    * 
* * string school = 1; @@ -164,8 +164,7 @@ public com.google.protobuf.ByteString getSchoolBytes() { * * *
-   * Optional.
-   * The field of study. This is to search against value provided in
+   * Optional. The field of study. This is to search against value provided in
    * [Degree.fields_of_study][google.cloud.talent.v4beta1.Degree.fields_of_study].
    * For example "Computer Science", "Mathematics".
    * 
@@ -187,8 +186,7 @@ public java.lang.String getFieldOfStudy() { * * *
-   * Optional.
-   * The field of study. This is to search against value provided in
+   * Optional. The field of study. This is to search against value provided in
    * [Degree.fields_of_study][google.cloud.talent.v4beta1.Degree.fields_of_study].
    * For example "Computer Science", "Mathematics".
    * 
@@ -213,10 +211,9 @@ public com.google.protobuf.ByteString getFieldOfStudyBytes() { * * *
-   * Optional.
-   * Education degree in ISCED code. Each value in degree covers a specific
-   * level of education, without any expansion to upper nor lower levels of
-   * education degree.
+   * Optional. Education degree in ISCED code. Each value in degree covers a
+   * specific level of education, without any expansion to upper nor lower
+   * levels of education degree.
    * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 3; @@ -228,10 +225,9 @@ public int getDegreeTypeValue() { * * *
-   * Optional.
-   * Education degree in ISCED code. Each value in degree covers a specific
-   * level of education, without any expansion to upper nor lower levels of
-   * education degree.
+   * Optional. Education degree in ISCED code. Each value in degree covers a
+   * specific level of education, without any expansion to upper nor lower
+   * levels of education degree.
    * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 3; @@ -249,9 +245,8 @@ public com.google.cloud.talent.v4beta1.DegreeType getDegreeType() { * * *
-   * Optional.
-   * Whether to apply negation to the filter so profiles matching the filter
-   * is excluded.
+   * Optional. Whether to apply negation to the filter so profiles matching the
+   * filter is excluded.
    * 
* * bool negated = 6; @@ -631,8 +626,8 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * The school name. For example "MIT", "University of California, Berkeley".
+     * Optional. The school name. For example "MIT", "University of California,
+     * Berkeley".
      * 
* * string school = 1; @@ -652,8 +647,8 @@ public java.lang.String getSchool() { * * *
-     * Optional.
-     * The school name. For example "MIT", "University of California, Berkeley".
+     * Optional. The school name. For example "MIT", "University of California,
+     * Berkeley".
      * 
* * string school = 1; @@ -673,8 +668,8 @@ public com.google.protobuf.ByteString getSchoolBytes() { * * *
-     * Optional.
-     * The school name. For example "MIT", "University of California, Berkeley".
+     * Optional. The school name. For example "MIT", "University of California,
+     * Berkeley".
      * 
* * string school = 1; @@ -692,8 +687,8 @@ public Builder setSchool(java.lang.String value) { * * *
-     * Optional.
-     * The school name. For example "MIT", "University of California, Berkeley".
+     * Optional. The school name. For example "MIT", "University of California,
+     * Berkeley".
      * 
* * string school = 1; @@ -708,8 +703,8 @@ public Builder clearSchool() { * * *
-     * Optional.
-     * The school name. For example "MIT", "University of California, Berkeley".
+     * Optional. The school name. For example "MIT", "University of California,
+     * Berkeley".
      * 
* * string school = 1; @@ -730,8 +725,7 @@ public Builder setSchoolBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The field of study. This is to search against value provided in
+     * Optional. The field of study. This is to search against value provided in
      * [Degree.fields_of_study][google.cloud.talent.v4beta1.Degree.fields_of_study].
      * For example "Computer Science", "Mathematics".
      * 
@@ -753,8 +747,7 @@ public java.lang.String getFieldOfStudy() { * * *
-     * Optional.
-     * The field of study. This is to search against value provided in
+     * Optional. The field of study. This is to search against value provided in
      * [Degree.fields_of_study][google.cloud.talent.v4beta1.Degree.fields_of_study].
      * For example "Computer Science", "Mathematics".
      * 
@@ -776,8 +769,7 @@ public com.google.protobuf.ByteString getFieldOfStudyBytes() { * * *
-     * Optional.
-     * The field of study. This is to search against value provided in
+     * Optional. The field of study. This is to search against value provided in
      * [Degree.fields_of_study][google.cloud.talent.v4beta1.Degree.fields_of_study].
      * For example "Computer Science", "Mathematics".
      * 
@@ -797,8 +789,7 @@ public Builder setFieldOfStudy(java.lang.String value) { * * *
-     * Optional.
-     * The field of study. This is to search against value provided in
+     * Optional. The field of study. This is to search against value provided in
      * [Degree.fields_of_study][google.cloud.talent.v4beta1.Degree.fields_of_study].
      * For example "Computer Science", "Mathematics".
      * 
@@ -815,8 +806,7 @@ public Builder clearFieldOfStudy() { * * *
-     * Optional.
-     * The field of study. This is to search against value provided in
+     * Optional. The field of study. This is to search against value provided in
      * [Degree.fields_of_study][google.cloud.talent.v4beta1.Degree.fields_of_study].
      * For example "Computer Science", "Mathematics".
      * 
@@ -839,10 +829,9 @@ public Builder setFieldOfStudyBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Education degree in ISCED code. Each value in degree covers a specific
-     * level of education, without any expansion to upper nor lower levels of
-     * education degree.
+     * Optional. Education degree in ISCED code. Each value in degree covers a
+     * specific level of education, without any expansion to upper nor lower
+     * levels of education degree.
      * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 3; @@ -854,10 +843,9 @@ public int getDegreeTypeValue() { * * *
-     * Optional.
-     * Education degree in ISCED code. Each value in degree covers a specific
-     * level of education, without any expansion to upper nor lower levels of
-     * education degree.
+     * Optional. Education degree in ISCED code. Each value in degree covers a
+     * specific level of education, without any expansion to upper nor lower
+     * levels of education degree.
      * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 3; @@ -871,10 +859,9 @@ public Builder setDegreeTypeValue(int value) { * * *
-     * Optional.
-     * Education degree in ISCED code. Each value in degree covers a specific
-     * level of education, without any expansion to upper nor lower levels of
-     * education degree.
+     * Optional. Education degree in ISCED code. Each value in degree covers a
+     * specific level of education, without any expansion to upper nor lower
+     * levels of education degree.
      * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 3; @@ -889,10 +876,9 @@ public com.google.cloud.talent.v4beta1.DegreeType getDegreeType() { * * *
-     * Optional.
-     * Education degree in ISCED code. Each value in degree covers a specific
-     * level of education, without any expansion to upper nor lower levels of
-     * education degree.
+     * Optional. Education degree in ISCED code. Each value in degree covers a
+     * specific level of education, without any expansion to upper nor lower
+     * levels of education degree.
      * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 3; @@ -910,10 +896,9 @@ public Builder setDegreeType(com.google.cloud.talent.v4beta1.DegreeType value) { * * *
-     * Optional.
-     * Education degree in ISCED code. Each value in degree covers a specific
-     * level of education, without any expansion to upper nor lower levels of
-     * education degree.
+     * Optional. Education degree in ISCED code. Each value in degree covers a
+     * specific level of education, without any expansion to upper nor lower
+     * levels of education degree.
      * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 3; @@ -930,9 +915,8 @@ public Builder clearDegreeType() { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * is excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter is excluded.
      * 
* * bool negated = 6; @@ -944,9 +928,8 @@ public boolean getNegated() { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * is excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter is excluded.
      * 
* * bool negated = 6; @@ -961,9 +944,8 @@ public Builder setNegated(boolean value) { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * is excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter is excluded.
      * 
* * bool negated = 6; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationFilterOrBuilder.java index 74bc7f5aa97b..fc24c11b9dc8 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationFilterOrBuilder.java @@ -12,8 +12,8 @@ public interface EducationFilterOrBuilder * * *
-   * Optional.
-   * The school name. For example "MIT", "University of California, Berkeley".
+   * Optional. The school name. For example "MIT", "University of California,
+   * Berkeley".
    * 
* * string school = 1; @@ -23,8 +23,8 @@ public interface EducationFilterOrBuilder * * *
-   * Optional.
-   * The school name. For example "MIT", "University of California, Berkeley".
+   * Optional. The school name. For example "MIT", "University of California,
+   * Berkeley".
    * 
* * string school = 1; @@ -35,8 +35,7 @@ public interface EducationFilterOrBuilder * * *
-   * Optional.
-   * The field of study. This is to search against value provided in
+   * Optional. The field of study. This is to search against value provided in
    * [Degree.fields_of_study][google.cloud.talent.v4beta1.Degree.fields_of_study].
    * For example "Computer Science", "Mathematics".
    * 
@@ -48,8 +47,7 @@ public interface EducationFilterOrBuilder * * *
-   * Optional.
-   * The field of study. This is to search against value provided in
+   * Optional. The field of study. This is to search against value provided in
    * [Degree.fields_of_study][google.cloud.talent.v4beta1.Degree.fields_of_study].
    * For example "Computer Science", "Mathematics".
    * 
@@ -62,10 +60,9 @@ public interface EducationFilterOrBuilder * * *
-   * Optional.
-   * Education degree in ISCED code. Each value in degree covers a specific
-   * level of education, without any expansion to upper nor lower levels of
-   * education degree.
+   * Optional. Education degree in ISCED code. Each value in degree covers a
+   * specific level of education, without any expansion to upper nor lower
+   * levels of education degree.
    * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 3; @@ -75,10 +72,9 @@ public interface EducationFilterOrBuilder * * *
-   * Optional.
-   * Education degree in ISCED code. Each value in degree covers a specific
-   * level of education, without any expansion to upper nor lower levels of
-   * education degree.
+   * Optional. Education degree in ISCED code. Each value in degree covers a
+   * specific level of education, without any expansion to upper nor lower
+   * levels of education degree.
    * 
* * .google.cloud.talent.v4beta1.DegreeType degree_type = 3; @@ -89,9 +85,8 @@ public interface EducationFilterOrBuilder * * *
-   * Optional.
-   * Whether to apply negation to the filter so profiles matching the filter
-   * is excluded.
+   * Optional. Whether to apply negation to the filter so profiles matching the
+   * filter is excluded.
    * 
* * bool negated = 6; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationRecord.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationRecord.java index beaae53b2b77..b1621bd2c521 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationRecord.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationRecord.java @@ -258,8 +258,7 @@ public DegreeCase getDegreeCase() { * * *
-   * Optional.
-   * The start date of the education.
+   * Optional. The start date of the education.
    * 
* * .google.type.Date start_date = 1; @@ -271,8 +270,7 @@ public boolean hasStartDate() { * * *
-   * Optional.
-   * The start date of the education.
+   * Optional. The start date of the education.
    * 
* * .google.type.Date start_date = 1; @@ -284,8 +282,7 @@ public com.google.type.Date getStartDate() { * * *
-   * Optional.
-   * The start date of the education.
+   * Optional. The start date of the education.
    * 
* * .google.type.Date start_date = 1; @@ -300,8 +297,7 @@ public com.google.type.DateOrBuilder getStartDateOrBuilder() { * * *
-   * Optional.
-   * The end date of the education.
+   * Optional. The end date of the education.
    * 
* * .google.type.Date end_date = 2; @@ -313,8 +309,7 @@ public boolean hasEndDate() { * * *
-   * Optional.
-   * The end date of the education.
+   * Optional. The end date of the education.
    * 
* * .google.type.Date end_date = 2; @@ -326,8 +321,7 @@ public com.google.type.Date getEndDate() { * * *
-   * Optional.
-   * The end date of the education.
+   * Optional. The end date of the education.
    * 
* * .google.type.Date end_date = 2; @@ -342,8 +336,7 @@ public com.google.type.DateOrBuilder getEndDateOrBuilder() { * * *
-   * Optional.
-   * The expected graduation date if currently pursuing a degree.
+   * Optional. The expected graduation date if currently pursuing a degree.
    * 
* * .google.type.Date expected_graduation_date = 3; @@ -355,8 +348,7 @@ public boolean hasExpectedGraduationDate() { * * *
-   * Optional.
-   * The expected graduation date if currently pursuing a degree.
+   * Optional. The expected graduation date if currently pursuing a degree.
    * 
* * .google.type.Date expected_graduation_date = 3; @@ -370,8 +362,7 @@ public com.google.type.Date getExpectedGraduationDate() { * * *
-   * Optional.
-   * The expected graduation date if currently pursuing a degree.
+   * Optional. The expected graduation date if currently pursuing a degree.
    * 
* * .google.type.Date expected_graduation_date = 3; @@ -386,8 +377,7 @@ public com.google.type.DateOrBuilder getExpectedGraduationDateOrBuilder() { * * *
-   * Optional.
-   * The name of the school or institution.
+   * Optional. The name of the school or institution.
    * For example, "Stanford University", "UC Berkeley", and so on.
    * Number of characters allowed is 100.
    * 
@@ -409,8 +399,7 @@ public java.lang.String getSchoolName() { * * *
-   * Optional.
-   * The name of the school or institution.
+   * Optional. The name of the school or institution.
    * For example, "Stanford University", "UC Berkeley", and so on.
    * Number of characters allowed is 100.
    * 
@@ -435,8 +424,7 @@ public com.google.protobuf.ByteString getSchoolNameBytes() { * * *
-   * Optional.
-   * The physical address of the education institution.
+   * Optional. The physical address of the education institution.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -448,8 +436,7 @@ public boolean hasAddress() { * * *
-   * Optional.
-   * The physical address of the education institution.
+   * Optional. The physical address of the education institution.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -463,8 +450,7 @@ public com.google.cloud.talent.v4beta1.Address getAddress() { * * *
-   * Optional.
-   * The physical address of the education institution.
+   * Optional. The physical address of the education institution.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -478,8 +464,7 @@ public com.google.cloud.talent.v4beta1.AddressOrBuilder getAddressOrBuilder() { * * *
-   * Optional.
-   * The full description of the degree.
+   * Optional. The full description of the degree.
    * For example, "Master of Science in Computer Science", "B.S in Math".
    * Number of characters allowed is 100.
    * 
@@ -506,8 +491,7 @@ public java.lang.String getDegreeDescription() { * * *
-   * Optional.
-   * The full description of the degree.
+   * Optional. The full description of the degree.
    * For example, "Master of Science in Computer Science", "B.S in Math".
    * Number of characters allowed is 100.
    * 
@@ -536,8 +520,7 @@ public com.google.protobuf.ByteString getDegreeDescriptionBytes() { * * *
-   * Optional.
-   * The structured notation of the degree.
+   * Optional. The structured notation of the degree.
    * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -549,8 +532,7 @@ public boolean hasStructuredDegree() { * * *
-   * Optional.
-   * The structured notation of the degree.
+   * Optional. The structured notation of the degree.
    * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -565,8 +547,7 @@ public com.google.cloud.talent.v4beta1.Degree getStructuredDegree() { * * *
-   * Optional.
-   * The structured notation of the degree.
+   * Optional. The structured notation of the degree.
    * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -584,8 +565,7 @@ public com.google.cloud.talent.v4beta1.DegreeOrBuilder getStructuredDegreeOrBuil * * *
-   * Optional.
-   * The description of the education.
+   * Optional. The description of the education.
    * Number of characters allowed is 100,000.
    * 
* @@ -606,8 +586,7 @@ public java.lang.String getDescription() { * * *
-   * Optional.
-   * The description of the education.
+   * Optional. The description of the education.
    * Number of characters allowed is 100,000.
    * 
* @@ -631,8 +610,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-   * Optional.
-   * If this education is current.
+   * Optional. If this education is current.
    * 
* * .google.protobuf.BoolValue is_current = 9; @@ -644,8 +622,7 @@ public boolean hasIsCurrent() { * * *
-   * Optional.
-   * If this education is current.
+   * Optional. If this education is current.
    * 
* * .google.protobuf.BoolValue is_current = 9; @@ -657,8 +634,7 @@ public com.google.protobuf.BoolValue getIsCurrent() { * * *
-   * Optional.
-   * If this education is current.
+   * Optional. If this education is current.
    * 
* * .google.protobuf.BoolValue is_current = 9; @@ -1365,8 +1341,7 @@ public Builder clearDegree() { * * *
-     * Optional.
-     * The start date of the education.
+     * Optional. The start date of the education.
      * 
* * .google.type.Date start_date = 1; @@ -1378,8 +1353,7 @@ public boolean hasStartDate() { * * *
-     * Optional.
-     * The start date of the education.
+     * Optional. The start date of the education.
      * 
* * .google.type.Date start_date = 1; @@ -1395,8 +1369,7 @@ public com.google.type.Date getStartDate() { * * *
-     * Optional.
-     * The start date of the education.
+     * Optional. The start date of the education.
      * 
* * .google.type.Date start_date = 1; @@ -1418,8 +1391,7 @@ public Builder setStartDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The start date of the education.
+     * Optional. The start date of the education.
      * 
* * .google.type.Date start_date = 1; @@ -1438,8 +1410,7 @@ public Builder setStartDate(com.google.type.Date.Builder builderForValue) { * * *
-     * Optional.
-     * The start date of the education.
+     * Optional. The start date of the education.
      * 
* * .google.type.Date start_date = 1; @@ -1462,8 +1433,7 @@ public Builder mergeStartDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The start date of the education.
+     * Optional. The start date of the education.
      * 
* * .google.type.Date start_date = 1; @@ -1483,8 +1453,7 @@ public Builder clearStartDate() { * * *
-     * Optional.
-     * The start date of the education.
+     * Optional. The start date of the education.
      * 
* * .google.type.Date start_date = 1; @@ -1498,8 +1467,7 @@ public com.google.type.Date.Builder getStartDateBuilder() { * * *
-     * Optional.
-     * The start date of the education.
+     * Optional. The start date of the education.
      * 
* * .google.type.Date start_date = 1; @@ -1515,8 +1483,7 @@ public com.google.type.DateOrBuilder getStartDateOrBuilder() { * * *
-     * Optional.
-     * The start date of the education.
+     * Optional. The start date of the education.
      * 
* * .google.type.Date start_date = 1; @@ -1542,8 +1509,7 @@ public com.google.type.DateOrBuilder getStartDateOrBuilder() { * * *
-     * Optional.
-     * The end date of the education.
+     * Optional. The end date of the education.
      * 
* * .google.type.Date end_date = 2; @@ -1555,8 +1521,7 @@ public boolean hasEndDate() { * * *
-     * Optional.
-     * The end date of the education.
+     * Optional. The end date of the education.
      * 
* * .google.type.Date end_date = 2; @@ -1572,8 +1537,7 @@ public com.google.type.Date getEndDate() { * * *
-     * Optional.
-     * The end date of the education.
+     * Optional. The end date of the education.
      * 
* * .google.type.Date end_date = 2; @@ -1595,8 +1559,7 @@ public Builder setEndDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The end date of the education.
+     * Optional. The end date of the education.
      * 
* * .google.type.Date end_date = 2; @@ -1615,8 +1578,7 @@ public Builder setEndDate(com.google.type.Date.Builder builderForValue) { * * *
-     * Optional.
-     * The end date of the education.
+     * Optional. The end date of the education.
      * 
* * .google.type.Date end_date = 2; @@ -1639,8 +1601,7 @@ public Builder mergeEndDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The end date of the education.
+     * Optional. The end date of the education.
      * 
* * .google.type.Date end_date = 2; @@ -1660,8 +1621,7 @@ public Builder clearEndDate() { * * *
-     * Optional.
-     * The end date of the education.
+     * Optional. The end date of the education.
      * 
* * .google.type.Date end_date = 2; @@ -1675,8 +1635,7 @@ public com.google.type.Date.Builder getEndDateBuilder() { * * *
-     * Optional.
-     * The end date of the education.
+     * Optional. The end date of the education.
      * 
* * .google.type.Date end_date = 2; @@ -1692,8 +1651,7 @@ public com.google.type.DateOrBuilder getEndDateOrBuilder() { * * *
-     * Optional.
-     * The end date of the education.
+     * Optional. The end date of the education.
      * 
* * .google.type.Date end_date = 2; @@ -1719,8 +1677,7 @@ public com.google.type.DateOrBuilder getEndDateOrBuilder() { * * *
-     * Optional.
-     * The expected graduation date if currently pursuing a degree.
+     * Optional. The expected graduation date if currently pursuing a degree.
      * 
* * .google.type.Date expected_graduation_date = 3; @@ -1732,8 +1689,7 @@ public boolean hasExpectedGraduationDate() { * * *
-     * Optional.
-     * The expected graduation date if currently pursuing a degree.
+     * Optional. The expected graduation date if currently pursuing a degree.
      * 
* * .google.type.Date expected_graduation_date = 3; @@ -1751,8 +1707,7 @@ public com.google.type.Date getExpectedGraduationDate() { * * *
-     * Optional.
-     * The expected graduation date if currently pursuing a degree.
+     * Optional. The expected graduation date if currently pursuing a degree.
      * 
* * .google.type.Date expected_graduation_date = 3; @@ -1774,8 +1729,7 @@ public Builder setExpectedGraduationDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The expected graduation date if currently pursuing a degree.
+     * Optional. The expected graduation date if currently pursuing a degree.
      * 
* * .google.type.Date expected_graduation_date = 3; @@ -1794,8 +1748,7 @@ public Builder setExpectedGraduationDate(com.google.type.Date.Builder builderFor * * *
-     * Optional.
-     * The expected graduation date if currently pursuing a degree.
+     * Optional. The expected graduation date if currently pursuing a degree.
      * 
* * .google.type.Date expected_graduation_date = 3; @@ -1821,8 +1774,7 @@ public Builder mergeExpectedGraduationDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The expected graduation date if currently pursuing a degree.
+     * Optional. The expected graduation date if currently pursuing a degree.
      * 
* * .google.type.Date expected_graduation_date = 3; @@ -1842,8 +1794,7 @@ public Builder clearExpectedGraduationDate() { * * *
-     * Optional.
-     * The expected graduation date if currently pursuing a degree.
+     * Optional. The expected graduation date if currently pursuing a degree.
      * 
* * .google.type.Date expected_graduation_date = 3; @@ -1857,8 +1808,7 @@ public com.google.type.Date.Builder getExpectedGraduationDateBuilder() { * * *
-     * Optional.
-     * The expected graduation date if currently pursuing a degree.
+     * Optional. The expected graduation date if currently pursuing a degree.
      * 
* * .google.type.Date expected_graduation_date = 3; @@ -1876,8 +1826,7 @@ public com.google.type.DateOrBuilder getExpectedGraduationDateOrBuilder() { * * *
-     * Optional.
-     * The expected graduation date if currently pursuing a degree.
+     * Optional. The expected graduation date if currently pursuing a degree.
      * 
* * .google.type.Date expected_graduation_date = 3; @@ -1900,8 +1849,7 @@ public com.google.type.DateOrBuilder getExpectedGraduationDateOrBuilder() { * * *
-     * Optional.
-     * The name of the school or institution.
+     * Optional. The name of the school or institution.
      * For example, "Stanford University", "UC Berkeley", and so on.
      * Number of characters allowed is 100.
      * 
@@ -1923,8 +1871,7 @@ public java.lang.String getSchoolName() { * * *
-     * Optional.
-     * The name of the school or institution.
+     * Optional. The name of the school or institution.
      * For example, "Stanford University", "UC Berkeley", and so on.
      * Number of characters allowed is 100.
      * 
@@ -1946,8 +1893,7 @@ public com.google.protobuf.ByteString getSchoolNameBytes() { * * *
-     * Optional.
-     * The name of the school or institution.
+     * Optional. The name of the school or institution.
      * For example, "Stanford University", "UC Berkeley", and so on.
      * Number of characters allowed is 100.
      * 
@@ -1967,8 +1913,7 @@ public Builder setSchoolName(java.lang.String value) { * * *
-     * Optional.
-     * The name of the school or institution.
+     * Optional. The name of the school or institution.
      * For example, "Stanford University", "UC Berkeley", and so on.
      * Number of characters allowed is 100.
      * 
@@ -1985,8 +1930,7 @@ public Builder clearSchoolName() { * * *
-     * Optional.
-     * The name of the school or institution.
+     * Optional. The name of the school or institution.
      * For example, "Stanford University", "UC Berkeley", and so on.
      * Number of characters allowed is 100.
      * 
@@ -2014,8 +1958,7 @@ public Builder setSchoolNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The physical address of the education institution.
+     * Optional. The physical address of the education institution.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2027,8 +1970,7 @@ public boolean hasAddress() { * * *
-     * Optional.
-     * The physical address of the education institution.
+     * Optional. The physical address of the education institution.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2046,8 +1988,7 @@ public com.google.cloud.talent.v4beta1.Address getAddress() { * * *
-     * Optional.
-     * The physical address of the education institution.
+     * Optional. The physical address of the education institution.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2069,8 +2010,7 @@ public Builder setAddress(com.google.cloud.talent.v4beta1.Address value) { * * *
-     * Optional.
-     * The physical address of the education institution.
+     * Optional. The physical address of the education institution.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2089,8 +2029,7 @@ public Builder setAddress(com.google.cloud.talent.v4beta1.Address.Builder builde * * *
-     * Optional.
-     * The physical address of the education institution.
+     * Optional. The physical address of the education institution.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2116,8 +2055,7 @@ public Builder mergeAddress(com.google.cloud.talent.v4beta1.Address value) { * * *
-     * Optional.
-     * The physical address of the education institution.
+     * Optional. The physical address of the education institution.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2137,8 +2075,7 @@ public Builder clearAddress() { * * *
-     * Optional.
-     * The physical address of the education institution.
+     * Optional. The physical address of the education institution.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2152,8 +2089,7 @@ public com.google.cloud.talent.v4beta1.Address.Builder getAddressBuilder() { * * *
-     * Optional.
-     * The physical address of the education institution.
+     * Optional. The physical address of the education institution.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2171,8 +2107,7 @@ public com.google.cloud.talent.v4beta1.AddressOrBuilder getAddressOrBuilder() { * * *
-     * Optional.
-     * The physical address of the education institution.
+     * Optional. The physical address of the education institution.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2198,8 +2133,7 @@ public com.google.cloud.talent.v4beta1.AddressOrBuilder getAddressOrBuilder() { * * *
-     * Optional.
-     * The full description of the degree.
+     * Optional. The full description of the degree.
      * For example, "Master of Science in Computer Science", "B.S in Math".
      * Number of characters allowed is 100.
      * 
@@ -2226,8 +2160,7 @@ public java.lang.String getDegreeDescription() { * * *
-     * Optional.
-     * The full description of the degree.
+     * Optional. The full description of the degree.
      * For example, "Master of Science in Computer Science", "B.S in Math".
      * Number of characters allowed is 100.
      * 
@@ -2254,8 +2187,7 @@ public com.google.protobuf.ByteString getDegreeDescriptionBytes() { * * *
-     * Optional.
-     * The full description of the degree.
+     * Optional. The full description of the degree.
      * For example, "Master of Science in Computer Science", "B.S in Math".
      * Number of characters allowed is 100.
      * 
@@ -2275,8 +2207,7 @@ public Builder setDegreeDescription(java.lang.String value) { * * *
-     * Optional.
-     * The full description of the degree.
+     * Optional. The full description of the degree.
      * For example, "Master of Science in Computer Science", "B.S in Math".
      * Number of characters allowed is 100.
      * 
@@ -2295,8 +2226,7 @@ public Builder clearDegreeDescription() { * * *
-     * Optional.
-     * The full description of the degree.
+     * Optional. The full description of the degree.
      * For example, "Master of Science in Computer Science", "B.S in Math".
      * Number of characters allowed is 100.
      * 
@@ -2323,8 +2253,7 @@ public Builder setDegreeDescriptionBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The structured notation of the degree.
+     * Optional. The structured notation of the degree.
      * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -2336,8 +2265,7 @@ public boolean hasStructuredDegree() { * * *
-     * Optional.
-     * The structured notation of the degree.
+     * Optional. The structured notation of the degree.
      * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -2359,8 +2287,7 @@ public com.google.cloud.talent.v4beta1.Degree getStructuredDegree() { * * *
-     * Optional.
-     * The structured notation of the degree.
+     * Optional. The structured notation of the degree.
      * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -2382,8 +2309,7 @@ public Builder setStructuredDegree(com.google.cloud.talent.v4beta1.Degree value) * * *
-     * Optional.
-     * The structured notation of the degree.
+     * Optional. The structured notation of the degree.
      * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -2403,8 +2329,7 @@ public Builder setStructuredDegree( * * *
-     * Optional.
-     * The structured notation of the degree.
+     * Optional. The structured notation of the degree.
      * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -2435,8 +2360,7 @@ public Builder mergeStructuredDegree(com.google.cloud.talent.v4beta1.Degree valu * * *
-     * Optional.
-     * The structured notation of the degree.
+     * Optional. The structured notation of the degree.
      * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -2461,8 +2385,7 @@ public Builder clearStructuredDegree() { * * *
-     * Optional.
-     * The structured notation of the degree.
+     * Optional. The structured notation of the degree.
      * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -2474,8 +2397,7 @@ public com.google.cloud.talent.v4beta1.Degree.Builder getStructuredDegreeBuilder * * *
-     * Optional.
-     * The structured notation of the degree.
+     * Optional. The structured notation of the degree.
      * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -2494,8 +2416,7 @@ public com.google.cloud.talent.v4beta1.DegreeOrBuilder getStructuredDegreeOrBuil * * *
-     * Optional.
-     * The structured notation of the degree.
+     * Optional. The structured notation of the degree.
      * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -2530,8 +2451,7 @@ public com.google.cloud.talent.v4beta1.DegreeOrBuilder getStructuredDegreeOrBuil * * *
-     * Optional.
-     * The description of the education.
+     * Optional. The description of the education.
      * Number of characters allowed is 100,000.
      * 
* @@ -2552,8 +2472,7 @@ public java.lang.String getDescription() { * * *
-     * Optional.
-     * The description of the education.
+     * Optional. The description of the education.
      * Number of characters allowed is 100,000.
      * 
* @@ -2574,8 +2493,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-     * Optional.
-     * The description of the education.
+     * Optional. The description of the education.
      * Number of characters allowed is 100,000.
      * 
* @@ -2594,8 +2512,7 @@ public Builder setDescription(java.lang.String value) { * * *
-     * Optional.
-     * The description of the education.
+     * Optional. The description of the education.
      * Number of characters allowed is 100,000.
      * 
* @@ -2611,8 +2528,7 @@ public Builder clearDescription() { * * *
-     * Optional.
-     * The description of the education.
+     * Optional. The description of the education.
      * Number of characters allowed is 100,000.
      * 
* @@ -2639,8 +2555,7 @@ public Builder setDescriptionBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * If this education is current.
+     * Optional. If this education is current.
      * 
* * .google.protobuf.BoolValue is_current = 9; @@ -2652,8 +2567,7 @@ public boolean hasIsCurrent() { * * *
-     * Optional.
-     * If this education is current.
+     * Optional. If this education is current.
      * 
* * .google.protobuf.BoolValue is_current = 9; @@ -2669,8 +2583,7 @@ public com.google.protobuf.BoolValue getIsCurrent() { * * *
-     * Optional.
-     * If this education is current.
+     * Optional. If this education is current.
      * 
* * .google.protobuf.BoolValue is_current = 9; @@ -2692,8 +2605,7 @@ public Builder setIsCurrent(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * If this education is current.
+     * Optional. If this education is current.
      * 
* * .google.protobuf.BoolValue is_current = 9; @@ -2712,8 +2624,7 @@ public Builder setIsCurrent(com.google.protobuf.BoolValue.Builder builderForValu * * *
-     * Optional.
-     * If this education is current.
+     * Optional. If this education is current.
      * 
* * .google.protobuf.BoolValue is_current = 9; @@ -2737,8 +2648,7 @@ public Builder mergeIsCurrent(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * If this education is current.
+     * Optional. If this education is current.
      * 
* * .google.protobuf.BoolValue is_current = 9; @@ -2758,8 +2668,7 @@ public Builder clearIsCurrent() { * * *
-     * Optional.
-     * If this education is current.
+     * Optional. If this education is current.
      * 
* * .google.protobuf.BoolValue is_current = 9; @@ -2773,8 +2682,7 @@ public com.google.protobuf.BoolValue.Builder getIsCurrentBuilder() { * * *
-     * Optional.
-     * If this education is current.
+     * Optional. If this education is current.
      * 
* * .google.protobuf.BoolValue is_current = 9; @@ -2790,8 +2698,7 @@ public com.google.protobuf.BoolValueOrBuilder getIsCurrentOrBuilder() { * * *
-     * Optional.
-     * If this education is current.
+     * Optional. If this education is current.
      * 
* * .google.protobuf.BoolValue is_current = 9; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationRecordOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationRecordOrBuilder.java index c19e4791afeb..6b4584ae9c72 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationRecordOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EducationRecordOrBuilder.java @@ -12,8 +12,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The start date of the education.
+   * Optional. The start date of the education.
    * 
* * .google.type.Date start_date = 1; @@ -23,8 +22,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The start date of the education.
+   * Optional. The start date of the education.
    * 
* * .google.type.Date start_date = 1; @@ -34,8 +32,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The start date of the education.
+   * Optional. The start date of the education.
    * 
* * .google.type.Date start_date = 1; @@ -46,8 +43,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The end date of the education.
+   * Optional. The end date of the education.
    * 
* * .google.type.Date end_date = 2; @@ -57,8 +53,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The end date of the education.
+   * Optional. The end date of the education.
    * 
* * .google.type.Date end_date = 2; @@ -68,8 +63,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The end date of the education.
+   * Optional. The end date of the education.
    * 
* * .google.type.Date end_date = 2; @@ -80,8 +74,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The expected graduation date if currently pursuing a degree.
+   * Optional. The expected graduation date if currently pursuing a degree.
    * 
* * .google.type.Date expected_graduation_date = 3; @@ -91,8 +84,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The expected graduation date if currently pursuing a degree.
+   * Optional. The expected graduation date if currently pursuing a degree.
    * 
* * .google.type.Date expected_graduation_date = 3; @@ -102,8 +94,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The expected graduation date if currently pursuing a degree.
+   * Optional. The expected graduation date if currently pursuing a degree.
    * 
* * .google.type.Date expected_graduation_date = 3; @@ -114,8 +105,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The name of the school or institution.
+   * Optional. The name of the school or institution.
    * For example, "Stanford University", "UC Berkeley", and so on.
    * Number of characters allowed is 100.
    * 
@@ -127,8 +117,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The name of the school or institution.
+   * Optional. The name of the school or institution.
    * For example, "Stanford University", "UC Berkeley", and so on.
    * Number of characters allowed is 100.
    * 
@@ -141,8 +130,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The physical address of the education institution.
+   * Optional. The physical address of the education institution.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -152,8 +140,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The physical address of the education institution.
+   * Optional. The physical address of the education institution.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -163,8 +150,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The physical address of the education institution.
+   * Optional. The physical address of the education institution.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -175,8 +161,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The full description of the degree.
+   * Optional. The full description of the degree.
    * For example, "Master of Science in Computer Science", "B.S in Math".
    * Number of characters allowed is 100.
    * 
@@ -188,8 +173,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The full description of the degree.
+   * Optional. The full description of the degree.
    * For example, "Master of Science in Computer Science", "B.S in Math".
    * Number of characters allowed is 100.
    * 
@@ -202,8 +186,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The structured notation of the degree.
+   * Optional. The structured notation of the degree.
    * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -213,8 +196,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The structured notation of the degree.
+   * Optional. The structured notation of the degree.
    * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -224,8 +206,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The structured notation of the degree.
+   * Optional. The structured notation of the degree.
    * 
* * .google.cloud.talent.v4beta1.Degree structured_degree = 7; @@ -236,8 +217,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The description of the education.
+   * Optional. The description of the education.
    * Number of characters allowed is 100,000.
    * 
* @@ -248,8 +228,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * The description of the education.
+   * Optional. The description of the education.
    * Number of characters allowed is 100,000.
    * 
* @@ -261,8 +240,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * If this education is current.
+   * Optional. If this education is current.
    * 
* * .google.protobuf.BoolValue is_current = 9; @@ -272,8 +250,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * If this education is current.
+   * Optional. If this education is current.
    * 
* * .google.protobuf.BoolValue is_current = 9; @@ -283,8 +260,7 @@ public interface EducationRecordOrBuilder * * *
-   * Optional.
-   * If this education is current.
+   * Optional. If this education is current.
    * 
* * .google.protobuf.BoolValue is_current = 9; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Email.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Email.java index 1f36c1979b3d..1aa3566fc238 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Email.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Email.java @@ -105,8 +105,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * The usage of the email address. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the email address. For example, SCHOOL, WORK,
+   * PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -118,8 +118,8 @@ public int getUsageValue() { * * *
-   * Optional.
-   * The usage of the email address. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the email address. For example, SCHOOL, WORK,
+   * PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -137,8 +137,7 @@ public com.google.cloud.talent.v4beta1.ContactInfoUsage getUsage() { * * *
-   * Optional.
-   * Email address.
+   * Optional. Email address.
    * Number of characters allowed is 4,000.
    * 
* @@ -159,8 +158,7 @@ public java.lang.String getEmailAddress() { * * *
-   * Optional.
-   * Email address.
+   * Optional. Email address.
    * Number of characters allowed is 4,000.
    * 
* @@ -516,8 +514,8 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * The usage of the email address. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the email address. For example, SCHOOL, WORK,
+     * PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -529,8 +527,8 @@ public int getUsageValue() { * * *
-     * Optional.
-     * The usage of the email address. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the email address. For example, SCHOOL, WORK,
+     * PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -544,8 +542,8 @@ public Builder setUsageValue(int value) { * * *
-     * Optional.
-     * The usage of the email address. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the email address. For example, SCHOOL, WORK,
+     * PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -562,8 +560,8 @@ public com.google.cloud.talent.v4beta1.ContactInfoUsage getUsage() { * * *
-     * Optional.
-     * The usage of the email address. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the email address. For example, SCHOOL, WORK,
+     * PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -581,8 +579,8 @@ public Builder setUsage(com.google.cloud.talent.v4beta1.ContactInfoUsage value) * * *
-     * Optional.
-     * The usage of the email address. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the email address. For example, SCHOOL, WORK,
+     * PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -599,8 +597,7 @@ public Builder clearUsage() { * * *
-     * Optional.
-     * Email address.
+     * Optional. Email address.
      * Number of characters allowed is 4,000.
      * 
* @@ -621,8 +618,7 @@ public java.lang.String getEmailAddress() { * * *
-     * Optional.
-     * Email address.
+     * Optional. Email address.
      * Number of characters allowed is 4,000.
      * 
* @@ -643,8 +639,7 @@ public com.google.protobuf.ByteString getEmailAddressBytes() { * * *
-     * Optional.
-     * Email address.
+     * Optional. Email address.
      * Number of characters allowed is 4,000.
      * 
* @@ -663,8 +658,7 @@ public Builder setEmailAddress(java.lang.String value) { * * *
-     * Optional.
-     * Email address.
+     * Optional. Email address.
      * Number of characters allowed is 4,000.
      * 
* @@ -680,8 +674,7 @@ public Builder clearEmailAddress() { * * *
-     * Optional.
-     * Email address.
+     * Optional. Email address.
      * Number of characters allowed is 4,000.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmailOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmailOrBuilder.java index 0a978ab2843e..fef404c3aa91 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmailOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmailOrBuilder.java @@ -12,8 +12,8 @@ public interface EmailOrBuilder * * *
-   * Optional.
-   * The usage of the email address. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the email address. For example, SCHOOL, WORK,
+   * PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -23,8 +23,8 @@ public interface EmailOrBuilder * * *
-   * Optional.
-   * The usage of the email address. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the email address. For example, SCHOOL, WORK,
+   * PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -35,8 +35,7 @@ public interface EmailOrBuilder * * *
-   * Optional.
-   * Email address.
+   * Optional. Email address.
    * Number of characters allowed is 4,000.
    * 
* @@ -47,8 +46,7 @@ public interface EmailOrBuilder * * *
-   * Optional.
-   * Email address.
+   * Optional. Email address.
    * Number of characters allowed is 4,000.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmployerFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmployerFilter.java index 2e327abfc3a6..647a3a830079 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmployerFilter.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmployerFilter.java @@ -289,8 +289,7 @@ private EmployerFilterMode(int value) { * * *
-   * Required.
-   * The name of the employer, for example "Google", "Alphabet".
+   * Required. The name of the employer, for example "Google", "Alphabet".
    * 
* * string employer = 1; @@ -310,8 +309,7 @@ public java.lang.String getEmployer() { * * *
-   * Required.
-   * The name of the employer, for example "Google", "Alphabet".
+   * Required. The name of the employer, for example "Google", "Alphabet".
    * 
* * string employer = 1; @@ -334,8 +332,7 @@ public com.google.protobuf.ByteString getEmployerBytes() { * * *
-   * Optional.
-   * Define set of
+   * Optional. Define set of
    * [EmploymentRecord][google.cloud.talent.v4beta1.EmploymentRecord]s to search
    * against.
    * Defaults to
@@ -351,8 +348,7 @@ public int getModeValue() {
    *
    *
    * 
-   * Optional.
-   * Define set of
+   * Optional. Define set of
    * [EmploymentRecord][google.cloud.talent.v4beta1.EmploymentRecord]s to search
    * against.
    * Defaults to
@@ -376,9 +372,8 @@ public com.google.cloud.talent.v4beta1.EmployerFilter.EmployerFilterMode getMode
    *
    *
    * 
-   * Optional.
-   * Whether to apply negation to the filter so profiles matching the filter
-   * is excluded.
+   * Optional. Whether to apply negation to the filter so profiles matching the
+   * filter is excluded.
    * 
* * bool negated = 3; @@ -745,8 +740,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The name of the employer, for example "Google", "Alphabet".
+     * Required. The name of the employer, for example "Google", "Alphabet".
      * 
* * string employer = 1; @@ -766,8 +760,7 @@ public java.lang.String getEmployer() { * * *
-     * Required.
-     * The name of the employer, for example "Google", "Alphabet".
+     * Required. The name of the employer, for example "Google", "Alphabet".
      * 
* * string employer = 1; @@ -787,8 +780,7 @@ public com.google.protobuf.ByteString getEmployerBytes() { * * *
-     * Required.
-     * The name of the employer, for example "Google", "Alphabet".
+     * Required. The name of the employer, for example "Google", "Alphabet".
      * 
* * string employer = 1; @@ -806,8 +798,7 @@ public Builder setEmployer(java.lang.String value) { * * *
-     * Required.
-     * The name of the employer, for example "Google", "Alphabet".
+     * Required. The name of the employer, for example "Google", "Alphabet".
      * 
* * string employer = 1; @@ -822,8 +813,7 @@ public Builder clearEmployer() { * * *
-     * Required.
-     * The name of the employer, for example "Google", "Alphabet".
+     * Required. The name of the employer, for example "Google", "Alphabet".
      * 
* * string employer = 1; @@ -844,8 +834,7 @@ public Builder setEmployerBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Define set of
+     * Optional. Define set of
      * [EmploymentRecord][google.cloud.talent.v4beta1.EmploymentRecord]s to search
      * against.
      * Defaults to
@@ -861,8 +850,7 @@ public int getModeValue() {
      *
      *
      * 
-     * Optional.
-     * Define set of
+     * Optional. Define set of
      * [EmploymentRecord][google.cloud.talent.v4beta1.EmploymentRecord]s to search
      * against.
      * Defaults to
@@ -880,8 +868,7 @@ public Builder setModeValue(int value) {
      *
      *
      * 
-     * Optional.
-     * Define set of
+     * Optional. Define set of
      * [EmploymentRecord][google.cloud.talent.v4beta1.EmploymentRecord]s to search
      * against.
      * Defaults to
@@ -902,8 +889,7 @@ public com.google.cloud.talent.v4beta1.EmployerFilter.EmployerFilterMode getMode
      *
      *
      * 
-     * Optional.
-     * Define set of
+     * Optional. Define set of
      * [EmploymentRecord][google.cloud.talent.v4beta1.EmploymentRecord]s to search
      * against.
      * Defaults to
@@ -926,8 +912,7 @@ public Builder setMode(
      *
      *
      * 
-     * Optional.
-     * Define set of
+     * Optional. Define set of
      * [EmploymentRecord][google.cloud.talent.v4beta1.EmploymentRecord]s to search
      * against.
      * Defaults to
@@ -948,9 +933,8 @@ public Builder clearMode() {
      *
      *
      * 
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * is excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter is excluded.
      * 
* * bool negated = 3; @@ -962,9 +946,8 @@ public boolean getNegated() { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * is excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter is excluded.
      * 
* * bool negated = 3; @@ -979,9 +962,8 @@ public Builder setNegated(boolean value) { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * is excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter is excluded.
      * 
* * bool negated = 3; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmployerFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmployerFilterOrBuilder.java index 4401704a75af..7c71232020ca 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmployerFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmployerFilterOrBuilder.java @@ -12,8 +12,7 @@ public interface EmployerFilterOrBuilder * * *
-   * Required.
-   * The name of the employer, for example "Google", "Alphabet".
+   * Required. The name of the employer, for example "Google", "Alphabet".
    * 
* * string employer = 1; @@ -23,8 +22,7 @@ public interface EmployerFilterOrBuilder * * *
-   * Required.
-   * The name of the employer, for example "Google", "Alphabet".
+   * Required. The name of the employer, for example "Google", "Alphabet".
    * 
* * string employer = 1; @@ -35,8 +33,7 @@ public interface EmployerFilterOrBuilder * * *
-   * Optional.
-   * Define set of
+   * Optional. Define set of
    * [EmploymentRecord][google.cloud.talent.v4beta1.EmploymentRecord]s to search
    * against.
    * Defaults to
@@ -50,8 +47,7 @@ public interface EmployerFilterOrBuilder
    *
    *
    * 
-   * Optional.
-   * Define set of
+   * Optional. Define set of
    * [EmploymentRecord][google.cloud.talent.v4beta1.EmploymentRecord]s to search
    * against.
    * Defaults to
@@ -66,9 +62,8 @@ public interface EmployerFilterOrBuilder
    *
    *
    * 
-   * Optional.
-   * Whether to apply negation to the filter so profiles matching the filter
-   * is excluded.
+   * Optional. Whether to apply negation to the filter so profiles matching the
+   * filter is excluded.
    * 
* * bool negated = 3; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmploymentRecord.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmploymentRecord.java index e7b95a0618e0..41ae095fb81e 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmploymentRecord.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmploymentRecord.java @@ -234,8 +234,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * Start date of the employment.
+   * Optional. Start date of the employment.
    * 
* * .google.type.Date start_date = 1; @@ -247,8 +246,7 @@ public boolean hasStartDate() { * * *
-   * Optional.
-   * Start date of the employment.
+   * Optional. Start date of the employment.
    * 
* * .google.type.Date start_date = 1; @@ -260,8 +258,7 @@ public com.google.type.Date getStartDate() { * * *
-   * Optional.
-   * Start date of the employment.
+   * Optional. Start date of the employment.
    * 
* * .google.type.Date start_date = 1; @@ -276,8 +273,7 @@ public com.google.type.DateOrBuilder getStartDateOrBuilder() { * * *
-   * Optional.
-   * End date of the employment.
+   * Optional. End date of the employment.
    * 
* * .google.type.Date end_date = 2; @@ -289,8 +285,7 @@ public boolean hasEndDate() { * * *
-   * Optional.
-   * End date of the employment.
+   * Optional. End date of the employment.
    * 
* * .google.type.Date end_date = 2; @@ -302,8 +297,7 @@ public com.google.type.Date getEndDate() { * * *
-   * Optional.
-   * End date of the employment.
+   * Optional. End date of the employment.
    * 
* * .google.type.Date end_date = 2; @@ -318,8 +312,7 @@ public com.google.type.DateOrBuilder getEndDateOrBuilder() { * * *
-   * Optional.
-   * The name of the employer company/organization.
+   * Optional. The name of the employer company/organization.
    * For example, "Google", "Alphabet", and so on.
    * Number of characters allowed is 100.
    * 
@@ -341,8 +334,7 @@ public java.lang.String getEmployerName() { * * *
-   * Optional.
-   * The name of the employer company/organization.
+   * Optional. The name of the employer company/organization.
    * For example, "Google", "Alphabet", and so on.
    * Number of characters allowed is 100.
    * 
@@ -367,8 +359,7 @@ public com.google.protobuf.ByteString getEmployerNameBytes() { * * *
-   * Optional.
-   * The division name of the employment.
+   * Optional. The division name of the employment.
    * For example, division, department, client, and so on.
    * Number of characters allowed is 100.
    * 
@@ -390,8 +381,7 @@ public java.lang.String getDivisionName() { * * *
-   * Optional.
-   * The division name of the employment.
+   * Optional. The division name of the employment.
    * For example, division, department, client, and so on.
    * Number of characters allowed is 100.
    * 
@@ -416,8 +406,7 @@ public com.google.protobuf.ByteString getDivisionNameBytes() { * * *
-   * Optional.
-   * The physical address of the employer.
+   * Optional. The physical address of the employer.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -429,8 +418,7 @@ public boolean hasAddress() { * * *
-   * Optional.
-   * The physical address of the employer.
+   * Optional. The physical address of the employer.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -444,8 +432,7 @@ public com.google.cloud.talent.v4beta1.Address getAddress() { * * *
-   * Optional.
-   * The physical address of the employer.
+   * Optional. The physical address of the employer.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -460,8 +447,7 @@ public com.google.cloud.talent.v4beta1.AddressOrBuilder getAddressOrBuilder() { * * *
-   * Optional.
-   * The job title of the employment.
+   * Optional. The job title of the employment.
    * For example, "Software Engineer", "Data Scientist", and so on.
    * Number of characters allowed is 100.
    * 
@@ -483,8 +469,7 @@ public java.lang.String getJobTitle() { * * *
-   * Optional.
-   * The job title of the employment.
+   * Optional. The job title of the employment.
    * For example, "Software Engineer", "Data Scientist", and so on.
    * Number of characters allowed is 100.
    * 
@@ -509,8 +494,7 @@ public com.google.protobuf.ByteString getJobTitleBytes() { * * *
-   * Optional.
-   * The description of job content.
+   * Optional. The description of job content.
    * Number of characters allowed is 100,000.
    * 
* @@ -531,8 +515,7 @@ public java.lang.String getJobDescription() { * * *
-   * Optional.
-   * The description of job content.
+   * Optional. The description of job content.
    * Number of characters allowed is 100,000.
    * 
* @@ -556,8 +539,7 @@ public com.google.protobuf.ByteString getJobDescriptionBytes() { * * *
-   * Optional.
-   * If the jobs is a supervisor position.
+   * Optional. If the jobs is a supervisor position.
    * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -569,8 +551,7 @@ public boolean hasIsSupervisor() { * * *
-   * Optional.
-   * If the jobs is a supervisor position.
+   * Optional. If the jobs is a supervisor position.
    * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -584,8 +565,7 @@ public com.google.protobuf.BoolValue getIsSupervisor() { * * *
-   * Optional.
-   * If the jobs is a supervisor position.
+   * Optional. If the jobs is a supervisor position.
    * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -600,8 +580,7 @@ public com.google.protobuf.BoolValueOrBuilder getIsSupervisorOrBuilder() { * * *
-   * Optional.
-   * If this employment is self-employed.
+   * Optional. If this employment is self-employed.
    * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -613,8 +592,7 @@ public boolean hasIsSelfEmployed() { * * *
-   * Optional.
-   * If this employment is self-employed.
+   * Optional. If this employment is self-employed.
    * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -628,8 +606,7 @@ public com.google.protobuf.BoolValue getIsSelfEmployed() { * * *
-   * Optional.
-   * If this employment is self-employed.
+   * Optional. If this employment is self-employed.
    * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -644,8 +621,7 @@ public com.google.protobuf.BoolValueOrBuilder getIsSelfEmployedOrBuilder() { * * *
-   * Optional.
-   * If this employment is current.
+   * Optional. If this employment is current.
    * 
* * .google.protobuf.BoolValue is_current = 10; @@ -657,8 +633,7 @@ public boolean hasIsCurrent() { * * *
-   * Optional.
-   * If this employment is current.
+   * Optional. If this employment is current.
    * 
* * .google.protobuf.BoolValue is_current = 10; @@ -670,8 +645,7 @@ public com.google.protobuf.BoolValue getIsCurrent() { * * *
-   * Optional.
-   * If this employment is current.
+   * Optional. If this employment is current.
    * 
* * .google.protobuf.BoolValue is_current = 10; @@ -1422,8 +1396,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * Start date of the employment.
+     * Optional. Start date of the employment.
      * 
* * .google.type.Date start_date = 1; @@ -1435,8 +1408,7 @@ public boolean hasStartDate() { * * *
-     * Optional.
-     * Start date of the employment.
+     * Optional. Start date of the employment.
      * 
* * .google.type.Date start_date = 1; @@ -1452,8 +1424,7 @@ public com.google.type.Date getStartDate() { * * *
-     * Optional.
-     * Start date of the employment.
+     * Optional. Start date of the employment.
      * 
* * .google.type.Date start_date = 1; @@ -1475,8 +1446,7 @@ public Builder setStartDate(com.google.type.Date value) { * * *
-     * Optional.
-     * Start date of the employment.
+     * Optional. Start date of the employment.
      * 
* * .google.type.Date start_date = 1; @@ -1495,8 +1465,7 @@ public Builder setStartDate(com.google.type.Date.Builder builderForValue) { * * *
-     * Optional.
-     * Start date of the employment.
+     * Optional. Start date of the employment.
      * 
* * .google.type.Date start_date = 1; @@ -1519,8 +1488,7 @@ public Builder mergeStartDate(com.google.type.Date value) { * * *
-     * Optional.
-     * Start date of the employment.
+     * Optional. Start date of the employment.
      * 
* * .google.type.Date start_date = 1; @@ -1540,8 +1508,7 @@ public Builder clearStartDate() { * * *
-     * Optional.
-     * Start date of the employment.
+     * Optional. Start date of the employment.
      * 
* * .google.type.Date start_date = 1; @@ -1555,8 +1522,7 @@ public com.google.type.Date.Builder getStartDateBuilder() { * * *
-     * Optional.
-     * Start date of the employment.
+     * Optional. Start date of the employment.
      * 
* * .google.type.Date start_date = 1; @@ -1572,8 +1538,7 @@ public com.google.type.DateOrBuilder getStartDateOrBuilder() { * * *
-     * Optional.
-     * Start date of the employment.
+     * Optional. Start date of the employment.
      * 
* * .google.type.Date start_date = 1; @@ -1599,8 +1564,7 @@ public com.google.type.DateOrBuilder getStartDateOrBuilder() { * * *
-     * Optional.
-     * End date of the employment.
+     * Optional. End date of the employment.
      * 
* * .google.type.Date end_date = 2; @@ -1612,8 +1576,7 @@ public boolean hasEndDate() { * * *
-     * Optional.
-     * End date of the employment.
+     * Optional. End date of the employment.
      * 
* * .google.type.Date end_date = 2; @@ -1629,8 +1592,7 @@ public com.google.type.Date getEndDate() { * * *
-     * Optional.
-     * End date of the employment.
+     * Optional. End date of the employment.
      * 
* * .google.type.Date end_date = 2; @@ -1652,8 +1614,7 @@ public Builder setEndDate(com.google.type.Date value) { * * *
-     * Optional.
-     * End date of the employment.
+     * Optional. End date of the employment.
      * 
* * .google.type.Date end_date = 2; @@ -1672,8 +1633,7 @@ public Builder setEndDate(com.google.type.Date.Builder builderForValue) { * * *
-     * Optional.
-     * End date of the employment.
+     * Optional. End date of the employment.
      * 
* * .google.type.Date end_date = 2; @@ -1696,8 +1656,7 @@ public Builder mergeEndDate(com.google.type.Date value) { * * *
-     * Optional.
-     * End date of the employment.
+     * Optional. End date of the employment.
      * 
* * .google.type.Date end_date = 2; @@ -1717,8 +1676,7 @@ public Builder clearEndDate() { * * *
-     * Optional.
-     * End date of the employment.
+     * Optional. End date of the employment.
      * 
* * .google.type.Date end_date = 2; @@ -1732,8 +1690,7 @@ public com.google.type.Date.Builder getEndDateBuilder() { * * *
-     * Optional.
-     * End date of the employment.
+     * Optional. End date of the employment.
      * 
* * .google.type.Date end_date = 2; @@ -1749,8 +1706,7 @@ public com.google.type.DateOrBuilder getEndDateOrBuilder() { * * *
-     * Optional.
-     * End date of the employment.
+     * Optional. End date of the employment.
      * 
* * .google.type.Date end_date = 2; @@ -1773,8 +1729,7 @@ public com.google.type.DateOrBuilder getEndDateOrBuilder() { * * *
-     * Optional.
-     * The name of the employer company/organization.
+     * Optional. The name of the employer company/organization.
      * For example, "Google", "Alphabet", and so on.
      * Number of characters allowed is 100.
      * 
@@ -1796,8 +1751,7 @@ public java.lang.String getEmployerName() { * * *
-     * Optional.
-     * The name of the employer company/organization.
+     * Optional. The name of the employer company/organization.
      * For example, "Google", "Alphabet", and so on.
      * Number of characters allowed is 100.
      * 
@@ -1819,8 +1773,7 @@ public com.google.protobuf.ByteString getEmployerNameBytes() { * * *
-     * Optional.
-     * The name of the employer company/organization.
+     * Optional. The name of the employer company/organization.
      * For example, "Google", "Alphabet", and so on.
      * Number of characters allowed is 100.
      * 
@@ -1840,8 +1793,7 @@ public Builder setEmployerName(java.lang.String value) { * * *
-     * Optional.
-     * The name of the employer company/organization.
+     * Optional. The name of the employer company/organization.
      * For example, "Google", "Alphabet", and so on.
      * Number of characters allowed is 100.
      * 
@@ -1858,8 +1810,7 @@ public Builder clearEmployerName() { * * *
-     * Optional.
-     * The name of the employer company/organization.
+     * Optional. The name of the employer company/organization.
      * For example, "Google", "Alphabet", and so on.
      * Number of characters allowed is 100.
      * 
@@ -1882,8 +1833,7 @@ public Builder setEmployerNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The division name of the employment.
+     * Optional. The division name of the employment.
      * For example, division, department, client, and so on.
      * Number of characters allowed is 100.
      * 
@@ -1905,8 +1855,7 @@ public java.lang.String getDivisionName() { * * *
-     * Optional.
-     * The division name of the employment.
+     * Optional. The division name of the employment.
      * For example, division, department, client, and so on.
      * Number of characters allowed is 100.
      * 
@@ -1928,8 +1877,7 @@ public com.google.protobuf.ByteString getDivisionNameBytes() { * * *
-     * Optional.
-     * The division name of the employment.
+     * Optional. The division name of the employment.
      * For example, division, department, client, and so on.
      * Number of characters allowed is 100.
      * 
@@ -1949,8 +1897,7 @@ public Builder setDivisionName(java.lang.String value) { * * *
-     * Optional.
-     * The division name of the employment.
+     * Optional. The division name of the employment.
      * For example, division, department, client, and so on.
      * Number of characters allowed is 100.
      * 
@@ -1967,8 +1914,7 @@ public Builder clearDivisionName() { * * *
-     * Optional.
-     * The division name of the employment.
+     * Optional. The division name of the employment.
      * For example, division, department, client, and so on.
      * Number of characters allowed is 100.
      * 
@@ -1996,8 +1942,7 @@ public Builder setDivisionNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The physical address of the employer.
+     * Optional. The physical address of the employer.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2009,8 +1954,7 @@ public boolean hasAddress() { * * *
-     * Optional.
-     * The physical address of the employer.
+     * Optional. The physical address of the employer.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2028,8 +1972,7 @@ public com.google.cloud.talent.v4beta1.Address getAddress() { * * *
-     * Optional.
-     * The physical address of the employer.
+     * Optional. The physical address of the employer.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2051,8 +1994,7 @@ public Builder setAddress(com.google.cloud.talent.v4beta1.Address value) { * * *
-     * Optional.
-     * The physical address of the employer.
+     * Optional. The physical address of the employer.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2071,8 +2013,7 @@ public Builder setAddress(com.google.cloud.talent.v4beta1.Address.Builder builde * * *
-     * Optional.
-     * The physical address of the employer.
+     * Optional. The physical address of the employer.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2098,8 +2039,7 @@ public Builder mergeAddress(com.google.cloud.talent.v4beta1.Address value) { * * *
-     * Optional.
-     * The physical address of the employer.
+     * Optional. The physical address of the employer.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2119,8 +2059,7 @@ public Builder clearAddress() { * * *
-     * Optional.
-     * The physical address of the employer.
+     * Optional. The physical address of the employer.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2134,8 +2073,7 @@ public com.google.cloud.talent.v4beta1.Address.Builder getAddressBuilder() { * * *
-     * Optional.
-     * The physical address of the employer.
+     * Optional. The physical address of the employer.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2153,8 +2091,7 @@ public com.google.cloud.talent.v4beta1.AddressOrBuilder getAddressOrBuilder() { * * *
-     * Optional.
-     * The physical address of the employer.
+     * Optional. The physical address of the employer.
      * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -2181,8 +2118,7 @@ public com.google.cloud.talent.v4beta1.AddressOrBuilder getAddressOrBuilder() { * * *
-     * Optional.
-     * The job title of the employment.
+     * Optional. The job title of the employment.
      * For example, "Software Engineer", "Data Scientist", and so on.
      * Number of characters allowed is 100.
      * 
@@ -2204,8 +2140,7 @@ public java.lang.String getJobTitle() { * * *
-     * Optional.
-     * The job title of the employment.
+     * Optional. The job title of the employment.
      * For example, "Software Engineer", "Data Scientist", and so on.
      * Number of characters allowed is 100.
      * 
@@ -2227,8 +2162,7 @@ public com.google.protobuf.ByteString getJobTitleBytes() { * * *
-     * Optional.
-     * The job title of the employment.
+     * Optional. The job title of the employment.
      * For example, "Software Engineer", "Data Scientist", and so on.
      * Number of characters allowed is 100.
      * 
@@ -2248,8 +2182,7 @@ public Builder setJobTitle(java.lang.String value) { * * *
-     * Optional.
-     * The job title of the employment.
+     * Optional. The job title of the employment.
      * For example, "Software Engineer", "Data Scientist", and so on.
      * Number of characters allowed is 100.
      * 
@@ -2266,8 +2199,7 @@ public Builder clearJobTitle() { * * *
-     * Optional.
-     * The job title of the employment.
+     * Optional. The job title of the employment.
      * For example, "Software Engineer", "Data Scientist", and so on.
      * Number of characters allowed is 100.
      * 
@@ -2290,8 +2222,7 @@ public Builder setJobTitleBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The description of job content.
+     * Optional. The description of job content.
      * Number of characters allowed is 100,000.
      * 
* @@ -2312,8 +2243,7 @@ public java.lang.String getJobDescription() { * * *
-     * Optional.
-     * The description of job content.
+     * Optional. The description of job content.
      * Number of characters allowed is 100,000.
      * 
* @@ -2334,8 +2264,7 @@ public com.google.protobuf.ByteString getJobDescriptionBytes() { * * *
-     * Optional.
-     * The description of job content.
+     * Optional. The description of job content.
      * Number of characters allowed is 100,000.
      * 
* @@ -2354,8 +2283,7 @@ public Builder setJobDescription(java.lang.String value) { * * *
-     * Optional.
-     * The description of job content.
+     * Optional. The description of job content.
      * Number of characters allowed is 100,000.
      * 
* @@ -2371,8 +2299,7 @@ public Builder clearJobDescription() { * * *
-     * Optional.
-     * The description of job content.
+     * Optional. The description of job content.
      * Number of characters allowed is 100,000.
      * 
* @@ -2399,8 +2326,7 @@ public Builder setJobDescriptionBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * If the jobs is a supervisor position.
+     * Optional. If the jobs is a supervisor position.
      * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -2412,8 +2338,7 @@ public boolean hasIsSupervisor() { * * *
-     * Optional.
-     * If the jobs is a supervisor position.
+     * Optional. If the jobs is a supervisor position.
      * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -2431,8 +2356,7 @@ public com.google.protobuf.BoolValue getIsSupervisor() { * * *
-     * Optional.
-     * If the jobs is a supervisor position.
+     * Optional. If the jobs is a supervisor position.
      * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -2454,8 +2378,7 @@ public Builder setIsSupervisor(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * If the jobs is a supervisor position.
+     * Optional. If the jobs is a supervisor position.
      * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -2474,8 +2397,7 @@ public Builder setIsSupervisor(com.google.protobuf.BoolValue.Builder builderForV * * *
-     * Optional.
-     * If the jobs is a supervisor position.
+     * Optional. If the jobs is a supervisor position.
      * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -2501,8 +2423,7 @@ public Builder mergeIsSupervisor(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * If the jobs is a supervisor position.
+     * Optional. If the jobs is a supervisor position.
      * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -2522,8 +2443,7 @@ public Builder clearIsSupervisor() { * * *
-     * Optional.
-     * If the jobs is a supervisor position.
+     * Optional. If the jobs is a supervisor position.
      * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -2537,8 +2457,7 @@ public com.google.protobuf.BoolValue.Builder getIsSupervisorBuilder() { * * *
-     * Optional.
-     * If the jobs is a supervisor position.
+     * Optional. If the jobs is a supervisor position.
      * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -2556,8 +2475,7 @@ public com.google.protobuf.BoolValueOrBuilder getIsSupervisorOrBuilder() { * * *
-     * Optional.
-     * If the jobs is a supervisor position.
+     * Optional. If the jobs is a supervisor position.
      * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -2589,8 +2507,7 @@ public com.google.protobuf.BoolValueOrBuilder getIsSupervisorOrBuilder() { * * *
-     * Optional.
-     * If this employment is self-employed.
+     * Optional. If this employment is self-employed.
      * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -2602,8 +2519,7 @@ public boolean hasIsSelfEmployed() { * * *
-     * Optional.
-     * If this employment is self-employed.
+     * Optional. If this employment is self-employed.
      * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -2621,8 +2537,7 @@ public com.google.protobuf.BoolValue getIsSelfEmployed() { * * *
-     * Optional.
-     * If this employment is self-employed.
+     * Optional. If this employment is self-employed.
      * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -2644,8 +2559,7 @@ public Builder setIsSelfEmployed(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * If this employment is self-employed.
+     * Optional. If this employment is self-employed.
      * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -2664,8 +2578,7 @@ public Builder setIsSelfEmployed(com.google.protobuf.BoolValue.Builder builderFo * * *
-     * Optional.
-     * If this employment is self-employed.
+     * Optional. If this employment is self-employed.
      * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -2691,8 +2604,7 @@ public Builder mergeIsSelfEmployed(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * If this employment is self-employed.
+     * Optional. If this employment is self-employed.
      * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -2712,8 +2624,7 @@ public Builder clearIsSelfEmployed() { * * *
-     * Optional.
-     * If this employment is self-employed.
+     * Optional. If this employment is self-employed.
      * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -2727,8 +2638,7 @@ public com.google.protobuf.BoolValue.Builder getIsSelfEmployedBuilder() { * * *
-     * Optional.
-     * If this employment is self-employed.
+     * Optional. If this employment is self-employed.
      * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -2746,8 +2656,7 @@ public com.google.protobuf.BoolValueOrBuilder getIsSelfEmployedOrBuilder() { * * *
-     * Optional.
-     * If this employment is self-employed.
+     * Optional. If this employment is self-employed.
      * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -2779,8 +2688,7 @@ public com.google.protobuf.BoolValueOrBuilder getIsSelfEmployedOrBuilder() { * * *
-     * Optional.
-     * If this employment is current.
+     * Optional. If this employment is current.
      * 
* * .google.protobuf.BoolValue is_current = 10; @@ -2792,8 +2700,7 @@ public boolean hasIsCurrent() { * * *
-     * Optional.
-     * If this employment is current.
+     * Optional. If this employment is current.
      * 
* * .google.protobuf.BoolValue is_current = 10; @@ -2809,8 +2716,7 @@ public com.google.protobuf.BoolValue getIsCurrent() { * * *
-     * Optional.
-     * If this employment is current.
+     * Optional. If this employment is current.
      * 
* * .google.protobuf.BoolValue is_current = 10; @@ -2832,8 +2738,7 @@ public Builder setIsCurrent(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * If this employment is current.
+     * Optional. If this employment is current.
      * 
* * .google.protobuf.BoolValue is_current = 10; @@ -2852,8 +2757,7 @@ public Builder setIsCurrent(com.google.protobuf.BoolValue.Builder builderForValu * * *
-     * Optional.
-     * If this employment is current.
+     * Optional. If this employment is current.
      * 
* * .google.protobuf.BoolValue is_current = 10; @@ -2877,8 +2781,7 @@ public Builder mergeIsCurrent(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * If this employment is current.
+     * Optional. If this employment is current.
      * 
* * .google.protobuf.BoolValue is_current = 10; @@ -2898,8 +2801,7 @@ public Builder clearIsCurrent() { * * *
-     * Optional.
-     * If this employment is current.
+     * Optional. If this employment is current.
      * 
* * .google.protobuf.BoolValue is_current = 10; @@ -2913,8 +2815,7 @@ public com.google.protobuf.BoolValue.Builder getIsCurrentBuilder() { * * *
-     * Optional.
-     * If this employment is current.
+     * Optional. If this employment is current.
      * 
* * .google.protobuf.BoolValue is_current = 10; @@ -2930,8 +2831,7 @@ public com.google.protobuf.BoolValueOrBuilder getIsCurrentOrBuilder() { * * *
-     * Optional.
-     * If this employment is current.
+     * Optional. If this employment is current.
      * 
* * .google.protobuf.BoolValue is_current = 10; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmploymentRecordOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmploymentRecordOrBuilder.java index ccccb4f817c1..9ec6255e31ee 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmploymentRecordOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EmploymentRecordOrBuilder.java @@ -12,8 +12,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * Start date of the employment.
+   * Optional. Start date of the employment.
    * 
* * .google.type.Date start_date = 1; @@ -23,8 +22,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * Start date of the employment.
+   * Optional. Start date of the employment.
    * 
* * .google.type.Date start_date = 1; @@ -34,8 +32,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * Start date of the employment.
+   * Optional. Start date of the employment.
    * 
* * .google.type.Date start_date = 1; @@ -46,8 +43,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * End date of the employment.
+   * Optional. End date of the employment.
    * 
* * .google.type.Date end_date = 2; @@ -57,8 +53,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * End date of the employment.
+   * Optional. End date of the employment.
    * 
* * .google.type.Date end_date = 2; @@ -68,8 +63,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * End date of the employment.
+   * Optional. End date of the employment.
    * 
* * .google.type.Date end_date = 2; @@ -80,8 +74,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * The name of the employer company/organization.
+   * Optional. The name of the employer company/organization.
    * For example, "Google", "Alphabet", and so on.
    * Number of characters allowed is 100.
    * 
@@ -93,8 +86,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * The name of the employer company/organization.
+   * Optional. The name of the employer company/organization.
    * For example, "Google", "Alphabet", and so on.
    * Number of characters allowed is 100.
    * 
@@ -107,8 +99,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * The division name of the employment.
+   * Optional. The division name of the employment.
    * For example, division, department, client, and so on.
    * Number of characters allowed is 100.
    * 
@@ -120,8 +111,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * The division name of the employment.
+   * Optional. The division name of the employment.
    * For example, division, department, client, and so on.
    * Number of characters allowed is 100.
    * 
@@ -134,8 +124,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * The physical address of the employer.
+   * Optional. The physical address of the employer.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -145,8 +134,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * The physical address of the employer.
+   * Optional. The physical address of the employer.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -156,8 +144,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * The physical address of the employer.
+   * Optional. The physical address of the employer.
    * 
* * .google.cloud.talent.v4beta1.Address address = 5; @@ -168,8 +155,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * The job title of the employment.
+   * Optional. The job title of the employment.
    * For example, "Software Engineer", "Data Scientist", and so on.
    * Number of characters allowed is 100.
    * 
@@ -181,8 +167,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * The job title of the employment.
+   * Optional. The job title of the employment.
    * For example, "Software Engineer", "Data Scientist", and so on.
    * Number of characters allowed is 100.
    * 
@@ -195,8 +180,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * The description of job content.
+   * Optional. The description of job content.
    * Number of characters allowed is 100,000.
    * 
* @@ -207,8 +191,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * The description of job content.
+   * Optional. The description of job content.
    * Number of characters allowed is 100,000.
    * 
* @@ -220,8 +203,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * If the jobs is a supervisor position.
+   * Optional. If the jobs is a supervisor position.
    * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -231,8 +213,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * If the jobs is a supervisor position.
+   * Optional. If the jobs is a supervisor position.
    * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -242,8 +223,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * If the jobs is a supervisor position.
+   * Optional. If the jobs is a supervisor position.
    * 
* * .google.protobuf.BoolValue is_supervisor = 8; @@ -254,8 +234,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * If this employment is self-employed.
+   * Optional. If this employment is self-employed.
    * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -265,8 +244,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * If this employment is self-employed.
+   * Optional. If this employment is self-employed.
    * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -276,8 +254,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * If this employment is self-employed.
+   * Optional. If this employment is self-employed.
    * 
* * .google.protobuf.BoolValue is_self_employed = 9; @@ -288,8 +265,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * If this employment is current.
+   * Optional. If this employment is current.
    * 
* * .google.protobuf.BoolValue is_current = 10; @@ -299,8 +275,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * If this employment is current.
+   * Optional. If this employment is current.
    * 
* * .google.protobuf.BoolValue is_current = 10; @@ -310,8 +285,7 @@ public interface EmploymentRecordOrBuilder * * *
-   * Optional.
-   * If this employment is current.
+   * Optional. If this employment is current.
    * 
* * .google.protobuf.BoolValue is_current = 10; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EventServiceProto.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EventServiceProto.java index 1fdfe68cb9a9..20b174391a7f 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EventServiceProto.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/EventServiceProto.java @@ -27,21 +27,24 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { java.lang.String[] descriptorData = { "\n/google/cloud/talent/v4beta1/event_serv" + "ice.proto\022\033google.cloud.talent.v4beta1\032\034" - + "google/api/annotations.proto\032\'google/clo" - + "ud/talent/v4beta1/event.proto\"j\n\030CreateC" - + "lientEventRequest\022\016\n\006parent\030\001 \001(\t\022>\n\014cli" - + "ent_event\030\002 \001(\0132(.google.cloud.talent.v4" - + "beta1.ClientEvent2\365\001\n\014EventService\022\344\001\n\021C" - + "reateClientEvent\0225.google.cloud.talent.v" - + "4beta1.CreateClientEventRequest\032(.google" - + ".cloud.talent.v4beta1.ClientEvent\"n\202\323\344\223\002" - + "h\"3/v4beta1/{parent=projects/*/tenants/*" - + "}/clientEvents:\001*Z.\")/v4beta1/{parent=pr" - + "ojects/*}/clientEvents:\001*B\177\n\037com.google." - + "cloud.talent.v4beta1B\021EventServiceProtoP" - + "\001ZAgoogle.golang.org/genproto/googleapis" - + "/cloud/talent/v4beta1;talent\242\002\003CTSb\006prot" - + "o3" + + "google/api/annotations.proto\032\027google/api" + + "/client.proto\032\'google/cloud/talent/v4bet" + + "a1/event.proto\"j\n\030CreateClientEventReque" + + "st\022\016\n\006parent\030\001 \001(\t\022>\n\014client_event\030\002 \001(\013" + + "2(.google.cloud.talent.v4beta1.ClientEve" + + "nt2\343\002\n\014EventService\022\344\001\n\021CreateClientEven" + + "t\0225.google.cloud.talent.v4beta1.CreateCl" + + "ientEventRequest\032(.google.cloud.talent.v" + + "4beta1.ClientEvent\"n\202\323\344\223\002h\"3/v4beta1/{pa" + + "rent=projects/*/tenants/*}/clientEvents:" + + "\001*Z.\")/v4beta1/{parent=projects/*}/clien" + + "tEvents:\001*\032l\312A\023jobs.googleapis.com\322AShtt" + + "ps://www.googleapis.com/auth/cloud-platf" + + "orm,https://www.googleapis.com/auth/jobs" + + "B\177\n\037com.google.cloud.talent.v4beta1B\021Eve" + + "ntServiceProtoP\001ZAgoogle.golang.org/genp" + + "roto/googleapis/cloud/talent/v4beta1;tal" + + "ent\242\002\003CTSb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -55,6 +58,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.api.AnnotationsProto.getDescriptor(), + com.google.api.ClientProto.getDescriptor(), com.google.cloud.talent.v4beta1.EventProto.getDescriptor(), }, assigner); @@ -68,10 +72,13 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); + registry.add(com.google.api.ClientProto.defaultHost); registry.add(com.google.api.AnnotationsProto.http); + registry.add(com.google.api.ClientProto.oauthScopes); com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( descriptor, registry); com.google.api.AnnotationsProto.getDescriptor(); + com.google.api.ClientProto.getDescriptor(); com.google.cloud.talent.v4beta1.EventProto.getDescriptor(); } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/FiltersProto.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/FiltersProto.java index cc2376469368..e428a281236d 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/FiltersProto.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/FiltersProto.java @@ -68,6 +68,10 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_cloud_talent_v4beta1_TimeFilter_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_talent_v4beta1_TimeFilter_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_talent_v4beta1_CandidateAvailabilityFilter_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_talent_v4beta1_CandidateAvailabilityFilter_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { return descriptor; @@ -103,7 +107,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + ".v4beta1.EmploymentType\022\026\n\016language_code" + "s\030\013 \003(\t\022G\n\022publish_time_range\030\014 \001(\0132+.go" + "ogle.cloud.talent.v4beta1.TimestampRange" - + "\022\025\n\rexcluded_jobs\030\r \003(\t\"\365\006\n\014ProfileQuery" + + "\022\025\n\rexcluded_jobs\030\r \003(\t\"\326\007\n\014ProfileQuery" + "\022\r\n\005query\030\001 \001(\t\022E\n\020location_filters\030\002 \003(" + "\0132+.google.cloud.talent.v4beta1.Location" + "Filter\022F\n\021job_title_filters\030\003 \003(\0132+.goog" @@ -125,71 +129,75 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "eta1.ApplicationOutcomeNotesFilter\022R\n\027ap" + "plication_job_filters\030\r \003(\01321.google.clo" + "ud.talent.v4beta1.ApplicationJobFilter\022\037" - + "\n\027custom_attribute_filter\030\017 \001(\t\"\337\002\n\016Loca" - + "tionFilter\022\017\n\007address\030\001 \001(\t\022\023\n\013region_co" - + "de\030\002 \001(\t\022$\n\007lat_lng\030\003 \001(\0132\023.google.type." - + "LatLng\022\031\n\021distance_in_miles\030\004 \001(\001\022a\n\026tel" - + "ecommute_preference\030\005 \001(\0162A.google.cloud" - + ".talent.v4beta1.LocationFilter.Telecommu" - + "tePreference\022\017\n\007negated\030\006 \001(\010\"r\n\025Telecom" - + "mutePreference\022&\n\"TELECOMMUTE_PREFERENCE" - + "_UNSPECIFIED\020\000\022\030\n\024TELECOMMUTE_EXCLUDED\020\001" - + "\022\027\n\023TELECOMMUTE_ALLOWED\020\002\"\300\003\n\022Compensati" - + "onFilter\022H\n\004type\030\001 \001(\0162:.google.cloud.ta" - + "lent.v4beta1.CompensationFilter.FilterTy" - + "pe\022M\n\005units\030\002 \003(\0162>.google.cloud.talent." - + "v4beta1.CompensationInfo.CompensationUni" - + "t\022N\n\005range\030\003 \001(\0132?.google.cloud.talent.v" - + "4beta1.CompensationInfo.CompensationRang" - + "e\0228\n0include_jobs_with_unspecified_compe" - + "nsation_range\030\004 \001(\010\"\206\001\n\nFilterType\022\033\n\027FI" - + "LTER_TYPE_UNSPECIFIED\020\000\022\r\n\tUNIT_ONLY\020\001\022\023" - + "\n\017UNIT_AND_AMOUNT\020\002\022\032\n\026ANNUALIZED_BASE_A" - + "MOUNT\020\003\022\033\n\027ANNUALIZED_TOTAL_AMOUNT\020\004\"\274\003\n" - + "\rCommuteFilter\022B\n\016commute_method\030\001 \001(\0162*" - + ".google.cloud.talent.v4beta1.CommuteMeth" - + "od\022.\n\021start_coordinates\030\002 \001(\0132\023.google.t" - + "ype.LatLng\0222\n\017travel_duration\030\003 \001(\0132\031.go" - + "ogle.protobuf.Duration\022!\n\031allow_imprecis" - + "e_addresses\030\004 \001(\010\022N\n\014road_traffic\030\005 \001(\0162" - + "6.google.cloud.talent.v4beta1.CommuteFil" - + "ter.RoadTrafficH\000\0220\n\016departure_time\030\006 \001(" - + "\0132\026.google.type.TimeOfDayH\000\"L\n\013RoadTraff" - + "ic\022\034\n\030ROAD_TRAFFIC_UNSPECIFIED\020\000\022\020\n\014TRAF" - + "FIC_FREE\020\001\022\r\n\tBUSY_HOUR\020\002B\020\n\016traffic_opt" - + "ion\"4\n\016JobTitleFilter\022\021\n\tjob_title\030\001 \001(\t" - + "\022\017\n\007negated\030\002 \001(\010\"-\n\013SkillFilter\022\r\n\005skil" - + "l\030\001 \001(\t\022\017\n\007negated\030\002 \001(\010\"\241\002\n\016EmployerFil" - + "ter\022\020\n\010employer\030\001 \001(\t\022L\n\004mode\030\002 \001(\0162>.go" - + "ogle.cloud.talent.v4beta1.EmployerFilter" - + ".EmployerFilterMode\022\017\n\007negated\030\003 \001(\010\"\235\001\n" - + "\022EmployerFilterMode\022$\n EMPLOYER_FILTER_M" - + "ODE_UNSPECIFIED\020\000\022\032\n\026ALL_EMPLOYMENT_RECO" - + "RDS\020\001\022#\n\037CURRENT_EMPLOYMENT_RECORDS_ONLY" - + "\020\002\022 \n\034PAST_EMPLOYMENT_RECORDS_ONLY\020\003\"\210\001\n" - + "\017EducationFilter\022\016\n\006school\030\001 \001(\t\022\026\n\016fiel" - + "d_of_study\030\002 \001(\t\022<\n\013degree_type\030\003 \001(\0162\'." - + "google.cloud.talent.v4beta1.DegreeType\022\017" - + "\n\007negated\030\006 \001(\010\"|\n\024WorkExperienceFilter\022" - + "1\n\016min_experience\030\001 \001(\0132\031.google.protobu" - + "f.Duration\0221\n\016max_experience\030\002 \001(\0132\031.goo" - + "gle.protobuf.Duration\"c\n\025ApplicationDate" - + "Filter\022%\n\nstart_date\030\001 \001(\0132\021.google.type" - + ".Date\022#\n\010end_date\030\002 \001(\0132\021.google.type.Da" - + "te\"G\n\035ApplicationOutcomeNotesFilter\022\025\n\ro" - + "utcome_notes\030\001 \001(\t\022\017\n\007negated\030\002 \001(\010\"V\n\024A" - + "pplicationJobFilter\022\032\n\022job_requisition_i" - + "d\030\002 \001(\t\022\021\n\tjob_title\030\003 \001(\t\022\017\n\007negated\030\004 " - + "\001(\010\"\374\001\n\nTimeFilter\022.\n\nstart_time\030\001 \001(\0132\032" - + ".google.protobuf.Timestamp\022,\n\010end_time\030\002" - + " \001(\0132\032.google.protobuf.Timestamp\022E\n\ntime" - + "_field\030\003 \001(\01621.google.cloud.talent.v4bet" - + "a1.TimeFilter.TimeField\"I\n\tTimeField\022\032\n\026" - + "TIME_FIELD_UNSPECIFIED\020\000\022\017\n\013CREATE_TIME\020" - + "\001\022\017\n\013UPDATE_TIME\020\002Bz\n\037com.google.cloud.t" - + "alent.v4beta1B\014FiltersProtoP\001ZAgoogle.go" - + "lang.org/genproto/googleapis/cloud/talen" - + "t/v4beta1;talent\242\002\003CTSb\006proto3" + + "\n\027custom_attribute_filter\030\017 \001(\t\022_\n\035candi" + + "date_availability_filter\030\020 \001(\01328.google." + + "cloud.talent.v4beta1.CandidateAvailabili" + + "tyFilter\"\337\002\n\016LocationFilter\022\017\n\007address\030\001" + + " \001(\t\022\023\n\013region_code\030\002 \001(\t\022$\n\007lat_lng\030\003 \001" + + "(\0132\023.google.type.LatLng\022\031\n\021distance_in_m" + + "iles\030\004 \001(\001\022a\n\026telecommute_preference\030\005 \001" + + "(\0162A.google.cloud.talent.v4beta1.Locatio" + + "nFilter.TelecommutePreference\022\017\n\007negated" + + "\030\006 \001(\010\"r\n\025TelecommutePreference\022&\n\"TELEC" + + "OMMUTE_PREFERENCE_UNSPECIFIED\020\000\022\030\n\024TELEC" + + "OMMUTE_EXCLUDED\020\001\022\027\n\023TELECOMMUTE_ALLOWED" + + "\020\002\"\300\003\n\022CompensationFilter\022H\n\004type\030\001 \001(\0162" + + ":.google.cloud.talent.v4beta1.Compensati" + + "onFilter.FilterType\022M\n\005units\030\002 \003(\0162>.goo" + + "gle.cloud.talent.v4beta1.CompensationInf" + + "o.CompensationUnit\022N\n\005range\030\003 \001(\0132?.goog" + + "le.cloud.talent.v4beta1.CompensationInfo" + + ".CompensationRange\0228\n0include_jobs_with_" + + "unspecified_compensation_range\030\004 \001(\010\"\206\001\n" + + "\nFilterType\022\033\n\027FILTER_TYPE_UNSPECIFIED\020\000" + + "\022\r\n\tUNIT_ONLY\020\001\022\023\n\017UNIT_AND_AMOUNT\020\002\022\032\n\026" + + "ANNUALIZED_BASE_AMOUNT\020\003\022\033\n\027ANNUALIZED_T" + + "OTAL_AMOUNT\020\004\"\274\003\n\rCommuteFilter\022B\n\016commu" + + "te_method\030\001 \001(\0162*.google.cloud.talent.v4" + + "beta1.CommuteMethod\022.\n\021start_coordinates" + + "\030\002 \001(\0132\023.google.type.LatLng\0222\n\017travel_du" + + "ration\030\003 \001(\0132\031.google.protobuf.Duration\022" + + "!\n\031allow_imprecise_addresses\030\004 \001(\010\022N\n\014ro" + + "ad_traffic\030\005 \001(\01626.google.cloud.talent.v" + + "4beta1.CommuteFilter.RoadTrafficH\000\0220\n\016de" + + "parture_time\030\006 \001(\0132\026.google.type.TimeOfD" + + "ayH\000\"L\n\013RoadTraffic\022\034\n\030ROAD_TRAFFIC_UNSP" + + "ECIFIED\020\000\022\020\n\014TRAFFIC_FREE\020\001\022\r\n\tBUSY_HOUR" + + "\020\002B\020\n\016traffic_option\"4\n\016JobTitleFilter\022\021" + + "\n\tjob_title\030\001 \001(\t\022\017\n\007negated\030\002 \001(\010\"-\n\013Sk" + + "illFilter\022\r\n\005skill\030\001 \001(\t\022\017\n\007negated\030\002 \001(" + + "\010\"\241\002\n\016EmployerFilter\022\020\n\010employer\030\001 \001(\t\022L" + + "\n\004mode\030\002 \001(\0162>.google.cloud.talent.v4bet" + + "a1.EmployerFilter.EmployerFilterMode\022\017\n\007" + + "negated\030\003 \001(\010\"\235\001\n\022EmployerFilterMode\022$\n " + + "EMPLOYER_FILTER_MODE_UNSPECIFIED\020\000\022\032\n\026AL" + + "L_EMPLOYMENT_RECORDS\020\001\022#\n\037CURRENT_EMPLOY" + + "MENT_RECORDS_ONLY\020\002\022 \n\034PAST_EMPLOYMENT_R" + + "ECORDS_ONLY\020\003\"\210\001\n\017EducationFilter\022\016\n\006sch" + + "ool\030\001 \001(\t\022\026\n\016field_of_study\030\002 \001(\t\022<\n\013deg" + + "ree_type\030\003 \001(\0162\'.google.cloud.talent.v4b" + + "eta1.DegreeType\022\017\n\007negated\030\006 \001(\010\"|\n\024Work" + + "ExperienceFilter\0221\n\016min_experience\030\001 \001(\013" + + "2\031.google.protobuf.Duration\0221\n\016max_exper" + + "ience\030\002 \001(\0132\031.google.protobuf.Duration\"c" + + "\n\025ApplicationDateFilter\022%\n\nstart_date\030\001 " + + "\001(\0132\021.google.type.Date\022#\n\010end_date\030\002 \001(\013" + + "2\021.google.type.Date\"G\n\035ApplicationOutcom" + + "eNotesFilter\022\025\n\routcome_notes\030\001 \001(\t\022\017\n\007n" + + "egated\030\002 \001(\010\"V\n\024ApplicationJobFilter\022\032\n\022" + + "job_requisition_id\030\002 \001(\t\022\021\n\tjob_title\030\003 " + + "\001(\t\022\017\n\007negated\030\004 \001(\010\"\374\001\n\nTimeFilter\022.\n\ns" + + "tart_time\030\001 \001(\0132\032.google.protobuf.Timest" + + "amp\022,\n\010end_time\030\002 \001(\0132\032.google.protobuf." + + "Timestamp\022E\n\ntime_field\030\003 \001(\01621.google.c" + + "loud.talent.v4beta1.TimeFilter.TimeField" + + "\"I\n\tTimeField\022\032\n\026TIME_FIELD_UNSPECIFIED\020" + + "\000\022\017\n\013CREATE_TIME\020\001\022\017\n\013UPDATE_TIME\020\002\".\n\033C" + + "andidateAvailabilityFilter\022\017\n\007negated\030\001 " + + "\001(\010Bz\n\037com.google.cloud.talent.v4beta1B\014" + + "FiltersProtoP\001ZAgoogle.golang.org/genpro" + + "to/googleapis/cloud/talent/v4beta1;talen" + + "t\242\002\003CTSb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -254,6 +262,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( "ApplicationOutcomeNotesFilters", "ApplicationJobFilters", "CustomAttributeFilter", + "CandidateAvailabilityFilter", }); internal_static_google_cloud_talent_v4beta1_LocationFilter_descriptor = getDescriptor().getMessageTypes().get(2); @@ -362,6 +371,14 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( new java.lang.String[] { "StartTime", "EndTime", "TimeField", }); + internal_static_google_cloud_talent_v4beta1_CandidateAvailabilityFilter_descriptor = + getDescriptor().getMessageTypes().get(14); + internal_static_google_cloud_talent_v4beta1_CandidateAvailabilityFilter_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_cloud_talent_v4beta1_CandidateAvailabilityFilter_descriptor, + new java.lang.String[] { + "Negated", + }); com.google.api.AnnotationsProto.getDescriptor(); com.google.cloud.talent.v4beta1.ApplicationResourceProto.getDescriptor(); com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(); diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetApplicationRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetApplicationRequest.java index 00b992d2751f..9b9ec78b24ad 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetApplicationRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetApplicationRequest.java @@ -97,8 +97,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The resource name of the application to be retrieved.
+   * Required. The resource name of the application to be retrieved.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
    * for example,
@@ -122,8 +121,7 @@ public java.lang.String getName() {
    *
    *
    * 
-   * Required.
-   * The resource name of the application to be retrieved.
+   * Required. The resource name of the application to be retrieved.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
    * for example,
@@ -468,8 +466,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * The resource name of the application to be retrieved.
+     * Required. The resource name of the application to be retrieved.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
      * for example,
@@ -493,8 +490,7 @@ public java.lang.String getName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the application to be retrieved.
+     * Required. The resource name of the application to be retrieved.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
      * for example,
@@ -518,8 +514,7 @@ public com.google.protobuf.ByteString getNameBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the application to be retrieved.
+     * Required. The resource name of the application to be retrieved.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
      * for example,
@@ -541,8 +536,7 @@ public Builder setName(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the application to be retrieved.
+     * Required. The resource name of the application to be retrieved.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
      * for example,
@@ -561,8 +555,7 @@ public Builder clearName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the application to be retrieved.
+     * Required. The resource name of the application to be retrieved.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
      * for example,
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetApplicationRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetApplicationRequestOrBuilder.java
index bfb2b23837b8..c278ad3da73a 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetApplicationRequestOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetApplicationRequestOrBuilder.java
@@ -12,8 +12,7 @@ public interface GetApplicationRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the application to be retrieved.
+   * Required. The resource name of the application to be retrieved.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
    * for example,
@@ -27,8 +26,7 @@ public interface GetApplicationRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the application to be retrieved.
+   * Required. The resource name of the application to be retrieved.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}",
    * for example,
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetCompanyRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetCompanyRequest.java
index 4c10769d12f2..8714c57e6768 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetCompanyRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetCompanyRequest.java
@@ -97,8 +97,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required.
-   * The resource name of the company to be retrieved.
+   * Required. The resource name of the company to be retrieved.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -123,8 +122,7 @@ public java.lang.String getName() {
    *
    *
    * 
-   * Required.
-   * The resource name of the company to be retrieved.
+   * Required. The resource name of the company to be retrieved.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -469,8 +467,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * The resource name of the company to be retrieved.
+     * Required. The resource name of the company to be retrieved.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -495,8 +492,7 @@ public java.lang.String getName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the company to be retrieved.
+     * Required. The resource name of the company to be retrieved.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -521,8 +517,7 @@ public com.google.protobuf.ByteString getNameBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the company to be retrieved.
+     * Required. The resource name of the company to be retrieved.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -545,8 +540,7 @@ public Builder setName(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the company to be retrieved.
+     * Required. The resource name of the company to be retrieved.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -566,8 +560,7 @@ public Builder clearName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the company to be retrieved.
+     * Required. The resource name of the company to be retrieved.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetCompanyRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetCompanyRequestOrBuilder.java
index 16a917ad51d2..1d498c298353 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetCompanyRequestOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetCompanyRequestOrBuilder.java
@@ -12,8 +12,7 @@ public interface GetCompanyRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the company to be retrieved.
+   * Required. The resource name of the company to be retrieved.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -28,8 +27,7 @@ public interface GetCompanyRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the company to be retrieved.
+   * Required. The resource name of the company to be retrieved.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetJobRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetJobRequest.java
index 5c5a05f7fca5..28f6e92fa364 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetJobRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetJobRequest.java
@@ -98,8 +98,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required.
-   * The resource name of the job to retrieve.
+   * Required. The resource name of the job to retrieve.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -124,8 +123,7 @@ public java.lang.String getName() {
    *
    *
    * 
-   * Required.
-   * The resource name of the job to retrieve.
+   * Required. The resource name of the job to retrieve.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -469,8 +467,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * The resource name of the job to retrieve.
+     * Required. The resource name of the job to retrieve.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -495,8 +492,7 @@ public java.lang.String getName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the job to retrieve.
+     * Required. The resource name of the job to retrieve.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -521,8 +517,7 @@ public com.google.protobuf.ByteString getNameBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the job to retrieve.
+     * Required. The resource name of the job to retrieve.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -545,8 +540,7 @@ public Builder setName(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the job to retrieve.
+     * Required. The resource name of the job to retrieve.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -566,8 +560,7 @@ public Builder clearName() {
      *
      *
      * 
-     * Required.
-     * The resource name of the job to retrieve.
+     * Required. The resource name of the job to retrieve.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetJobRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetJobRequestOrBuilder.java
index 9c2783265eb2..2029d0af3d94 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetJobRequestOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetJobRequestOrBuilder.java
@@ -12,8 +12,7 @@ public interface GetJobRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the job to retrieve.
+   * Required. The resource name of the job to retrieve.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -28,8 +27,7 @@ public interface GetJobRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the job to retrieve.
+   * Required. The resource name of the job to retrieve.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetProfileRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetProfileRequest.java
index 6529b6067cdb..7b04ad5242fe 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetProfileRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetProfileRequest.java
@@ -97,8 +97,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required.
-   * Resource name of the profile to get.
+   * Required. Resource name of the profile to get.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -121,8 +120,7 @@ public java.lang.String getName() {
    *
    *
    * 
-   * Required.
-   * Resource name of the profile to get.
+   * Required. Resource name of the profile to get.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -465,8 +463,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * Resource name of the profile to get.
+     * Required. Resource name of the profile to get.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -489,8 +486,7 @@ public java.lang.String getName() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile to get.
+     * Required. Resource name of the profile to get.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -513,8 +509,7 @@ public com.google.protobuf.ByteString getNameBytes() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile to get.
+     * Required. Resource name of the profile to get.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -535,8 +530,7 @@ public Builder setName(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile to get.
+     * Required. Resource name of the profile to get.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -554,8 +548,7 @@ public Builder clearName() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile to get.
+     * Required. Resource name of the profile to get.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetProfileRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetProfileRequestOrBuilder.java
index b4f41d5a3624..f30b80990419 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetProfileRequestOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetProfileRequestOrBuilder.java
@@ -12,8 +12,7 @@ public interface GetProfileRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Resource name of the profile to get.
+   * Required. Resource name of the profile to get.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -26,8 +25,7 @@ public interface GetProfileRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Resource name of the profile to get.
+   * Required. Resource name of the profile to get.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetTenantRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetTenantRequest.java
index 187216f0afd5..f74c08a2455a 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetTenantRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetTenantRequest.java
@@ -97,8 +97,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant to be retrieved.
+   * Required. The resource name of the tenant to be retrieved.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -120,8 +119,7 @@ public java.lang.String getName() { * * *
-   * Required.
-   * The resource name of the tenant to be retrieved.
+   * Required. The resource name of the tenant to be retrieved.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -462,8 +460,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The resource name of the tenant to be retrieved.
+     * Required. The resource name of the tenant to be retrieved.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -485,8 +482,7 @@ public java.lang.String getName() { * * *
-     * Required.
-     * The resource name of the tenant to be retrieved.
+     * Required. The resource name of the tenant to be retrieved.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -508,8 +504,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-     * Required.
-     * The resource name of the tenant to be retrieved.
+     * Required. The resource name of the tenant to be retrieved.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -529,8 +524,7 @@ public Builder setName(java.lang.String value) { * * *
-     * Required.
-     * The resource name of the tenant to be retrieved.
+     * Required. The resource name of the tenant to be retrieved.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -547,8 +541,7 @@ public Builder clearName() { * * *
-     * Required.
-     * The resource name of the tenant to be retrieved.
+     * Required. The resource name of the tenant to be retrieved.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetTenantRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetTenantRequestOrBuilder.java index c6c8c9e2e154..3e10aa71e742 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetTenantRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/GetTenantRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface GetTenantRequestOrBuilder * * *
-   * Required.
-   * The resource name of the tenant to be retrieved.
+   * Required. The resource name of the tenant to be retrieved.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -25,8 +24,7 @@ public interface GetTenantRequestOrBuilder * * *
-   * Required.
-   * The resource name of the tenant to be retrieved.
+   * Required. The resource name of the tenant to be retrieved.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Interview.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Interview.java index 80b5f781ff35..98c0c0280b87 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Interview.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Interview.java @@ -113,8 +113,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * The rating on this interview.
+   * Optional. The rating on this interview.
    * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -126,8 +125,7 @@ public boolean hasRating() { * * *
-   * Optional.
-   * The rating on this interview.
+   * Optional. The rating on this interview.
    * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -139,8 +137,7 @@ public com.google.cloud.talent.v4beta1.Rating getRating() { * * *
-   * Optional.
-   * The rating on this interview.
+   * Optional. The rating on this interview.
    * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -155,9 +152,8 @@ public com.google.cloud.talent.v4beta1.RatingOrBuilder getRatingOrBuilder() { * * *
-   * Required.
-   * The overall decision resulting from this interview (positive, negative,
-   * nuetral).
+   * Required. The overall decision resulting from this interview (positive,
+   * negative, nuetral).
    * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 7; @@ -169,9 +165,8 @@ public int getOutcomeValue() { * * *
-   * Required.
-   * The overall decision resulting from this interview (positive, negative,
-   * nuetral).
+   * Required. The overall decision resulting from this interview (positive,
+   * negative, nuetral).
    * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 7; @@ -536,8 +531,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * The rating on this interview.
+     * Optional. The rating on this interview.
      * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -549,8 +543,7 @@ public boolean hasRating() { * * *
-     * Optional.
-     * The rating on this interview.
+     * Optional. The rating on this interview.
      * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -568,8 +561,7 @@ public com.google.cloud.talent.v4beta1.Rating getRating() { * * *
-     * Optional.
-     * The rating on this interview.
+     * Optional. The rating on this interview.
      * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -591,8 +583,7 @@ public Builder setRating(com.google.cloud.talent.v4beta1.Rating value) { * * *
-     * Optional.
-     * The rating on this interview.
+     * Optional. The rating on this interview.
      * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -611,8 +602,7 @@ public Builder setRating(com.google.cloud.talent.v4beta1.Rating.Builder builderF * * *
-     * Optional.
-     * The rating on this interview.
+     * Optional. The rating on this interview.
      * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -638,8 +628,7 @@ public Builder mergeRating(com.google.cloud.talent.v4beta1.Rating value) { * * *
-     * Optional.
-     * The rating on this interview.
+     * Optional. The rating on this interview.
      * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -659,8 +648,7 @@ public Builder clearRating() { * * *
-     * Optional.
-     * The rating on this interview.
+     * Optional. The rating on this interview.
      * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -674,8 +662,7 @@ public com.google.cloud.talent.v4beta1.Rating.Builder getRatingBuilder() { * * *
-     * Optional.
-     * The rating on this interview.
+     * Optional. The rating on this interview.
      * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -693,8 +680,7 @@ public com.google.cloud.talent.v4beta1.RatingOrBuilder getRatingOrBuilder() { * * *
-     * Optional.
-     * The rating on this interview.
+     * Optional. The rating on this interview.
      * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -721,9 +707,8 @@ public com.google.cloud.talent.v4beta1.RatingOrBuilder getRatingOrBuilder() { * * *
-     * Required.
-     * The overall decision resulting from this interview (positive, negative,
-     * nuetral).
+     * Required. The overall decision resulting from this interview (positive,
+     * negative, nuetral).
      * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 7; @@ -735,9 +720,8 @@ public int getOutcomeValue() { * * *
-     * Required.
-     * The overall decision resulting from this interview (positive, negative,
-     * nuetral).
+     * Required. The overall decision resulting from this interview (positive,
+     * negative, nuetral).
      * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 7; @@ -751,9 +735,8 @@ public Builder setOutcomeValue(int value) { * * *
-     * Required.
-     * The overall decision resulting from this interview (positive, negative,
-     * nuetral).
+     * Required. The overall decision resulting from this interview (positive,
+     * negative, nuetral).
      * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 7; @@ -768,9 +751,8 @@ public com.google.cloud.talent.v4beta1.Outcome getOutcome() { * * *
-     * Required.
-     * The overall decision resulting from this interview (positive, negative,
-     * nuetral).
+     * Required. The overall decision resulting from this interview (positive,
+     * negative, nuetral).
      * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 7; @@ -788,9 +770,8 @@ public Builder setOutcome(com.google.cloud.talent.v4beta1.Outcome value) { * * *
-     * Required.
-     * The overall decision resulting from this interview (positive, negative,
-     * nuetral).
+     * Required. The overall decision resulting from this interview (positive,
+     * negative, nuetral).
      * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 7; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/InterviewOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/InterviewOrBuilder.java index c5a4354bca35..89498a951c95 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/InterviewOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/InterviewOrBuilder.java @@ -12,8 +12,7 @@ public interface InterviewOrBuilder * * *
-   * Optional.
-   * The rating on this interview.
+   * Optional. The rating on this interview.
    * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -23,8 +22,7 @@ public interface InterviewOrBuilder * * *
-   * Optional.
-   * The rating on this interview.
+   * Optional. The rating on this interview.
    * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -34,8 +32,7 @@ public interface InterviewOrBuilder * * *
-   * Optional.
-   * The rating on this interview.
+   * Optional. The rating on this interview.
    * 
* * .google.cloud.talent.v4beta1.Rating rating = 6; @@ -46,9 +43,8 @@ public interface InterviewOrBuilder * * *
-   * Required.
-   * The overall decision resulting from this interview (positive, negative,
-   * nuetral).
+   * Required. The overall decision resulting from this interview (positive,
+   * negative, nuetral).
    * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 7; @@ -58,9 +54,8 @@ public interface InterviewOrBuilder * * *
-   * Required.
-   * The overall decision resulting from this interview (positive, negative,
-   * nuetral).
+   * Required. The overall decision resulting from this interview (positive,
+   * negative, nuetral).
    * 
* * .google.cloud.talent.v4beta1.Outcome outcome = 7; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Job.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Job.java index 2292d70371b4..38d239c4869a 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Job.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Job.java @@ -499,8 +499,7 @@ public interface ApplicationInfoOrBuilder * * *
-     * Optional.
-     * Use this field to specify email address(es) to which resumes or
+     * Optional. Use this field to specify email address(es) to which resumes or
      * applications can be sent.
      * The maximum number of allowed characters for each entry is 255.
      * 
@@ -512,8 +511,7 @@ public interface ApplicationInfoOrBuilder * * *
-     * Optional.
-     * Use this field to specify email address(es) to which resumes or
+     * Optional. Use this field to specify email address(es) to which resumes or
      * applications can be sent.
      * The maximum number of allowed characters for each entry is 255.
      * 
@@ -525,8 +523,7 @@ public interface ApplicationInfoOrBuilder * * *
-     * Optional.
-     * Use this field to specify email address(es) to which resumes or
+     * Optional. Use this field to specify email address(es) to which resumes or
      * applications can be sent.
      * The maximum number of allowed characters for each entry is 255.
      * 
@@ -538,8 +535,7 @@ public interface ApplicationInfoOrBuilder * * *
-     * Optional.
-     * Use this field to specify email address(es) to which resumes or
+     * Optional. Use this field to specify email address(es) to which resumes or
      * applications can be sent.
      * The maximum number of allowed characters for each entry is 255.
      * 
@@ -552,9 +548,8 @@ public interface ApplicationInfoOrBuilder * * *
-     * Optional.
-     * Use this field to provide instructions, such as "Mail your application
-     * to ...", that a candidate can follow to apply for the job.
+     * Optional. Use this field to provide instructions, such as "Mail your
+     * application to ...", that a candidate can follow to apply for the job.
      * This field accepts and sanitizes HTML input, and also accepts
      * bold, italic, ordered list, and unordered list markup tags.
      * The maximum number of allowed characters is 3,000.
@@ -567,9 +562,8 @@ public interface ApplicationInfoOrBuilder
      *
      *
      * 
-     * Optional.
-     * Use this field to provide instructions, such as "Mail your application
-     * to ...", that a candidate can follow to apply for the job.
+     * Optional. Use this field to provide instructions, such as "Mail your
+     * application to ...", that a candidate can follow to apply for the job.
      * This field accepts and sanitizes HTML input, and also accepts
      * bold, italic, ordered list, and unordered list markup tags.
      * The maximum number of allowed characters is 3,000.
@@ -583,9 +577,8 @@ public interface ApplicationInfoOrBuilder
      *
      *
      * 
-     * Optional.
-     * Use this URI field to direct an applicant to a website, for example to
-     * link to an online application form.
+     * Optional. Use this URI field to direct an applicant to a website, for
+     * example to link to an online application form.
      * The maximum number of allowed characters for each entry is 2,000.
      * 
* @@ -596,9 +589,8 @@ public interface ApplicationInfoOrBuilder * * *
-     * Optional.
-     * Use this URI field to direct an applicant to a website, for example to
-     * link to an online application form.
+     * Optional. Use this URI field to direct an applicant to a website, for
+     * example to link to an online application form.
      * The maximum number of allowed characters for each entry is 2,000.
      * 
* @@ -609,9 +601,8 @@ public interface ApplicationInfoOrBuilder * * *
-     * Optional.
-     * Use this URI field to direct an applicant to a website, for example to
-     * link to an online application form.
+     * Optional. Use this URI field to direct an applicant to a website, for
+     * example to link to an online application form.
      * The maximum number of allowed characters for each entry is 2,000.
      * 
* @@ -622,9 +613,8 @@ public interface ApplicationInfoOrBuilder * * *
-     * Optional.
-     * Use this URI field to direct an applicant to a website, for example to
-     * link to an online application form.
+     * Optional. Use this URI field to direct an applicant to a website, for
+     * example to link to an online application form.
      * The maximum number of allowed characters for each entry is 2,000.
      * 
* @@ -755,8 +745,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-     * Optional.
-     * Use this field to specify email address(es) to which resumes or
+     * Optional. Use this field to specify email address(es) to which resumes or
      * applications can be sent.
      * The maximum number of allowed characters for each entry is 255.
      * 
@@ -770,8 +759,7 @@ public com.google.protobuf.ProtocolStringList getEmailsList() { * * *
-     * Optional.
-     * Use this field to specify email address(es) to which resumes or
+     * Optional. Use this field to specify email address(es) to which resumes or
      * applications can be sent.
      * The maximum number of allowed characters for each entry is 255.
      * 
@@ -785,8 +773,7 @@ public int getEmailsCount() { * * *
-     * Optional.
-     * Use this field to specify email address(es) to which resumes or
+     * Optional. Use this field to specify email address(es) to which resumes or
      * applications can be sent.
      * The maximum number of allowed characters for each entry is 255.
      * 
@@ -800,8 +787,7 @@ public java.lang.String getEmails(int index) { * * *
-     * Optional.
-     * Use this field to specify email address(es) to which resumes or
+     * Optional. Use this field to specify email address(es) to which resumes or
      * applications can be sent.
      * The maximum number of allowed characters for each entry is 255.
      * 
@@ -818,9 +804,8 @@ public com.google.protobuf.ByteString getEmailsBytes(int index) { * * *
-     * Optional.
-     * Use this field to provide instructions, such as "Mail your application
-     * to ...", that a candidate can follow to apply for the job.
+     * Optional. Use this field to provide instructions, such as "Mail your
+     * application to ...", that a candidate can follow to apply for the job.
      * This field accepts and sanitizes HTML input, and also accepts
      * bold, italic, ordered list, and unordered list markup tags.
      * The maximum number of allowed characters is 3,000.
@@ -843,9 +828,8 @@ public java.lang.String getInstruction() {
      *
      *
      * 
-     * Optional.
-     * Use this field to provide instructions, such as "Mail your application
-     * to ...", that a candidate can follow to apply for the job.
+     * Optional. Use this field to provide instructions, such as "Mail your
+     * application to ...", that a candidate can follow to apply for the job.
      * This field accepts and sanitizes HTML input, and also accepts
      * bold, italic, ordered list, and unordered list markup tags.
      * The maximum number of allowed characters is 3,000.
@@ -871,9 +855,8 @@ public com.google.protobuf.ByteString getInstructionBytes() {
      *
      *
      * 
-     * Optional.
-     * Use this URI field to direct an applicant to a website, for example to
-     * link to an online application form.
+     * Optional. Use this URI field to direct an applicant to a website, for
+     * example to link to an online application form.
      * The maximum number of allowed characters for each entry is 2,000.
      * 
* @@ -886,9 +869,8 @@ public com.google.protobuf.ProtocolStringList getUrisList() { * * *
-     * Optional.
-     * Use this URI field to direct an applicant to a website, for example to
-     * link to an online application form.
+     * Optional. Use this URI field to direct an applicant to a website, for
+     * example to link to an online application form.
      * The maximum number of allowed characters for each entry is 2,000.
      * 
* @@ -901,9 +883,8 @@ public int getUrisCount() { * * *
-     * Optional.
-     * Use this URI field to direct an applicant to a website, for example to
-     * link to an online application form.
+     * Optional. Use this URI field to direct an applicant to a website, for
+     * example to link to an online application form.
      * The maximum number of allowed characters for each entry is 2,000.
      * 
* @@ -916,9 +897,8 @@ public java.lang.String getUris(int index) { * * *
-     * Optional.
-     * Use this URI field to direct an applicant to a website, for example to
-     * link to an online application form.
+     * Optional. Use this URI field to direct an applicant to a website, for
+     * example to link to an online application form.
      * The maximum number of allowed characters for each entry is 2,000.
      * 
* @@ -1335,8 +1315,7 @@ private void ensureEmailsIsMutable() { * * *
-       * Optional.
-       * Use this field to specify email address(es) to which resumes or
+       * Optional. Use this field to specify email address(es) to which resumes or
        * applications can be sent.
        * The maximum number of allowed characters for each entry is 255.
        * 
@@ -1350,8 +1329,7 @@ public com.google.protobuf.ProtocolStringList getEmailsList() { * * *
-       * Optional.
-       * Use this field to specify email address(es) to which resumes or
+       * Optional. Use this field to specify email address(es) to which resumes or
        * applications can be sent.
        * The maximum number of allowed characters for each entry is 255.
        * 
@@ -1365,8 +1343,7 @@ public int getEmailsCount() { * * *
-       * Optional.
-       * Use this field to specify email address(es) to which resumes or
+       * Optional. Use this field to specify email address(es) to which resumes or
        * applications can be sent.
        * The maximum number of allowed characters for each entry is 255.
        * 
@@ -1380,8 +1357,7 @@ public java.lang.String getEmails(int index) { * * *
-       * Optional.
-       * Use this field to specify email address(es) to which resumes or
+       * Optional. Use this field to specify email address(es) to which resumes or
        * applications can be sent.
        * The maximum number of allowed characters for each entry is 255.
        * 
@@ -1395,8 +1371,7 @@ public com.google.protobuf.ByteString getEmailsBytes(int index) { * * *
-       * Optional.
-       * Use this field to specify email address(es) to which resumes or
+       * Optional. Use this field to specify email address(es) to which resumes or
        * applications can be sent.
        * The maximum number of allowed characters for each entry is 255.
        * 
@@ -1416,8 +1391,7 @@ public Builder setEmails(int index, java.lang.String value) { * * *
-       * Optional.
-       * Use this field to specify email address(es) to which resumes or
+       * Optional. Use this field to specify email address(es) to which resumes or
        * applications can be sent.
        * The maximum number of allowed characters for each entry is 255.
        * 
@@ -1437,8 +1411,7 @@ public Builder addEmails(java.lang.String value) { * * *
-       * Optional.
-       * Use this field to specify email address(es) to which resumes or
+       * Optional. Use this field to specify email address(es) to which resumes or
        * applications can be sent.
        * The maximum number of allowed characters for each entry is 255.
        * 
@@ -1455,8 +1428,7 @@ public Builder addAllEmails(java.lang.Iterable values) { * * *
-       * Optional.
-       * Use this field to specify email address(es) to which resumes or
+       * Optional. Use this field to specify email address(es) to which resumes or
        * applications can be sent.
        * The maximum number of allowed characters for each entry is 255.
        * 
@@ -1473,8 +1445,7 @@ public Builder clearEmails() { * * *
-       * Optional.
-       * Use this field to specify email address(es) to which resumes or
+       * Optional. Use this field to specify email address(es) to which resumes or
        * applications can be sent.
        * The maximum number of allowed characters for each entry is 255.
        * 
@@ -1497,9 +1468,8 @@ public Builder addEmailsBytes(com.google.protobuf.ByteString value) { * * *
-       * Optional.
-       * Use this field to provide instructions, such as "Mail your application
-       * to ...", that a candidate can follow to apply for the job.
+       * Optional. Use this field to provide instructions, such as "Mail your
+       * application to ...", that a candidate can follow to apply for the job.
        * This field accepts and sanitizes HTML input, and also accepts
        * bold, italic, ordered list, and unordered list markup tags.
        * The maximum number of allowed characters is 3,000.
@@ -1522,9 +1492,8 @@ public java.lang.String getInstruction() {
        *
        *
        * 
-       * Optional.
-       * Use this field to provide instructions, such as "Mail your application
-       * to ...", that a candidate can follow to apply for the job.
+       * Optional. Use this field to provide instructions, such as "Mail your
+       * application to ...", that a candidate can follow to apply for the job.
        * This field accepts and sanitizes HTML input, and also accepts
        * bold, italic, ordered list, and unordered list markup tags.
        * The maximum number of allowed characters is 3,000.
@@ -1547,9 +1516,8 @@ public com.google.protobuf.ByteString getInstructionBytes() {
        *
        *
        * 
-       * Optional.
-       * Use this field to provide instructions, such as "Mail your application
-       * to ...", that a candidate can follow to apply for the job.
+       * Optional. Use this field to provide instructions, such as "Mail your
+       * application to ...", that a candidate can follow to apply for the job.
        * This field accepts and sanitizes HTML input, and also accepts
        * bold, italic, ordered list, and unordered list markup tags.
        * The maximum number of allowed characters is 3,000.
@@ -1570,9 +1538,8 @@ public Builder setInstruction(java.lang.String value) {
        *
        *
        * 
-       * Optional.
-       * Use this field to provide instructions, such as "Mail your application
-       * to ...", that a candidate can follow to apply for the job.
+       * Optional. Use this field to provide instructions, such as "Mail your
+       * application to ...", that a candidate can follow to apply for the job.
        * This field accepts and sanitizes HTML input, and also accepts
        * bold, italic, ordered list, and unordered list markup tags.
        * The maximum number of allowed characters is 3,000.
@@ -1590,9 +1557,8 @@ public Builder clearInstruction() {
        *
        *
        * 
-       * Optional.
-       * Use this field to provide instructions, such as "Mail your application
-       * to ...", that a candidate can follow to apply for the job.
+       * Optional. Use this field to provide instructions, such as "Mail your
+       * application to ...", that a candidate can follow to apply for the job.
        * This field accepts and sanitizes HTML input, and also accepts
        * bold, italic, ordered list, and unordered list markup tags.
        * The maximum number of allowed characters is 3,000.
@@ -1624,9 +1590,8 @@ private void ensureUrisIsMutable() {
        *
        *
        * 
-       * Optional.
-       * Use this URI field to direct an applicant to a website, for example to
-       * link to an online application form.
+       * Optional. Use this URI field to direct an applicant to a website, for
+       * example to link to an online application form.
        * The maximum number of allowed characters for each entry is 2,000.
        * 
* @@ -1639,9 +1604,8 @@ public com.google.protobuf.ProtocolStringList getUrisList() { * * *
-       * Optional.
-       * Use this URI field to direct an applicant to a website, for example to
-       * link to an online application form.
+       * Optional. Use this URI field to direct an applicant to a website, for
+       * example to link to an online application form.
        * The maximum number of allowed characters for each entry is 2,000.
        * 
* @@ -1654,9 +1618,8 @@ public int getUrisCount() { * * *
-       * Optional.
-       * Use this URI field to direct an applicant to a website, for example to
-       * link to an online application form.
+       * Optional. Use this URI field to direct an applicant to a website, for
+       * example to link to an online application form.
        * The maximum number of allowed characters for each entry is 2,000.
        * 
* @@ -1669,9 +1632,8 @@ public java.lang.String getUris(int index) { * * *
-       * Optional.
-       * Use this URI field to direct an applicant to a website, for example to
-       * link to an online application form.
+       * Optional. Use this URI field to direct an applicant to a website, for
+       * example to link to an online application form.
        * The maximum number of allowed characters for each entry is 2,000.
        * 
* @@ -1684,9 +1646,8 @@ public com.google.protobuf.ByteString getUrisBytes(int index) { * * *
-       * Optional.
-       * Use this URI field to direct an applicant to a website, for example to
-       * link to an online application form.
+       * Optional. Use this URI field to direct an applicant to a website, for
+       * example to link to an online application form.
        * The maximum number of allowed characters for each entry is 2,000.
        * 
* @@ -1705,9 +1666,8 @@ public Builder setUris(int index, java.lang.String value) { * * *
-       * Optional.
-       * Use this URI field to direct an applicant to a website, for example to
-       * link to an online application form.
+       * Optional. Use this URI field to direct an applicant to a website, for
+       * example to link to an online application form.
        * The maximum number of allowed characters for each entry is 2,000.
        * 
* @@ -1726,9 +1686,8 @@ public Builder addUris(java.lang.String value) { * * *
-       * Optional.
-       * Use this URI field to direct an applicant to a website, for example to
-       * link to an online application form.
+       * Optional. Use this URI field to direct an applicant to a website, for
+       * example to link to an online application form.
        * The maximum number of allowed characters for each entry is 2,000.
        * 
* @@ -1744,9 +1703,8 @@ public Builder addAllUris(java.lang.Iterable values) { * * *
-       * Optional.
-       * Use this URI field to direct an applicant to a website, for example to
-       * link to an online application form.
+       * Optional. Use this URI field to direct an applicant to a website, for
+       * example to link to an online application form.
        * The maximum number of allowed characters for each entry is 2,000.
        * 
* @@ -1762,9 +1720,8 @@ public Builder clearUris() { * * *
-       * Optional.
-       * Use this URI field to direct an applicant to a website, for example to
-       * link to an online application form.
+       * Optional. Use this URI field to direct an applicant to a website, for
+       * example to link to an online application form.
        * The maximum number of allowed characters for each entry is 2,000.
        * 
* @@ -3403,8 +3360,7 @@ public interface ProcessingOptionsOrBuilder * * *
-     * Optional.
-     * If set to `true`, the service does not attempt to resolve a
+     * Optional. If set to `true`, the service does not attempt to resolve a
      * more precise address for the job.
      * 
* @@ -3416,8 +3372,7 @@ public interface ProcessingOptionsOrBuilder * * *
-     * Optional.
-     * Option for job HTML content sanitization. Applied fields are:
+     * Optional. Option for job HTML content sanitization. Applied fields are:
      * * description
      * * applicationInfo.instruction
      * * incentives
@@ -3436,8 +3391,7 @@ public interface ProcessingOptionsOrBuilder
      *
      *
      * 
-     * Optional.
-     * Option for job HTML content sanitization. Applied fields are:
+     * Optional. Option for job HTML content sanitization. Applied fields are:
      * * description
      * * applicationInfo.instruction
      * * incentives
@@ -3553,8 +3507,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
      *
      *
      * 
-     * Optional.
-     * If set to `true`, the service does not attempt to resolve a
+     * Optional. If set to `true`, the service does not attempt to resolve a
      * more precise address for the job.
      * 
* @@ -3570,8 +3523,7 @@ public boolean getDisableStreetAddressResolution() { * * *
-     * Optional.
-     * Option for job HTML content sanitization. Applied fields are:
+     * Optional. Option for job HTML content sanitization. Applied fields are:
      * * description
      * * applicationInfo.instruction
      * * incentives
@@ -3592,8 +3544,7 @@ public int getHtmlSanitizationValue() {
      *
      *
      * 
-     * Optional.
-     * Option for job HTML content sanitization. Applied fields are:
+     * Optional. Option for job HTML content sanitization. Applied fields are:
      * * description
      * * applicationInfo.instruction
      * * incentives
@@ -3968,8 +3919,7 @@ public Builder mergeFrom(
        *
        *
        * 
-       * Optional.
-       * If set to `true`, the service does not attempt to resolve a
+       * Optional. If set to `true`, the service does not attempt to resolve a
        * more precise address for the job.
        * 
* @@ -3982,8 +3932,7 @@ public boolean getDisableStreetAddressResolution() { * * *
-       * Optional.
-       * If set to `true`, the service does not attempt to resolve a
+       * Optional. If set to `true`, the service does not attempt to resolve a
        * more precise address for the job.
        * 
* @@ -3999,8 +3948,7 @@ public Builder setDisableStreetAddressResolution(boolean value) { * * *
-       * Optional.
-       * If set to `true`, the service does not attempt to resolve a
+       * Optional. If set to `true`, the service does not attempt to resolve a
        * more precise address for the job.
        * 
* @@ -4018,8 +3966,7 @@ public Builder clearDisableStreetAddressResolution() { * * *
-       * Optional.
-       * Option for job HTML content sanitization. Applied fields are:
+       * Optional. Option for job HTML content sanitization. Applied fields are:
        * * description
        * * applicationInfo.instruction
        * * incentives
@@ -4040,8 +3987,7 @@ public int getHtmlSanitizationValue() {
        *
        *
        * 
-       * Optional.
-       * Option for job HTML content sanitization. Applied fields are:
+       * Optional. Option for job HTML content sanitization. Applied fields are:
        * * description
        * * applicationInfo.instruction
        * * incentives
@@ -4064,8 +4010,7 @@ public Builder setHtmlSanitizationValue(int value) {
        *
        *
        * 
-       * Optional.
-       * Option for job HTML content sanitization. Applied fields are:
+       * Optional. Option for job HTML content sanitization. Applied fields are:
        * * description
        * * applicationInfo.instruction
        * * incentives
@@ -4091,8 +4036,7 @@ public com.google.cloud.talent.v4beta1.HtmlSanitization getHtmlSanitization() {
        *
        *
        * 
-       * Optional.
-       * Option for job HTML content sanitization. Applied fields are:
+       * Optional. Option for job HTML content sanitization. Applied fields are:
        * * description
        * * applicationInfo.instruction
        * * incentives
@@ -4119,8 +4063,7 @@ public Builder setHtmlSanitization(com.google.cloud.talent.v4beta1.HtmlSanitizat
        *
        *
        * 
-       * Optional.
-       * Option for job HTML content sanitization. Applied fields are:
+       * Optional. Option for job HTML content sanitization. Applied fields are:
        * * description
        * * applicationInfo.instruction
        * * incentives
@@ -4263,8 +4206,7 @@ public com.google.protobuf.ByteString getNameBytes() {
    *
    *
    * 
-   * Required.
-   * The resource name of the company listing the job.
+   * Required. The resource name of the company listing the job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -4289,8 +4231,7 @@ public java.lang.String getCompany() {
    *
    *
    * 
-   * Required.
-   * The resource name of the company listing the job.
+   * Required. The resource name of the company listing the job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -4318,11 +4259,10 @@ public com.google.protobuf.ByteString getCompanyBytes() {
    *
    *
    * 
-   * Required.
-   * The requisition ID, also referred to as the posting ID, is assigned by the
-   * client to identify a job. This field is intended to be used by clients
-   * for client identification and tracking of postings. A job isn't allowed
-   * to be created if there is another job with the same
+   * Required. The requisition ID, also referred to as the posting ID, is
+   * assigned by the client to identify a job. This field is intended to be used
+   * by clients for client identification and tracking of postings. A job isn't
+   * allowed to be created if there is another job with the same
    * [company][google.cloud.talent.v4beta1.Job.name],
    * [language_code][google.cloud.talent.v4beta1.Job.language_code] and
    * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id].
@@ -4346,11 +4286,10 @@ public java.lang.String getRequisitionId() {
    *
    *
    * 
-   * Required.
-   * The requisition ID, also referred to as the posting ID, is assigned by the
-   * client to identify a job. This field is intended to be used by clients
-   * for client identification and tracking of postings. A job isn't allowed
-   * to be created if there is another job with the same
+   * Required. The requisition ID, also referred to as the posting ID, is
+   * assigned by the client to identify a job. This field is intended to be used
+   * by clients for client identification and tracking of postings. A job isn't
+   * allowed to be created if there is another job with the same
    * [company][google.cloud.talent.v4beta1.Job.name],
    * [language_code][google.cloud.talent.v4beta1.Job.language_code] and
    * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id].
@@ -4377,8 +4316,7 @@ public com.google.protobuf.ByteString getRequisitionIdBytes() {
    *
    *
    * 
-   * Required.
-   * The title of the job, such as "Software Engineer"
+   * Required. The title of the job, such as "Software Engineer"
    * The maximum number of allowed characters is 500.
    * 
* @@ -4399,8 +4337,7 @@ public java.lang.String getTitle() { * * *
-   * Required.
-   * The title of the job, such as "Software Engineer"
+   * Required. The title of the job, such as "Software Engineer"
    * The maximum number of allowed characters is 500.
    * 
* @@ -4424,10 +4361,9 @@ public com.google.protobuf.ByteString getTitleBytes() { * * *
-   * Required.
-   * The description of the job, which typically includes a multi-paragraph
-   * description of the company and related information. Separate fields are
-   * provided on the job object for
+   * Required. The description of the job, which typically includes a
+   * multi-paragraph description of the company and related information.
+   * Separate fields are provided on the job object for
    * [responsibilities][google.cloud.talent.v4beta1.Job.responsibilities],
    * [qualifications][google.cloud.talent.v4beta1.Job.qualifications], and other
    * job characteristics. Use of these separate job fields is recommended.
@@ -4453,10 +4389,9 @@ public java.lang.String getDescription() {
    *
    *
    * 
-   * Required.
-   * The description of the job, which typically includes a multi-paragraph
-   * description of the company and related information. Separate fields are
-   * provided on the job object for
+   * Required. The description of the job, which typically includes a
+   * multi-paragraph description of the company and related information.
+   * Separate fields are provided on the job object for
    * [responsibilities][google.cloud.talent.v4beta1.Job.responsibilities],
    * [qualifications][google.cloud.talent.v4beta1.Job.qualifications], and other
    * job characteristics. Use of these separate job fields is recommended.
@@ -4600,8 +4535,7 @@ public com.google.protobuf.ByteString getAddressesBytes(int index) {
    *
    *
    * 
-   * Optional.
-   * Job application information.
+   * Optional. Job application information.
    * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -4613,8 +4547,7 @@ public boolean hasApplicationInfo() { * * *
-   * Optional.
-   * Job application information.
+   * Optional. Job application information.
    * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -4628,8 +4561,7 @@ public com.google.cloud.talent.v4beta1.Job.ApplicationInfo getApplicationInfo() * * *
-   * Optional.
-   * Job application information.
+   * Optional. Job application information.
    * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -4659,8 +4591,7 @@ public com.google.cloud.talent.v4beta1.JobBenefit convert(java.lang.Integer from * * *
-   * Optional.
-   * The benefits included with the job.
+   * Optional. The benefits included with the job.
    * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -4674,8 +4605,7 @@ public java.util.List getJobBenefits * * *
-   * Optional.
-   * The benefits included with the job.
+   * Optional. The benefits included with the job.
    * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -4687,8 +4617,7 @@ public int getJobBenefitsCount() { * * *
-   * Optional.
-   * The benefits included with the job.
+   * Optional. The benefits included with the job.
    * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -4700,8 +4629,7 @@ public com.google.cloud.talent.v4beta1.JobBenefit getJobBenefits(int index) { * * *
-   * Optional.
-   * The benefits included with the job.
+   * Optional. The benefits included with the job.
    * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -4713,8 +4641,7 @@ public java.util.List getJobBenefitsValueList() { * * *
-   * Optional.
-   * The benefits included with the job.
+   * Optional. The benefits included with the job.
    * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -4731,9 +4658,8 @@ public int getJobBenefitsValue(int index) { * * *
-   * Optional.
-   * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-   * that will paid to the employee.
+   * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+   * compensation that will paid to the employee.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -4745,9 +4671,8 @@ public boolean hasCompensationInfo() { * * *
-   * Optional.
-   * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-   * that will paid to the employee.
+   * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+   * compensation that will paid to the employee.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -4761,9 +4686,8 @@ public com.google.cloud.talent.v4beta1.CompensationInfo getCompensationInfo() { * * *
-   * Optional.
-   * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-   * that will paid to the employee.
+   * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+   * compensation that will paid to the employee.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -4810,9 +4734,8 @@ public int getCustomAttributesCount() { * * *
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom job
-   * attributes that are not covered by the provided structured fields.
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * job attributes that are not covered by the provided structured fields.
    * The keys of the map are strings up to 64 bytes and must match the
    * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
    * KEY_1_LIKE_THIS.
@@ -4842,9 +4765,8 @@ public boolean containsCustomAttributes(java.lang.String key) {
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom job
-   * attributes that are not covered by the provided structured fields.
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * job attributes that are not covered by the provided structured fields.
    * The keys of the map are strings up to 64 bytes and must match the
    * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
    * KEY_1_LIKE_THIS.
@@ -4866,9 +4788,8 @@ public boolean containsCustomAttributes(java.lang.String key) {
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom job
-   * attributes that are not covered by the provided structured fields.
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * job attributes that are not covered by the provided structured fields.
    * The keys of the map are strings up to 64 bytes and must match the
    * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
    * KEY_1_LIKE_THIS.
@@ -4895,9 +4816,8 @@ public com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefa
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom job
-   * attributes that are not covered by the provided structured fields.
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * job attributes that are not covered by the provided structured fields.
    * The keys of the map are strings up to 64 bytes and must match the
    * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
    * KEY_1_LIKE_THIS.
@@ -4944,8 +4864,8 @@ public com.google.cloud.talent.v4beta1.DegreeType convert(java.lang.Integer from
    *
    *
    * 
-   * Optional.
-   * The desired education degrees for the job, such as Bachelors, Masters.
+   * Optional. The desired education degrees for the job, such as Bachelors,
+   * Masters.
    * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -4959,8 +4879,8 @@ public java.util.List getDegreeTypes * * *
-   * Optional.
-   * The desired education degrees for the job, such as Bachelors, Masters.
+   * Optional. The desired education degrees for the job, such as Bachelors,
+   * Masters.
    * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -4972,8 +4892,8 @@ public int getDegreeTypesCount() { * * *
-   * Optional.
-   * The desired education degrees for the job, such as Bachelors, Masters.
+   * Optional. The desired education degrees for the job, such as Bachelors,
+   * Masters.
    * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -4985,8 +4905,8 @@ public com.google.cloud.talent.v4beta1.DegreeType getDegreeTypes(int index) { * * *
-   * Optional.
-   * The desired education degrees for the job, such as Bachelors, Masters.
+   * Optional. The desired education degrees for the job, such as Bachelors,
+   * Masters.
    * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -4998,8 +4918,8 @@ public java.util.List getDegreeTypesValueList() { * * *
-   * Optional.
-   * The desired education degrees for the job, such as Bachelors, Masters.
+   * Optional. The desired education degrees for the job, such as Bachelors,
+   * Masters.
    * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -5016,9 +4936,8 @@ public int getDegreeTypesValue(int index) { * * *
-   * Optional.
-   * The department or functional area within the company with the open
-   * position.
+   * Optional. The department or functional area within the company with the
+   * open position.
    * The maximum number of allowed characters is 255.
    * 
* @@ -5039,9 +4958,8 @@ public java.lang.String getDepartment() { * * *
-   * Optional.
-   * The department or functional area within the company with the open
-   * position.
+   * Optional. The department or functional area within the company with the
+   * open position.
    * The maximum number of allowed characters is 255.
    * 
* @@ -5079,8 +4997,7 @@ public com.google.cloud.talent.v4beta1.EmploymentType convert(java.lang.Integer * * *
-   * Optional.
-   * The employment type(s) of a job, for example,
+   * Optional. The employment type(s) of a job, for example,
    * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
    * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
    * 
@@ -5096,8 +5013,7 @@ public java.util.List getEmploym * * *
-   * Optional.
-   * The employment type(s) of a job, for example,
+   * Optional. The employment type(s) of a job, for example,
    * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
    * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
    * 
@@ -5111,8 +5027,7 @@ public int getEmploymentTypesCount() { * * *
-   * Optional.
-   * The employment type(s) of a job, for example,
+   * Optional. The employment type(s) of a job, for example,
    * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
    * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
    * 
@@ -5126,8 +5041,7 @@ public com.google.cloud.talent.v4beta1.EmploymentType getEmploymentTypes(int ind * * *
-   * Optional.
-   * The employment type(s) of a job, for example,
+   * Optional. The employment type(s) of a job, for example,
    * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
    * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
    * 
@@ -5141,8 +5055,7 @@ public java.util.List getEmploymentTypesValueList() { * * *
-   * Optional.
-   * The employment type(s) of a job, for example,
+   * Optional. The employment type(s) of a job, for example,
    * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
    * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
    * 
@@ -5161,8 +5074,7 @@ public int getEmploymentTypesValue(int index) { * * *
-   * Optional.
-   * A description of bonus, commission, and other compensation
+   * Optional. A description of bonus, commission, and other compensation
    * incentives associated with the job not including salary or pay.
    * The maximum number of allowed characters is 10,000.
    * 
@@ -5184,8 +5096,7 @@ public java.lang.String getIncentives() { * * *
-   * Optional.
-   * A description of bonus, commission, and other compensation
+   * Optional. A description of bonus, commission, and other compensation
    * incentives associated with the job not including salary or pay.
    * The maximum number of allowed characters is 10,000.
    * 
@@ -5210,8 +5121,7 @@ public com.google.protobuf.ByteString getIncentivesBytes() { * * *
-   * Optional.
-   * The language of the posting. This field is distinct from
+   * Optional. The language of the posting. This field is distinct from
    * any requirements for fluency that are associated with the job.
    * Language codes must be in BCP-47 format, such as "en-US" or "sr-Latn".
    * For more information, see
@@ -5241,8 +5151,7 @@ public java.lang.String getLanguageCode() {
    *
    *
    * 
-   * Optional.
-   * The language of the posting. This field is distinct from
+   * Optional. The language of the posting. This field is distinct from
    * any requirements for fluency that are associated with the job.
    * Language codes must be in BCP-47 format, such as "en-US" or "sr-Latn".
    * For more information, see
@@ -5275,8 +5184,8 @@ public com.google.protobuf.ByteString getLanguageCodeBytes() {
    *
    *
    * 
-   * Optional.
-   * The experience level associated with the job, such as "Entry Level".
+   * Optional. The experience level associated with the job, such as "Entry
+   * Level".
    * 
* * .google.cloud.talent.v4beta1.JobLevel job_level = 16; @@ -5288,8 +5197,8 @@ public int getJobLevelValue() { * * *
-   * Optional.
-   * The experience level associated with the job, such as "Entry Level".
+   * Optional. The experience level associated with the job, such as "Entry
+   * Level".
    * 
* * .google.cloud.talent.v4beta1.JobLevel job_level = 16; @@ -5307,8 +5216,7 @@ public com.google.cloud.talent.v4beta1.JobLevel getJobLevel() { * * *
-   * Optional.
-   * A promotion value of the job, as determined by the client.
+   * Optional. A promotion value of the job, as determined by the client.
    * The value determines the sort order of the jobs returned when searching for
    * jobs using the featured jobs search call, with higher promotional values
    * being returned first and ties being resolved by relevance sort. Only the
@@ -5328,8 +5236,7 @@ public int getPromotionValue() {
    *
    *
    * 
-   * Optional.
-   * A description of the qualifications required to perform the
+   * Optional. A description of the qualifications required to perform the
    * job. The use of this field is recommended
    * as an alternative to using the more general
    * [description][google.cloud.talent.v4beta1.Job.description] field.
@@ -5355,8 +5262,7 @@ public java.lang.String getQualifications() {
    *
    *
    * 
-   * Optional.
-   * A description of the qualifications required to perform the
+   * Optional. A description of the qualifications required to perform the
    * job. The use of this field is recommended
    * as an alternative to using the more general
    * [description][google.cloud.talent.v4beta1.Job.description] field.
@@ -5385,8 +5291,7 @@ public com.google.protobuf.ByteString getQualificationsBytes() {
    *
    *
    * 
-   * Optional.
-   * A description of job responsibilities. The use of this field is
+   * Optional. A description of job responsibilities. The use of this field is
    * recommended as an alternative to using the more general
    * [description][google.cloud.talent.v4beta1.Job.description] field.
    * This field accepts and sanitizes HTML input, and also accepts
@@ -5411,8 +5316,7 @@ public java.lang.String getResponsibilities() {
    *
    *
    * 
-   * Optional.
-   * A description of job responsibilities. The use of this field is
+   * Optional. A description of job responsibilities. The use of this field is
    * recommended as an alternative to using the more general
    * [description][google.cloud.talent.v4beta1.Job.description] field.
    * This field accepts and sanitizes HTML input, and also accepts
@@ -5440,13 +5344,12 @@ public com.google.protobuf.ByteString getResponsibilitiesBytes() {
    *
    *
    * 
-   * Optional.
-   * The job [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for
-   * example, state, country) throughout which the job is available. If this
-   * field is set, a
-   * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a search
-   * query within the job region finds this job posting if an exact location
-   * match isn't specified. If this field is set to
+   * Optional. The job
+   * [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for example,
+   * state, country) throughout which the job is available. If this field is
+   * set, a [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a
+   * search query within the job region finds this job posting if an exact
+   * location match isn't specified. If this field is set to
    * [PostingRegion.NATION][google.cloud.talent.v4beta1.PostingRegion.NATION] or
    * [PostingRegion.ADMINISTRATIVE_AREA][google.cloud.talent.v4beta1.PostingRegion.ADMINISTRATIVE_AREA],
    * setting job [Job.addresses][google.cloud.talent.v4beta1.Job.addresses] to
@@ -5462,13 +5365,12 @@ public int getPostingRegionValue() {
    *
    *
    * 
-   * Optional.
-   * The job [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for
-   * example, state, country) throughout which the job is available. If this
-   * field is set, a
-   * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a search
-   * query within the job region finds this job posting if an exact location
-   * match isn't specified. If this field is set to
+   * Optional. The job
+   * [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for example,
+   * state, country) throughout which the job is available. If this field is
+   * set, a [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a
+   * search query within the job region finds this job posting if an exact
+   * location match isn't specified. If this field is set to
    * [PostingRegion.NATION][google.cloud.talent.v4beta1.PostingRegion.NATION] or
    * [PostingRegion.ADMINISTRATIVE_AREA][google.cloud.talent.v4beta1.PostingRegion.ADMINISTRATIVE_AREA],
    * setting job [Job.addresses][google.cloud.talent.v4beta1.Job.addresses] to
@@ -5490,8 +5392,7 @@ public com.google.cloud.talent.v4beta1.PostingRegion getPostingRegion() {
    *
    *
    * 
-   * Optional.
-   * The visibility of the job.
+   * Optional. The visibility of the job.
    * Defaults to
    * [Visibility.ACCOUNT_ONLY][google.cloud.talent.v4beta1.Visibility.ACCOUNT_ONLY]
    * if not specified.
@@ -5506,8 +5407,7 @@ public int getVisibilityValue() {
    *
    *
    * 
-   * Optional.
-   * The visibility of the job.
+   * Optional. The visibility of the job.
    * Defaults to
    * [Visibility.ACCOUNT_ONLY][google.cloud.talent.v4beta1.Visibility.ACCOUNT_ONLY]
    * if not specified.
@@ -5528,9 +5428,8 @@ public com.google.cloud.talent.v4beta1.Visibility getVisibility() {
    *
    *
    * 
-   * Optional.
-   * The start timestamp of the job in UTC time zone. Typically this field
-   * is used for contracting engagements. Invalid timestamps are ignored.
+   * Optional. The start timestamp of the job in UTC time zone. Typically this
+   * field is used for contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -5542,9 +5441,8 @@ public boolean hasJobStartTime() { * * *
-   * Optional.
-   * The start timestamp of the job in UTC time zone. Typically this field
-   * is used for contracting engagements. Invalid timestamps are ignored.
+   * Optional. The start timestamp of the job in UTC time zone. Typically this
+   * field is used for contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -5558,9 +5456,8 @@ public com.google.protobuf.Timestamp getJobStartTime() { * * *
-   * Optional.
-   * The start timestamp of the job in UTC time zone. Typically this field
-   * is used for contracting engagements. Invalid timestamps are ignored.
+   * Optional. The start timestamp of the job in UTC time zone. Typically this
+   * field is used for contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -5575,9 +5472,8 @@ public com.google.protobuf.TimestampOrBuilder getJobStartTimeOrBuilder() { * * *
-   * Optional.
-   * The end timestamp of the job. Typically this field is used for contracting
-   * engagements. Invalid timestamps are ignored.
+   * Optional. The end timestamp of the job. Typically this field is used for
+   * contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -5589,9 +5485,8 @@ public boolean hasJobEndTime() { * * *
-   * Optional.
-   * The end timestamp of the job. Typically this field is used for contracting
-   * engagements. Invalid timestamps are ignored.
+   * Optional. The end timestamp of the job. Typically this field is used for
+   * contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -5603,9 +5498,8 @@ public com.google.protobuf.Timestamp getJobEndTime() { * * *
-   * Optional.
-   * The end timestamp of the job. Typically this field is used for contracting
-   * engagements. Invalid timestamps are ignored.
+   * Optional. The end timestamp of the job. Typically this field is used for
+   * contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -5620,10 +5514,9 @@ public com.google.protobuf.TimestampOrBuilder getJobEndTimeOrBuilder() { * * *
-   * Optional.
-   * The timestamp this job posting was most recently published. The default
-   * value is the time the request arrives at the server. Invalid timestamps are
-   * ignored.
+   * Optional. The timestamp this job posting was most recently published. The
+   * default value is the time the request arrives at the server. Invalid
+   * timestamps are ignored.
    * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -5635,10 +5528,9 @@ public boolean hasPostingPublishTime() { * * *
-   * Optional.
-   * The timestamp this job posting was most recently published. The default
-   * value is the time the request arrives at the server. Invalid timestamps are
-   * ignored.
+   * Optional. The timestamp this job posting was most recently published. The
+   * default value is the time the request arrives at the server. Invalid
+   * timestamps are ignored.
    * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -5652,10 +5544,9 @@ public com.google.protobuf.Timestamp getPostingPublishTime() { * * *
-   * Optional.
-   * The timestamp this job posting was most recently published. The default
-   * value is the time the request arrives at the server. Invalid timestamps are
-   * ignored.
+   * Optional. The timestamp this job posting was most recently published. The
+   * default value is the time the request arrives at the server. Invalid
+   * timestamps are ignored.
    * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -5674,25 +5565,35 @@ public com.google.protobuf.TimestampOrBuilder getPostingPublishTimeOrBuilder() { * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -5720,25 +5621,35 @@ public boolean hasPostingExpireTime() { * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -5768,25 +5679,35 @@ public com.google.protobuf.Timestamp getPostingExpireTime() { * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -5979,8 +5900,7 @@ public com.google.cloud.talent.v4beta1.Job.DerivedInfoOrBuilder getDerivedInfoOr * * *
-   * Optional.
-   * Options for job processing.
+   * Optional. Options for job processing.
    * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -5992,8 +5912,7 @@ public boolean hasProcessingOptions() { * * *
-   * Optional.
-   * Options for job processing.
+   * Optional. Options for job processing.
    * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -6007,8 +5926,7 @@ public com.google.cloud.talent.v4beta1.Job.ProcessingOptions getProcessingOption * * *
-   * Optional.
-   * Options for job processing.
+   * Optional. Options for job processing.
    * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -7193,8 +7111,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Required.
-     * The resource name of the company listing the job.
+     * Required. The resource name of the company listing the job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -7219,8 +7136,7 @@ public java.lang.String getCompany() {
      *
      *
      * 
-     * Required.
-     * The resource name of the company listing the job.
+     * Required. The resource name of the company listing the job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -7245,8 +7161,7 @@ public com.google.protobuf.ByteString getCompanyBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the company listing the job.
+     * Required. The resource name of the company listing the job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -7269,8 +7184,7 @@ public Builder setCompany(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the company listing the job.
+     * Required. The resource name of the company listing the job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -7290,8 +7204,7 @@ public Builder clearCompany() {
      *
      *
      * 
-     * Required.
-     * The resource name of the company listing the job.
+     * Required. The resource name of the company listing the job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
      * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -7317,11 +7230,10 @@ public Builder setCompanyBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * The requisition ID, also referred to as the posting ID, is assigned by the
-     * client to identify a job. This field is intended to be used by clients
-     * for client identification and tracking of postings. A job isn't allowed
-     * to be created if there is another job with the same
+     * Required. The requisition ID, also referred to as the posting ID, is
+     * assigned by the client to identify a job. This field is intended to be used
+     * by clients for client identification and tracking of postings. A job isn't
+     * allowed to be created if there is another job with the same
      * [company][google.cloud.talent.v4beta1.Job.name],
      * [language_code][google.cloud.talent.v4beta1.Job.language_code] and
      * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id].
@@ -7345,11 +7257,10 @@ public java.lang.String getRequisitionId() {
      *
      *
      * 
-     * Required.
-     * The requisition ID, also referred to as the posting ID, is assigned by the
-     * client to identify a job. This field is intended to be used by clients
-     * for client identification and tracking of postings. A job isn't allowed
-     * to be created if there is another job with the same
+     * Required. The requisition ID, also referred to as the posting ID, is
+     * assigned by the client to identify a job. This field is intended to be used
+     * by clients for client identification and tracking of postings. A job isn't
+     * allowed to be created if there is another job with the same
      * [company][google.cloud.talent.v4beta1.Job.name],
      * [language_code][google.cloud.talent.v4beta1.Job.language_code] and
      * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id].
@@ -7373,11 +7284,10 @@ public com.google.protobuf.ByteString getRequisitionIdBytes() {
      *
      *
      * 
-     * Required.
-     * The requisition ID, also referred to as the posting ID, is assigned by the
-     * client to identify a job. This field is intended to be used by clients
-     * for client identification and tracking of postings. A job isn't allowed
-     * to be created if there is another job with the same
+     * Required. The requisition ID, also referred to as the posting ID, is
+     * assigned by the client to identify a job. This field is intended to be used
+     * by clients for client identification and tracking of postings. A job isn't
+     * allowed to be created if there is another job with the same
      * [company][google.cloud.talent.v4beta1.Job.name],
      * [language_code][google.cloud.talent.v4beta1.Job.language_code] and
      * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id].
@@ -7399,11 +7309,10 @@ public Builder setRequisitionId(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The requisition ID, also referred to as the posting ID, is assigned by the
-     * client to identify a job. This field is intended to be used by clients
-     * for client identification and tracking of postings. A job isn't allowed
-     * to be created if there is another job with the same
+     * Required. The requisition ID, also referred to as the posting ID, is
+     * assigned by the client to identify a job. This field is intended to be used
+     * by clients for client identification and tracking of postings. A job isn't
+     * allowed to be created if there is another job with the same
      * [company][google.cloud.talent.v4beta1.Job.name],
      * [language_code][google.cloud.talent.v4beta1.Job.language_code] and
      * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id].
@@ -7422,11 +7331,10 @@ public Builder clearRequisitionId() {
      *
      *
      * 
-     * Required.
-     * The requisition ID, also referred to as the posting ID, is assigned by the
-     * client to identify a job. This field is intended to be used by clients
-     * for client identification and tracking of postings. A job isn't allowed
-     * to be created if there is another job with the same
+     * Required. The requisition ID, also referred to as the posting ID, is
+     * assigned by the client to identify a job. This field is intended to be used
+     * by clients for client identification and tracking of postings. A job isn't
+     * allowed to be created if there is another job with the same
      * [company][google.cloud.talent.v4beta1.Job.name],
      * [language_code][google.cloud.talent.v4beta1.Job.language_code] and
      * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id].
@@ -7451,8 +7359,7 @@ public Builder setRequisitionIdBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * The title of the job, such as "Software Engineer"
+     * Required. The title of the job, such as "Software Engineer"
      * The maximum number of allowed characters is 500.
      * 
* @@ -7473,8 +7380,7 @@ public java.lang.String getTitle() { * * *
-     * Required.
-     * The title of the job, such as "Software Engineer"
+     * Required. The title of the job, such as "Software Engineer"
      * The maximum number of allowed characters is 500.
      * 
* @@ -7495,8 +7401,7 @@ public com.google.protobuf.ByteString getTitleBytes() { * * *
-     * Required.
-     * The title of the job, such as "Software Engineer"
+     * Required. The title of the job, such as "Software Engineer"
      * The maximum number of allowed characters is 500.
      * 
* @@ -7515,8 +7420,7 @@ public Builder setTitle(java.lang.String value) { * * *
-     * Required.
-     * The title of the job, such as "Software Engineer"
+     * Required. The title of the job, such as "Software Engineer"
      * The maximum number of allowed characters is 500.
      * 
* @@ -7532,8 +7436,7 @@ public Builder clearTitle() { * * *
-     * Required.
-     * The title of the job, such as "Software Engineer"
+     * Required. The title of the job, such as "Software Engineer"
      * The maximum number of allowed characters is 500.
      * 
* @@ -7555,10 +7458,9 @@ public Builder setTitleBytes(com.google.protobuf.ByteString value) { * * *
-     * Required.
-     * The description of the job, which typically includes a multi-paragraph
-     * description of the company and related information. Separate fields are
-     * provided on the job object for
+     * Required. The description of the job, which typically includes a
+     * multi-paragraph description of the company and related information.
+     * Separate fields are provided on the job object for
      * [responsibilities][google.cloud.talent.v4beta1.Job.responsibilities],
      * [qualifications][google.cloud.talent.v4beta1.Job.qualifications], and other
      * job characteristics. Use of these separate job fields is recommended.
@@ -7584,10 +7486,9 @@ public java.lang.String getDescription() {
      *
      *
      * 
-     * Required.
-     * The description of the job, which typically includes a multi-paragraph
-     * description of the company and related information. Separate fields are
-     * provided on the job object for
+     * Required. The description of the job, which typically includes a
+     * multi-paragraph description of the company and related information.
+     * Separate fields are provided on the job object for
      * [responsibilities][google.cloud.talent.v4beta1.Job.responsibilities],
      * [qualifications][google.cloud.talent.v4beta1.Job.qualifications], and other
      * job characteristics. Use of these separate job fields is recommended.
@@ -7613,10 +7514,9 @@ public com.google.protobuf.ByteString getDescriptionBytes() {
      *
      *
      * 
-     * Required.
-     * The description of the job, which typically includes a multi-paragraph
-     * description of the company and related information. Separate fields are
-     * provided on the job object for
+     * Required. The description of the job, which typically includes a
+     * multi-paragraph description of the company and related information.
+     * Separate fields are provided on the job object for
      * [responsibilities][google.cloud.talent.v4beta1.Job.responsibilities],
      * [qualifications][google.cloud.talent.v4beta1.Job.qualifications], and other
      * job characteristics. Use of these separate job fields is recommended.
@@ -7640,10 +7540,9 @@ public Builder setDescription(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The description of the job, which typically includes a multi-paragraph
-     * description of the company and related information. Separate fields are
-     * provided on the job object for
+     * Required. The description of the job, which typically includes a
+     * multi-paragraph description of the company and related information.
+     * Separate fields are provided on the job object for
      * [responsibilities][google.cloud.talent.v4beta1.Job.responsibilities],
      * [qualifications][google.cloud.talent.v4beta1.Job.qualifications], and other
      * job characteristics. Use of these separate job fields is recommended.
@@ -7664,10 +7563,9 @@ public Builder clearDescription() {
      *
      *
      * 
-     * Required.
-     * The description of the job, which typically includes a multi-paragraph
-     * description of the company and related information. Separate fields are
-     * provided on the job object for
+     * Required. The description of the job, which typically includes a
+     * multi-paragraph description of the company and related information.
+     * Separate fields are provided on the job object for
      * [responsibilities][google.cloud.talent.v4beta1.Job.responsibilities],
      * [qualifications][google.cloud.talent.v4beta1.Job.qualifications], and other
      * job characteristics. Use of these separate job fields is recommended.
@@ -7986,8 +7884,7 @@ public Builder addAddressesBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * Job application information.
+     * Optional. Job application information.
      * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -7999,8 +7896,7 @@ public boolean hasApplicationInfo() { * * *
-     * Optional.
-     * Job application information.
+     * Optional. Job application information.
      * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -8018,8 +7914,7 @@ public com.google.cloud.talent.v4beta1.Job.ApplicationInfo getApplicationInfo() * * *
-     * Optional.
-     * Job application information.
+     * Optional. Job application information.
      * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -8041,8 +7936,7 @@ public Builder setApplicationInfo(com.google.cloud.talent.v4beta1.Job.Applicatio * * *
-     * Optional.
-     * Job application information.
+     * Optional. Job application information.
      * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -8062,8 +7956,7 @@ public Builder setApplicationInfo( * * *
-     * Optional.
-     * Job application information.
+     * Optional. Job application information.
      * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -8089,8 +7982,7 @@ public Builder mergeApplicationInfo(com.google.cloud.talent.v4beta1.Job.Applicat * * *
-     * Optional.
-     * Job application information.
+     * Optional. Job application information.
      * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -8110,8 +8002,7 @@ public Builder clearApplicationInfo() { * * *
-     * Optional.
-     * Job application information.
+     * Optional. Job application information.
      * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -8125,8 +8016,7 @@ public com.google.cloud.talent.v4beta1.Job.ApplicationInfo.Builder getApplicatio * * *
-     * Optional.
-     * Job application information.
+     * Optional. Job application information.
      * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -8145,8 +8035,7 @@ public com.google.cloud.talent.v4beta1.Job.ApplicationInfo.Builder getApplicatio * * *
-     * Optional.
-     * Job application information.
+     * Optional. Job application information.
      * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -8180,8 +8069,7 @@ private void ensureJobBenefitsIsMutable() { * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8195,8 +8083,7 @@ public java.util.List getJobBenefits * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8208,8 +8095,7 @@ public int getJobBenefitsCount() { * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8221,8 +8107,7 @@ public com.google.cloud.talent.v4beta1.JobBenefit getJobBenefits(int index) { * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8240,8 +8125,7 @@ public Builder setJobBenefits(int index, com.google.cloud.talent.v4beta1.JobBene * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8259,8 +8143,7 @@ public Builder addJobBenefits(com.google.cloud.talent.v4beta1.JobBenefit value) * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8278,8 +8161,7 @@ public Builder addAllJobBenefits( * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8294,8 +8176,7 @@ public Builder clearJobBenefits() { * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8307,8 +8188,7 @@ public java.util.List getJobBenefitsValueList() { * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8320,8 +8200,7 @@ public int getJobBenefitsValue(int index) { * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8336,8 +8215,7 @@ public Builder setJobBenefitsValue(int index, int value) { * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8352,8 +8230,7 @@ public Builder addJobBenefitsValue(int value) { * * *
-     * Optional.
-     * The benefits included with the job.
+     * Optional. The benefits included with the job.
      * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -8377,9 +8254,8 @@ public Builder addAllJobBenefitsValue(java.lang.Iterable valu * * *
-     * Optional.
-     * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-     * that will paid to the employee.
+     * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+     * compensation that will paid to the employee.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -8391,9 +8267,8 @@ public boolean hasCompensationInfo() { * * *
-     * Optional.
-     * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-     * that will paid to the employee.
+     * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+     * compensation that will paid to the employee.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -8411,9 +8286,8 @@ public com.google.cloud.talent.v4beta1.CompensationInfo getCompensationInfo() { * * *
-     * Optional.
-     * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-     * that will paid to the employee.
+     * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+     * compensation that will paid to the employee.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -8435,9 +8309,8 @@ public Builder setCompensationInfo(com.google.cloud.talent.v4beta1.CompensationI * * *
-     * Optional.
-     * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-     * that will paid to the employee.
+     * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+     * compensation that will paid to the employee.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -8457,9 +8330,8 @@ public Builder setCompensationInfo( * * *
-     * Optional.
-     * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-     * that will paid to the employee.
+     * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+     * compensation that will paid to the employee.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -8485,9 +8357,8 @@ public Builder mergeCompensationInfo(com.google.cloud.talent.v4beta1.Compensatio * * *
-     * Optional.
-     * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-     * that will paid to the employee.
+     * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+     * compensation that will paid to the employee.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -8507,9 +8378,8 @@ public Builder clearCompensationInfo() { * * *
-     * Optional.
-     * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-     * that will paid to the employee.
+     * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+     * compensation that will paid to the employee.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -8523,9 +8393,8 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.Builder getCompensationI * * *
-     * Optional.
-     * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-     * that will paid to the employee.
+     * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+     * compensation that will paid to the employee.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -8544,9 +8413,8 @@ public com.google.cloud.talent.v4beta1.CompensationInfo.Builder getCompensationI * * *
-     * Optional.
-     * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-     * that will paid to the employee.
+     * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+     * compensation that will paid to the employee.
      * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -8605,9 +8473,8 @@ public int getCustomAttributesCount() { * * *
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom job
-     * attributes that are not covered by the provided structured fields.
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * job attributes that are not covered by the provided structured fields.
      * The keys of the map are strings up to 64 bytes and must match the
      * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
      * KEY_1_LIKE_THIS.
@@ -8637,9 +8504,8 @@ public boolean containsCustomAttributes(java.lang.String key) {
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom job
-     * attributes that are not covered by the provided structured fields.
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * job attributes that are not covered by the provided structured fields.
      * The keys of the map are strings up to 64 bytes and must match the
      * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
      * KEY_1_LIKE_THIS.
@@ -8661,9 +8527,8 @@ public boolean containsCustomAttributes(java.lang.String key) {
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom job
-     * attributes that are not covered by the provided structured fields.
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * job attributes that are not covered by the provided structured fields.
      * The keys of the map are strings up to 64 bytes and must match the
      * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
      * KEY_1_LIKE_THIS.
@@ -8690,9 +8555,8 @@ public com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefa
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom job
-     * attributes that are not covered by the provided structured fields.
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * job attributes that are not covered by the provided structured fields.
      * The keys of the map are strings up to 64 bytes and must match the
      * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
      * KEY_1_LIKE_THIS.
@@ -8727,9 +8591,8 @@ public Builder clearCustomAttributes() {
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom job
-     * attributes that are not covered by the provided structured fields.
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * job attributes that are not covered by the provided structured fields.
      * The keys of the map are strings up to 64 bytes and must match the
      * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
      * KEY_1_LIKE_THIS.
@@ -8760,9 +8623,8 @@ public Builder removeCustomAttributes(java.lang.String key) {
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom job
-     * attributes that are not covered by the provided structured fields.
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * job attributes that are not covered by the provided structured fields.
      * The keys of the map are strings up to 64 bytes and must match the
      * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
      * KEY_1_LIKE_THIS.
@@ -8791,9 +8653,8 @@ public Builder putCustomAttributes(
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom job
-     * attributes that are not covered by the provided structured fields.
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * job attributes that are not covered by the provided structured fields.
      * The keys of the map are strings up to 64 bytes and must match the
      * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
      * KEY_1_LIKE_THIS.
@@ -8825,8 +8686,8 @@ private void ensureDegreeTypesIsMutable() {
      *
      *
      * 
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -8840,8 +8701,8 @@ public java.util.List getDegreeTypes * * *
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -8853,8 +8714,8 @@ public int getDegreeTypesCount() { * * *
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -8866,8 +8727,8 @@ public com.google.cloud.talent.v4beta1.DegreeType getDegreeTypes(int index) { * * *
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -8885,8 +8746,8 @@ public Builder setDegreeTypes(int index, com.google.cloud.talent.v4beta1.DegreeT * * *
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -8904,8 +8765,8 @@ public Builder addDegreeTypes(com.google.cloud.talent.v4beta1.DegreeType value) * * *
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -8923,8 +8784,8 @@ public Builder addAllDegreeTypes( * * *
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -8939,8 +8800,8 @@ public Builder clearDegreeTypes() { * * *
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -8952,8 +8813,8 @@ public java.util.List getDegreeTypesValueList() { * * *
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -8965,8 +8826,8 @@ public int getDegreeTypesValue(int index) { * * *
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -8981,8 +8842,8 @@ public Builder setDegreeTypesValue(int index, int value) { * * *
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -8997,8 +8858,8 @@ public Builder addDegreeTypesValue(int value) { * * *
-     * Optional.
-     * The desired education degrees for the job, such as Bachelors, Masters.
+     * Optional. The desired education degrees for the job, such as Bachelors,
+     * Masters.
      * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -9017,9 +8878,8 @@ public Builder addAllDegreeTypesValue(java.lang.Iterable valu * * *
-     * Optional.
-     * The department or functional area within the company with the open
-     * position.
+     * Optional. The department or functional area within the company with the
+     * open position.
      * The maximum number of allowed characters is 255.
      * 
* @@ -9040,9 +8900,8 @@ public java.lang.String getDepartment() { * * *
-     * Optional.
-     * The department or functional area within the company with the open
-     * position.
+     * Optional. The department or functional area within the company with the
+     * open position.
      * The maximum number of allowed characters is 255.
      * 
* @@ -9063,9 +8922,8 @@ public com.google.protobuf.ByteString getDepartmentBytes() { * * *
-     * Optional.
-     * The department or functional area within the company with the open
-     * position.
+     * Optional. The department or functional area within the company with the
+     * open position.
      * The maximum number of allowed characters is 255.
      * 
* @@ -9084,9 +8942,8 @@ public Builder setDepartment(java.lang.String value) { * * *
-     * Optional.
-     * The department or functional area within the company with the open
-     * position.
+     * Optional. The department or functional area within the company with the
+     * open position.
      * The maximum number of allowed characters is 255.
      * 
* @@ -9102,9 +8959,8 @@ public Builder clearDepartment() { * * *
-     * Optional.
-     * The department or functional area within the company with the open
-     * position.
+     * Optional. The department or functional area within the company with the
+     * open position.
      * The maximum number of allowed characters is 255.
      * 
* @@ -9133,8 +8989,7 @@ private void ensureEmploymentTypesIsMutable() { * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9150,8 +9005,7 @@ public java.util.List getEmploym * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9165,8 +9019,7 @@ public int getEmploymentTypesCount() { * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9180,8 +9033,7 @@ public com.google.cloud.talent.v4beta1.EmploymentType getEmploymentTypes(int ind * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9202,8 +9054,7 @@ public Builder setEmploymentTypes( * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9223,8 +9074,7 @@ public Builder addEmploymentTypes(com.google.cloud.talent.v4beta1.EmploymentType * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9244,8 +9094,7 @@ public Builder addAllEmploymentTypes( * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9262,8 +9111,7 @@ public Builder clearEmploymentTypes() { * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9277,8 +9125,7 @@ public java.util.List getEmploymentTypesValueList() { * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9292,8 +9139,7 @@ public int getEmploymentTypesValue(int index) { * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9310,8 +9156,7 @@ public Builder setEmploymentTypesValue(int index, int value) { * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9328,8 +9173,7 @@ public Builder addEmploymentTypesValue(int value) { * * *
-     * Optional.
-     * The employment type(s) of a job, for example,
+     * Optional. The employment type(s) of a job, for example,
      * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
      * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
      * 
@@ -9350,8 +9194,7 @@ public Builder addAllEmploymentTypesValue(java.lang.Iterable * * *
-     * Optional.
-     * A description of bonus, commission, and other compensation
+     * Optional. A description of bonus, commission, and other compensation
      * incentives associated with the job not including salary or pay.
      * The maximum number of allowed characters is 10,000.
      * 
@@ -9373,8 +9216,7 @@ public java.lang.String getIncentives() { * * *
-     * Optional.
-     * A description of bonus, commission, and other compensation
+     * Optional. A description of bonus, commission, and other compensation
      * incentives associated with the job not including salary or pay.
      * The maximum number of allowed characters is 10,000.
      * 
@@ -9396,8 +9238,7 @@ public com.google.protobuf.ByteString getIncentivesBytes() { * * *
-     * Optional.
-     * A description of bonus, commission, and other compensation
+     * Optional. A description of bonus, commission, and other compensation
      * incentives associated with the job not including salary or pay.
      * The maximum number of allowed characters is 10,000.
      * 
@@ -9417,8 +9258,7 @@ public Builder setIncentives(java.lang.String value) { * * *
-     * Optional.
-     * A description of bonus, commission, and other compensation
+     * Optional. A description of bonus, commission, and other compensation
      * incentives associated with the job not including salary or pay.
      * The maximum number of allowed characters is 10,000.
      * 
@@ -9435,8 +9275,7 @@ public Builder clearIncentives() { * * *
-     * Optional.
-     * A description of bonus, commission, and other compensation
+     * Optional. A description of bonus, commission, and other compensation
      * incentives associated with the job not including salary or pay.
      * The maximum number of allowed characters is 10,000.
      * 
@@ -9459,8 +9298,7 @@ public Builder setIncentivesBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The language of the posting. This field is distinct from
+     * Optional. The language of the posting. This field is distinct from
      * any requirements for fluency that are associated with the job.
      * Language codes must be in BCP-47 format, such as "en-US" or "sr-Latn".
      * For more information, see
@@ -9490,8 +9328,7 @@ public java.lang.String getLanguageCode() {
      *
      *
      * 
-     * Optional.
-     * The language of the posting. This field is distinct from
+     * Optional. The language of the posting. This field is distinct from
      * any requirements for fluency that are associated with the job.
      * Language codes must be in BCP-47 format, such as "en-US" or "sr-Latn".
      * For more information, see
@@ -9521,8 +9358,7 @@ public com.google.protobuf.ByteString getLanguageCodeBytes() {
      *
      *
      * 
-     * Optional.
-     * The language of the posting. This field is distinct from
+     * Optional. The language of the posting. This field is distinct from
      * any requirements for fluency that are associated with the job.
      * Language codes must be in BCP-47 format, such as "en-US" or "sr-Latn".
      * For more information, see
@@ -9550,8 +9386,7 @@ public Builder setLanguageCode(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The language of the posting. This field is distinct from
+     * Optional. The language of the posting. This field is distinct from
      * any requirements for fluency that are associated with the job.
      * Language codes must be in BCP-47 format, such as "en-US" or "sr-Latn".
      * For more information, see
@@ -9576,8 +9411,7 @@ public Builder clearLanguageCode() {
      *
      *
      * 
-     * Optional.
-     * The language of the posting. This field is distinct from
+     * Optional. The language of the posting. This field is distinct from
      * any requirements for fluency that are associated with the job.
      * Language codes must be in BCP-47 format, such as "en-US" or "sr-Latn".
      * For more information, see
@@ -9608,8 +9442,8 @@ public Builder setLanguageCodeBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * The experience level associated with the job, such as "Entry Level".
+     * Optional. The experience level associated with the job, such as "Entry
+     * Level".
      * 
* * .google.cloud.talent.v4beta1.JobLevel job_level = 16; @@ -9621,8 +9455,8 @@ public int getJobLevelValue() { * * *
-     * Optional.
-     * The experience level associated with the job, such as "Entry Level".
+     * Optional. The experience level associated with the job, such as "Entry
+     * Level".
      * 
* * .google.cloud.talent.v4beta1.JobLevel job_level = 16; @@ -9636,8 +9470,8 @@ public Builder setJobLevelValue(int value) { * * *
-     * Optional.
-     * The experience level associated with the job, such as "Entry Level".
+     * Optional. The experience level associated with the job, such as "Entry
+     * Level".
      * 
* * .google.cloud.talent.v4beta1.JobLevel job_level = 16; @@ -9652,8 +9486,8 @@ public com.google.cloud.talent.v4beta1.JobLevel getJobLevel() { * * *
-     * Optional.
-     * The experience level associated with the job, such as "Entry Level".
+     * Optional. The experience level associated with the job, such as "Entry
+     * Level".
      * 
* * .google.cloud.talent.v4beta1.JobLevel job_level = 16; @@ -9671,8 +9505,8 @@ public Builder setJobLevel(com.google.cloud.talent.v4beta1.JobLevel value) { * * *
-     * Optional.
-     * The experience level associated with the job, such as "Entry Level".
+     * Optional. The experience level associated with the job, such as "Entry
+     * Level".
      * 
* * .google.cloud.talent.v4beta1.JobLevel job_level = 16; @@ -9689,8 +9523,7 @@ public Builder clearJobLevel() { * * *
-     * Optional.
-     * A promotion value of the job, as determined by the client.
+     * Optional. A promotion value of the job, as determined by the client.
      * The value determines the sort order of the jobs returned when searching for
      * jobs using the featured jobs search call, with higher promotional values
      * being returned first and ties being resolved by relevance sort. Only the
@@ -9707,8 +9540,7 @@ public int getPromotionValue() {
      *
      *
      * 
-     * Optional.
-     * A promotion value of the job, as determined by the client.
+     * Optional. A promotion value of the job, as determined by the client.
      * The value determines the sort order of the jobs returned when searching for
      * jobs using the featured jobs search call, with higher promotional values
      * being returned first and ties being resolved by relevance sort. Only the
@@ -9728,8 +9560,7 @@ public Builder setPromotionValue(int value) {
      *
      *
      * 
-     * Optional.
-     * A promotion value of the job, as determined by the client.
+     * Optional. A promotion value of the job, as determined by the client.
      * The value determines the sort order of the jobs returned when searching for
      * jobs using the featured jobs search call, with higher promotional values
      * being returned first and ties being resolved by relevance sort. Only the
@@ -9751,8 +9582,7 @@ public Builder clearPromotionValue() {
      *
      *
      * 
-     * Optional.
-     * A description of the qualifications required to perform the
+     * Optional. A description of the qualifications required to perform the
      * job. The use of this field is recommended
      * as an alternative to using the more general
      * [description][google.cloud.talent.v4beta1.Job.description] field.
@@ -9778,8 +9608,7 @@ public java.lang.String getQualifications() {
      *
      *
      * 
-     * Optional.
-     * A description of the qualifications required to perform the
+     * Optional. A description of the qualifications required to perform the
      * job. The use of this field is recommended
      * as an alternative to using the more general
      * [description][google.cloud.talent.v4beta1.Job.description] field.
@@ -9805,8 +9634,7 @@ public com.google.protobuf.ByteString getQualificationsBytes() {
      *
      *
      * 
-     * Optional.
-     * A description of the qualifications required to perform the
+     * Optional. A description of the qualifications required to perform the
      * job. The use of this field is recommended
      * as an alternative to using the more general
      * [description][google.cloud.talent.v4beta1.Job.description] field.
@@ -9830,8 +9658,7 @@ public Builder setQualifications(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * A description of the qualifications required to perform the
+     * Optional. A description of the qualifications required to perform the
      * job. The use of this field is recommended
      * as an alternative to using the more general
      * [description][google.cloud.talent.v4beta1.Job.description] field.
@@ -9852,8 +9679,7 @@ public Builder clearQualifications() {
      *
      *
      * 
-     * Optional.
-     * A description of the qualifications required to perform the
+     * Optional. A description of the qualifications required to perform the
      * job. The use of this field is recommended
      * as an alternative to using the more general
      * [description][google.cloud.talent.v4beta1.Job.description] field.
@@ -9880,8 +9706,7 @@ public Builder setQualificationsBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * A description of job responsibilities. The use of this field is
+     * Optional. A description of job responsibilities. The use of this field is
      * recommended as an alternative to using the more general
      * [description][google.cloud.talent.v4beta1.Job.description] field.
      * This field accepts and sanitizes HTML input, and also accepts
@@ -9906,8 +9731,7 @@ public java.lang.String getResponsibilities() {
      *
      *
      * 
-     * Optional.
-     * A description of job responsibilities. The use of this field is
+     * Optional. A description of job responsibilities. The use of this field is
      * recommended as an alternative to using the more general
      * [description][google.cloud.talent.v4beta1.Job.description] field.
      * This field accepts and sanitizes HTML input, and also accepts
@@ -9932,8 +9756,7 @@ public com.google.protobuf.ByteString getResponsibilitiesBytes() {
      *
      *
      * 
-     * Optional.
-     * A description of job responsibilities. The use of this field is
+     * Optional. A description of job responsibilities. The use of this field is
      * recommended as an alternative to using the more general
      * [description][google.cloud.talent.v4beta1.Job.description] field.
      * This field accepts and sanitizes HTML input, and also accepts
@@ -9956,8 +9779,7 @@ public Builder setResponsibilities(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * A description of job responsibilities. The use of this field is
+     * Optional. A description of job responsibilities. The use of this field is
      * recommended as an alternative to using the more general
      * [description][google.cloud.talent.v4beta1.Job.description] field.
      * This field accepts and sanitizes HTML input, and also accepts
@@ -9977,8 +9799,7 @@ public Builder clearResponsibilities() {
      *
      *
      * 
-     * Optional.
-     * A description of job responsibilities. The use of this field is
+     * Optional. A description of job responsibilities. The use of this field is
      * recommended as an alternative to using the more general
      * [description][google.cloud.talent.v4beta1.Job.description] field.
      * This field accepts and sanitizes HTML input, and also accepts
@@ -10004,13 +9825,12 @@ public Builder setResponsibilitiesBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * The job [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for
-     * example, state, country) throughout which the job is available. If this
-     * field is set, a
-     * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a search
-     * query within the job region finds this job posting if an exact location
-     * match isn't specified. If this field is set to
+     * Optional. The job
+     * [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for example,
+     * state, country) throughout which the job is available. If this field is
+     * set, a [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a
+     * search query within the job region finds this job posting if an exact
+     * location match isn't specified. If this field is set to
      * [PostingRegion.NATION][google.cloud.talent.v4beta1.PostingRegion.NATION] or
      * [PostingRegion.ADMINISTRATIVE_AREA][google.cloud.talent.v4beta1.PostingRegion.ADMINISTRATIVE_AREA],
      * setting job [Job.addresses][google.cloud.talent.v4beta1.Job.addresses] to
@@ -10026,13 +9846,12 @@ public int getPostingRegionValue() {
      *
      *
      * 
-     * Optional.
-     * The job [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for
-     * example, state, country) throughout which the job is available. If this
-     * field is set, a
-     * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a search
-     * query within the job region finds this job posting if an exact location
-     * match isn't specified. If this field is set to
+     * Optional. The job
+     * [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for example,
+     * state, country) throughout which the job is available. If this field is
+     * set, a [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a
+     * search query within the job region finds this job posting if an exact
+     * location match isn't specified. If this field is set to
      * [PostingRegion.NATION][google.cloud.talent.v4beta1.PostingRegion.NATION] or
      * [PostingRegion.ADMINISTRATIVE_AREA][google.cloud.talent.v4beta1.PostingRegion.ADMINISTRATIVE_AREA],
      * setting job [Job.addresses][google.cloud.talent.v4beta1.Job.addresses] to
@@ -10050,13 +9869,12 @@ public Builder setPostingRegionValue(int value) {
      *
      *
      * 
-     * Optional.
-     * The job [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for
-     * example, state, country) throughout which the job is available. If this
-     * field is set, a
-     * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a search
-     * query within the job region finds this job posting if an exact location
-     * match isn't specified. If this field is set to
+     * Optional. The job
+     * [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for example,
+     * state, country) throughout which the job is available. If this field is
+     * set, a [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a
+     * search query within the job region finds this job posting if an exact
+     * location match isn't specified. If this field is set to
      * [PostingRegion.NATION][google.cloud.talent.v4beta1.PostingRegion.NATION] or
      * [PostingRegion.ADMINISTRATIVE_AREA][google.cloud.talent.v4beta1.PostingRegion.ADMINISTRATIVE_AREA],
      * setting job [Job.addresses][google.cloud.talent.v4beta1.Job.addresses] to
@@ -10075,13 +9893,12 @@ public com.google.cloud.talent.v4beta1.PostingRegion getPostingRegion() {
      *
      *
      * 
-     * Optional.
-     * The job [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for
-     * example, state, country) throughout which the job is available. If this
-     * field is set, a
-     * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a search
-     * query within the job region finds this job posting if an exact location
-     * match isn't specified. If this field is set to
+     * Optional. The job
+     * [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for example,
+     * state, country) throughout which the job is available. If this field is
+     * set, a [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a
+     * search query within the job region finds this job posting if an exact
+     * location match isn't specified. If this field is set to
      * [PostingRegion.NATION][google.cloud.talent.v4beta1.PostingRegion.NATION] or
      * [PostingRegion.ADMINISTRATIVE_AREA][google.cloud.talent.v4beta1.PostingRegion.ADMINISTRATIVE_AREA],
      * setting job [Job.addresses][google.cloud.talent.v4beta1.Job.addresses] to
@@ -10103,13 +9920,12 @@ public Builder setPostingRegion(com.google.cloud.talent.v4beta1.PostingRegion va
      *
      *
      * 
-     * Optional.
-     * The job [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for
-     * example, state, country) throughout which the job is available. If this
-     * field is set, a
-     * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a search
-     * query within the job region finds this job posting if an exact location
-     * match isn't specified. If this field is set to
+     * Optional. The job
+     * [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for example,
+     * state, country) throughout which the job is available. If this field is
+     * set, a [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a
+     * search query within the job region finds this job posting if an exact
+     * location match isn't specified. If this field is set to
      * [PostingRegion.NATION][google.cloud.talent.v4beta1.PostingRegion.NATION] or
      * [PostingRegion.ADMINISTRATIVE_AREA][google.cloud.talent.v4beta1.PostingRegion.ADMINISTRATIVE_AREA],
      * setting job [Job.addresses][google.cloud.talent.v4beta1.Job.addresses] to
@@ -10130,8 +9946,7 @@ public Builder clearPostingRegion() {
      *
      *
      * 
-     * Optional.
-     * The visibility of the job.
+     * Optional. The visibility of the job.
      * Defaults to
      * [Visibility.ACCOUNT_ONLY][google.cloud.talent.v4beta1.Visibility.ACCOUNT_ONLY]
      * if not specified.
@@ -10146,8 +9961,7 @@ public int getVisibilityValue() {
      *
      *
      * 
-     * Optional.
-     * The visibility of the job.
+     * Optional. The visibility of the job.
      * Defaults to
      * [Visibility.ACCOUNT_ONLY][google.cloud.talent.v4beta1.Visibility.ACCOUNT_ONLY]
      * if not specified.
@@ -10164,8 +9978,7 @@ public Builder setVisibilityValue(int value) {
      *
      *
      * 
-     * Optional.
-     * The visibility of the job.
+     * Optional. The visibility of the job.
      * Defaults to
      * [Visibility.ACCOUNT_ONLY][google.cloud.talent.v4beta1.Visibility.ACCOUNT_ONLY]
      * if not specified.
@@ -10183,8 +9996,7 @@ public com.google.cloud.talent.v4beta1.Visibility getVisibility() {
      *
      *
      * 
-     * Optional.
-     * The visibility of the job.
+     * Optional. The visibility of the job.
      * Defaults to
      * [Visibility.ACCOUNT_ONLY][google.cloud.talent.v4beta1.Visibility.ACCOUNT_ONLY]
      * if not specified.
@@ -10205,8 +10017,7 @@ public Builder setVisibility(com.google.cloud.talent.v4beta1.Visibility value) {
      *
      *
      * 
-     * Optional.
-     * The visibility of the job.
+     * Optional. The visibility of the job.
      * Defaults to
      * [Visibility.ACCOUNT_ONLY][google.cloud.talent.v4beta1.Visibility.ACCOUNT_ONLY]
      * if not specified.
@@ -10231,9 +10042,8 @@ public Builder clearVisibility() {
      *
      *
      * 
-     * Optional.
-     * The start timestamp of the job in UTC time zone. Typically this field
-     * is used for contracting engagements. Invalid timestamps are ignored.
+     * Optional. The start timestamp of the job in UTC time zone. Typically this
+     * field is used for contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -10245,9 +10055,8 @@ public boolean hasJobStartTime() { * * *
-     * Optional.
-     * The start timestamp of the job in UTC time zone. Typically this field
-     * is used for contracting engagements. Invalid timestamps are ignored.
+     * Optional. The start timestamp of the job in UTC time zone. Typically this
+     * field is used for contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -10265,9 +10074,8 @@ public com.google.protobuf.Timestamp getJobStartTime() { * * *
-     * Optional.
-     * The start timestamp of the job in UTC time zone. Typically this field
-     * is used for contracting engagements. Invalid timestamps are ignored.
+     * Optional. The start timestamp of the job in UTC time zone. Typically this
+     * field is used for contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -10289,9 +10097,8 @@ public Builder setJobStartTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The start timestamp of the job in UTC time zone. Typically this field
-     * is used for contracting engagements. Invalid timestamps are ignored.
+     * Optional. The start timestamp of the job in UTC time zone. Typically this
+     * field is used for contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -10310,9 +10117,8 @@ public Builder setJobStartTime(com.google.protobuf.Timestamp.Builder builderForV * * *
-     * Optional.
-     * The start timestamp of the job in UTC time zone. Typically this field
-     * is used for contracting engagements. Invalid timestamps are ignored.
+     * Optional. The start timestamp of the job in UTC time zone. Typically this
+     * field is used for contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -10338,9 +10144,8 @@ public Builder mergeJobStartTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The start timestamp of the job in UTC time zone. Typically this field
-     * is used for contracting engagements. Invalid timestamps are ignored.
+     * Optional. The start timestamp of the job in UTC time zone. Typically this
+     * field is used for contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -10360,9 +10165,8 @@ public Builder clearJobStartTime() { * * *
-     * Optional.
-     * The start timestamp of the job in UTC time zone. Typically this field
-     * is used for contracting engagements. Invalid timestamps are ignored.
+     * Optional. The start timestamp of the job in UTC time zone. Typically this
+     * field is used for contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -10376,9 +10180,8 @@ public com.google.protobuf.Timestamp.Builder getJobStartTimeBuilder() { * * *
-     * Optional.
-     * The start timestamp of the job in UTC time zone. Typically this field
-     * is used for contracting engagements. Invalid timestamps are ignored.
+     * Optional. The start timestamp of the job in UTC time zone. Typically this
+     * field is used for contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -10396,9 +10199,8 @@ public com.google.protobuf.TimestampOrBuilder getJobStartTimeOrBuilder() { * * *
-     * Optional.
-     * The start timestamp of the job in UTC time zone. Typically this field
-     * is used for contracting engagements. Invalid timestamps are ignored.
+     * Optional. The start timestamp of the job in UTC time zone. Typically this
+     * field is used for contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -10430,9 +10232,8 @@ public com.google.protobuf.TimestampOrBuilder getJobStartTimeOrBuilder() { * * *
-     * Optional.
-     * The end timestamp of the job. Typically this field is used for contracting
-     * engagements. Invalid timestamps are ignored.
+     * Optional. The end timestamp of the job. Typically this field is used for
+     * contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -10444,9 +10245,8 @@ public boolean hasJobEndTime() { * * *
-     * Optional.
-     * The end timestamp of the job. Typically this field is used for contracting
-     * engagements. Invalid timestamps are ignored.
+     * Optional. The end timestamp of the job. Typically this field is used for
+     * contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -10464,9 +10264,8 @@ public com.google.protobuf.Timestamp getJobEndTime() { * * *
-     * Optional.
-     * The end timestamp of the job. Typically this field is used for contracting
-     * engagements. Invalid timestamps are ignored.
+     * Optional. The end timestamp of the job. Typically this field is used for
+     * contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -10488,9 +10287,8 @@ public Builder setJobEndTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The end timestamp of the job. Typically this field is used for contracting
-     * engagements. Invalid timestamps are ignored.
+     * Optional. The end timestamp of the job. Typically this field is used for
+     * contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -10509,9 +10307,8 @@ public Builder setJobEndTime(com.google.protobuf.Timestamp.Builder builderForVal * * *
-     * Optional.
-     * The end timestamp of the job. Typically this field is used for contracting
-     * engagements. Invalid timestamps are ignored.
+     * Optional. The end timestamp of the job. Typically this field is used for
+     * contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -10535,9 +10332,8 @@ public Builder mergeJobEndTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The end timestamp of the job. Typically this field is used for contracting
-     * engagements. Invalid timestamps are ignored.
+     * Optional. The end timestamp of the job. Typically this field is used for
+     * contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -10557,9 +10353,8 @@ public Builder clearJobEndTime() { * * *
-     * Optional.
-     * The end timestamp of the job. Typically this field is used for contracting
-     * engagements. Invalid timestamps are ignored.
+     * Optional. The end timestamp of the job. Typically this field is used for
+     * contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -10573,9 +10368,8 @@ public com.google.protobuf.Timestamp.Builder getJobEndTimeBuilder() { * * *
-     * Optional.
-     * The end timestamp of the job. Typically this field is used for contracting
-     * engagements. Invalid timestamps are ignored.
+     * Optional. The end timestamp of the job. Typically this field is used for
+     * contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -10593,9 +10387,8 @@ public com.google.protobuf.TimestampOrBuilder getJobEndTimeOrBuilder() { * * *
-     * Optional.
-     * The end timestamp of the job. Typically this field is used for contracting
-     * engagements. Invalid timestamps are ignored.
+     * Optional. The end timestamp of the job. Typically this field is used for
+     * contracting engagements. Invalid timestamps are ignored.
      * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -10627,10 +10420,9 @@ public com.google.protobuf.TimestampOrBuilder getJobEndTimeOrBuilder() { * * *
-     * Optional.
-     * The timestamp this job posting was most recently published. The default
-     * value is the time the request arrives at the server. Invalid timestamps are
-     * ignored.
+     * Optional. The timestamp this job posting was most recently published. The
+     * default value is the time the request arrives at the server. Invalid
+     * timestamps are ignored.
      * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -10642,10 +10434,9 @@ public boolean hasPostingPublishTime() { * * *
-     * Optional.
-     * The timestamp this job posting was most recently published. The default
-     * value is the time the request arrives at the server. Invalid timestamps are
-     * ignored.
+     * Optional. The timestamp this job posting was most recently published. The
+     * default value is the time the request arrives at the server. Invalid
+     * timestamps are ignored.
      * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -10663,10 +10454,9 @@ public com.google.protobuf.Timestamp getPostingPublishTime() { * * *
-     * Optional.
-     * The timestamp this job posting was most recently published. The default
-     * value is the time the request arrives at the server. Invalid timestamps are
-     * ignored.
+     * Optional. The timestamp this job posting was most recently published. The
+     * default value is the time the request arrives at the server. Invalid
+     * timestamps are ignored.
      * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -10688,10 +10478,9 @@ public Builder setPostingPublishTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The timestamp this job posting was most recently published. The default
-     * value is the time the request arrives at the server. Invalid timestamps are
-     * ignored.
+     * Optional. The timestamp this job posting was most recently published. The
+     * default value is the time the request arrives at the server. Invalid
+     * timestamps are ignored.
      * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -10710,10 +10499,9 @@ public Builder setPostingPublishTime(com.google.protobuf.Timestamp.Builder build * * *
-     * Optional.
-     * The timestamp this job posting was most recently published. The default
-     * value is the time the request arrives at the server. Invalid timestamps are
-     * ignored.
+     * Optional. The timestamp this job posting was most recently published. The
+     * default value is the time the request arrives at the server. Invalid
+     * timestamps are ignored.
      * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -10739,10 +10527,9 @@ public Builder mergePostingPublishTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The timestamp this job posting was most recently published. The default
-     * value is the time the request arrives at the server. Invalid timestamps are
-     * ignored.
+     * Optional. The timestamp this job posting was most recently published. The
+     * default value is the time the request arrives at the server. Invalid
+     * timestamps are ignored.
      * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -10762,10 +10549,9 @@ public Builder clearPostingPublishTime() { * * *
-     * Optional.
-     * The timestamp this job posting was most recently published. The default
-     * value is the time the request arrives at the server. Invalid timestamps are
-     * ignored.
+     * Optional. The timestamp this job posting was most recently published. The
+     * default value is the time the request arrives at the server. Invalid
+     * timestamps are ignored.
      * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -10779,10 +10565,9 @@ public com.google.protobuf.Timestamp.Builder getPostingPublishTimeBuilder() { * * *
-     * Optional.
-     * The timestamp this job posting was most recently published. The default
-     * value is the time the request arrives at the server. Invalid timestamps are
-     * ignored.
+     * Optional. The timestamp this job posting was most recently published. The
+     * default value is the time the request arrives at the server. Invalid
+     * timestamps are ignored.
      * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -10800,10 +10585,9 @@ public com.google.protobuf.TimestampOrBuilder getPostingPublishTimeOrBuilder() { * * *
-     * Optional.
-     * The timestamp this job posting was most recently published. The default
-     * value is the time the request arrives at the server. Invalid timestamps are
-     * ignored.
+     * Optional. The timestamp this job posting was most recently published. The
+     * default value is the time the request arrives at the server. Invalid
+     * timestamps are ignored.
      * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -10839,25 +10623,35 @@ public com.google.protobuf.TimestampOrBuilder getPostingPublishTimeOrBuilder() { * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -10885,25 +10679,35 @@ public boolean hasPostingExpireTime() { * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -10937,25 +10741,35 @@ public com.google.protobuf.Timestamp getPostingExpireTime() { * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -10993,25 +10807,35 @@ public Builder setPostingExpireTime(com.google.protobuf.Timestamp value) { * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -11046,25 +10870,35 @@ public Builder setPostingExpireTime(com.google.protobuf.Timestamp.Builder builde * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -11106,25 +10940,35 @@ public Builder mergePostingExpireTime(com.google.protobuf.Timestamp value) { * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -11160,25 +11004,35 @@ public Builder clearPostingExpireTime() { * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -11208,25 +11062,35 @@ public com.google.protobuf.Timestamp.Builder getPostingExpireTimeBuilder() { * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -11260,25 +11124,35 @@ public com.google.protobuf.TimestampOrBuilder getPostingExpireTimeOrBuilder() { * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -11960,8 +11834,7 @@ public com.google.cloud.talent.v4beta1.Job.DerivedInfoOrBuilder getDerivedInfoOr * * *
-     * Optional.
-     * Options for job processing.
+     * Optional. Options for job processing.
      * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -11973,8 +11846,7 @@ public boolean hasProcessingOptions() { * * *
-     * Optional.
-     * Options for job processing.
+     * Optional. Options for job processing.
      * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -11992,8 +11864,7 @@ public com.google.cloud.talent.v4beta1.Job.ProcessingOptions getProcessingOption * * *
-     * Optional.
-     * Options for job processing.
+     * Optional. Options for job processing.
      * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -12016,8 +11887,7 @@ public Builder setProcessingOptions( * * *
-     * Optional.
-     * Options for job processing.
+     * Optional. Options for job processing.
      * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -12037,8 +11907,7 @@ public Builder setProcessingOptions( * * *
-     * Optional.
-     * Options for job processing.
+     * Optional. Options for job processing.
      * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -12065,8 +11934,7 @@ public Builder mergeProcessingOptions( * * *
-     * Optional.
-     * Options for job processing.
+     * Optional. Options for job processing.
      * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -12086,8 +11954,7 @@ public Builder clearProcessingOptions() { * * *
-     * Optional.
-     * Options for job processing.
+     * Optional. Options for job processing.
      * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -12102,8 +11969,7 @@ public Builder clearProcessingOptions() { * * *
-     * Optional.
-     * Options for job processing.
+     * Optional. Options for job processing.
      * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -12122,8 +11988,7 @@ public Builder clearProcessingOptions() { * * *
-     * Optional.
-     * Options for job processing.
+     * Optional. Options for job processing.
      * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobEvent.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobEvent.java index b0a41108feb2..e40fdf188a03 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobEvent.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobEvent.java @@ -649,8 +649,7 @@ private JobEventType(int value) { * * *
-   * Required.
-   * The type of the event (see
+   * Required. The type of the event (see
    * [JobEventType][google.cloud.talent.v4beta1.JobEvent.JobEventType]).
    * 
* @@ -663,8 +662,7 @@ public int getTypeValue() { * * *
-   * Required.
-   * The type of the event (see
+   * Required. The type of the event (see
    * [JobEventType][google.cloud.talent.v4beta1.JobEvent.JobEventType]).
    * 
* @@ -685,9 +683,8 @@ public com.google.cloud.talent.v4beta1.JobEvent.JobEventType getType() { * * *
-   * Required.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this event. For example, if this is an
+   * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this event. For example, if this is an
    * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
    * event, this field contains the identifiers of all jobs shown to the job
    * seeker. If this was a
@@ -707,9 +704,8 @@ public com.google.protobuf.ProtocolStringList getJobsList() {
    *
    *
    * 
-   * Required.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this event. For example, if this is an
+   * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this event. For example, if this is an
    * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
    * event, this field contains the identifiers of all jobs shown to the job
    * seeker. If this was a
@@ -729,9 +725,8 @@ public int getJobsCount() {
    *
    *
    * 
-   * Required.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this event. For example, if this is an
+   * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this event. For example, if this is an
    * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
    * event, this field contains the identifiers of all jobs shown to the job
    * seeker. If this was a
@@ -751,9 +746,8 @@ public java.lang.String getJobs(int index) {
    *
    *
    * 
-   * Required.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this event. For example, if this is an
+   * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this event. For example, if this is an
    * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
    * event, this field contains the identifiers of all jobs shown to the job
    * seeker. If this was a
@@ -776,9 +770,8 @@ public com.google.protobuf.ByteString getJobsBytes(int index) {
    *
    *
    * 
-   * Optional.
-   * The [profile name][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Optional. The [profile name][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -801,9 +794,8 @@ public java.lang.String getProfile() {
    *
    *
    * 
-   * Optional.
-   * The [profile name][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Optional. The [profile name][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1201,8 +1193,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * The type of the event (see
+     * Required. The type of the event (see
      * [JobEventType][google.cloud.talent.v4beta1.JobEvent.JobEventType]).
      * 
* @@ -1215,8 +1206,7 @@ public int getTypeValue() { * * *
-     * Required.
-     * The type of the event (see
+     * Required. The type of the event (see
      * [JobEventType][google.cloud.talent.v4beta1.JobEvent.JobEventType]).
      * 
* @@ -1231,8 +1221,7 @@ public Builder setTypeValue(int value) { * * *
-     * Required.
-     * The type of the event (see
+     * Required. The type of the event (see
      * [JobEventType][google.cloud.talent.v4beta1.JobEvent.JobEventType]).
      * 
* @@ -1250,8 +1239,7 @@ public com.google.cloud.talent.v4beta1.JobEvent.JobEventType getType() { * * *
-     * Required.
-     * The type of the event (see
+     * Required. The type of the event (see
      * [JobEventType][google.cloud.talent.v4beta1.JobEvent.JobEventType]).
      * 
* @@ -1270,8 +1258,7 @@ public Builder setType(com.google.cloud.talent.v4beta1.JobEvent.JobEventType val * * *
-     * Required.
-     * The type of the event (see
+     * Required. The type of the event (see
      * [JobEventType][google.cloud.talent.v4beta1.JobEvent.JobEventType]).
      * 
* @@ -1297,9 +1284,8 @@ private void ensureJobsIsMutable() { * * *
-     * Required.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this event. For example, if this is an
+     * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this event. For example, if this is an
      * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
      * event, this field contains the identifiers of all jobs shown to the job
      * seeker. If this was a
@@ -1319,9 +1305,8 @@ public com.google.protobuf.ProtocolStringList getJobsList() {
      *
      *
      * 
-     * Required.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this event. For example, if this is an
+     * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this event. For example, if this is an
      * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
      * event, this field contains the identifiers of all jobs shown to the job
      * seeker. If this was a
@@ -1341,9 +1326,8 @@ public int getJobsCount() {
      *
      *
      * 
-     * Required.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this event. For example, if this is an
+     * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this event. For example, if this is an
      * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
      * event, this field contains the identifiers of all jobs shown to the job
      * seeker. If this was a
@@ -1363,9 +1347,8 @@ public java.lang.String getJobs(int index) {
      *
      *
      * 
-     * Required.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this event. For example, if this is an
+     * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this event. For example, if this is an
      * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
      * event, this field contains the identifiers of all jobs shown to the job
      * seeker. If this was a
@@ -1385,9 +1368,8 @@ public com.google.protobuf.ByteString getJobsBytes(int index) {
      *
      *
      * 
-     * Required.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this event. For example, if this is an
+     * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this event. For example, if this is an
      * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
      * event, this field contains the identifiers of all jobs shown to the job
      * seeker. If this was a
@@ -1413,9 +1395,8 @@ public Builder setJobs(int index, java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this event. For example, if this is an
+     * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this event. For example, if this is an
      * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
      * event, this field contains the identifiers of all jobs shown to the job
      * seeker. If this was a
@@ -1441,9 +1422,8 @@ public Builder addJobs(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this event. For example, if this is an
+     * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this event. For example, if this is an
      * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
      * event, this field contains the identifiers of all jobs shown to the job
      * seeker. If this was a
@@ -1466,9 +1446,8 @@ public Builder addAllJobs(java.lang.Iterable values) {
      *
      *
      * 
-     * Required.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this event. For example, if this is an
+     * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this event. For example, if this is an
      * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
      * event, this field contains the identifiers of all jobs shown to the job
      * seeker. If this was a
@@ -1491,9 +1470,8 @@ public Builder clearJobs() {
      *
      *
      * 
-     * Required.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this event. For example, if this is an
+     * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this event. For example, if this is an
      * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
      * event, this field contains the identifiers of all jobs shown to the job
      * seeker. If this was a
@@ -1522,9 +1500,8 @@ public Builder addJobsBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * The [profile name][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Optional. The [profile name][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1547,9 +1524,8 @@ public java.lang.String getProfile() {
      *
      *
      * 
-     * Optional.
-     * The [profile name][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Optional. The [profile name][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1572,9 +1548,8 @@ public com.google.protobuf.ByteString getProfileBytes() {
      *
      *
      * 
-     * Optional.
-     * The [profile name][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Optional. The [profile name][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1595,9 +1570,8 @@ public Builder setProfile(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The [profile name][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Optional. The [profile name][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1615,9 +1589,8 @@ public Builder clearProfile() {
      *
      *
      * 
-     * Optional.
-     * The [profile name][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Optional. The [profile name][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobEventOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobEventOrBuilder.java
index 792bf3a677fc..01b2fdf4a809 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobEventOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobEventOrBuilder.java
@@ -12,8 +12,7 @@ public interface JobEventOrBuilder
    *
    *
    * 
-   * Required.
-   * The type of the event (see
+   * Required. The type of the event (see
    * [JobEventType][google.cloud.talent.v4beta1.JobEvent.JobEventType]).
    * 
* @@ -24,8 +23,7 @@ public interface JobEventOrBuilder * * *
-   * Required.
-   * The type of the event (see
+   * Required. The type of the event (see
    * [JobEventType][google.cloud.talent.v4beta1.JobEvent.JobEventType]).
    * 
* @@ -37,9 +35,8 @@ public interface JobEventOrBuilder * * *
-   * Required.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this event. For example, if this is an
+   * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this event. For example, if this is an
    * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
    * event, this field contains the identifiers of all jobs shown to the job
    * seeker. If this was a
@@ -57,9 +54,8 @@ public interface JobEventOrBuilder
    *
    *
    * 
-   * Required.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this event. For example, if this is an
+   * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this event. For example, if this is an
    * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
    * event, this field contains the identifiers of all jobs shown to the job
    * seeker. If this was a
@@ -77,9 +73,8 @@ public interface JobEventOrBuilder
    *
    *
    * 
-   * Required.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this event. For example, if this is an
+   * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this event. For example, if this is an
    * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
    * event, this field contains the identifiers of all jobs shown to the job
    * seeker. If this was a
@@ -97,9 +92,8 @@ public interface JobEventOrBuilder
    *
    *
    * 
-   * Required.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this event. For example, if this is an
+   * Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this event. For example, if this is an
    * [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION]
    * event, this field contains the identifiers of all jobs shown to the job
    * seeker. If this was a
@@ -118,9 +112,8 @@ public interface JobEventOrBuilder
    *
    *
    * 
-   * Optional.
-   * The [profile name][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Optional. The [profile name][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -133,9 +126,8 @@ public interface JobEventOrBuilder
    *
    *
    * 
-   * Optional.
-   * The [profile name][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Optional. The [profile name][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobOrBuilder.java
index 137e440e5a1c..f94f7575b163 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobOrBuilder.java
@@ -53,8 +53,7 @@ public interface JobOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the company listing the job.
+   * Required. The resource name of the company listing the job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -69,8 +68,7 @@ public interface JobOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the company listing the job.
+   * Required. The resource name of the company listing the job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
    * example, "projects/api-test-project/tenants/foo/companies/bar".
@@ -86,11 +84,10 @@ public interface JobOrBuilder
    *
    *
    * 
-   * Required.
-   * The requisition ID, also referred to as the posting ID, is assigned by the
-   * client to identify a job. This field is intended to be used by clients
-   * for client identification and tracking of postings. A job isn't allowed
-   * to be created if there is another job with the same
+   * Required. The requisition ID, also referred to as the posting ID, is
+   * assigned by the client to identify a job. This field is intended to be used
+   * by clients for client identification and tracking of postings. A job isn't
+   * allowed to be created if there is another job with the same
    * [company][google.cloud.talent.v4beta1.Job.name],
    * [language_code][google.cloud.talent.v4beta1.Job.language_code] and
    * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id].
@@ -104,11 +101,10 @@ public interface JobOrBuilder
    *
    *
    * 
-   * Required.
-   * The requisition ID, also referred to as the posting ID, is assigned by the
-   * client to identify a job. This field is intended to be used by clients
-   * for client identification and tracking of postings. A job isn't allowed
-   * to be created if there is another job with the same
+   * Required. The requisition ID, also referred to as the posting ID, is
+   * assigned by the client to identify a job. This field is intended to be used
+   * by clients for client identification and tracking of postings. A job isn't
+   * allowed to be created if there is another job with the same
    * [company][google.cloud.talent.v4beta1.Job.name],
    * [language_code][google.cloud.talent.v4beta1.Job.language_code] and
    * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id].
@@ -123,8 +119,7 @@ public interface JobOrBuilder
    *
    *
    * 
-   * Required.
-   * The title of the job, such as "Software Engineer"
+   * Required. The title of the job, such as "Software Engineer"
    * The maximum number of allowed characters is 500.
    * 
* @@ -135,8 +130,7 @@ public interface JobOrBuilder * * *
-   * Required.
-   * The title of the job, such as "Software Engineer"
+   * Required. The title of the job, such as "Software Engineer"
    * The maximum number of allowed characters is 500.
    * 
* @@ -148,10 +142,9 @@ public interface JobOrBuilder * * *
-   * Required.
-   * The description of the job, which typically includes a multi-paragraph
-   * description of the company and related information. Separate fields are
-   * provided on the job object for
+   * Required. The description of the job, which typically includes a
+   * multi-paragraph description of the company and related information.
+   * Separate fields are provided on the job object for
    * [responsibilities][google.cloud.talent.v4beta1.Job.responsibilities],
    * [qualifications][google.cloud.talent.v4beta1.Job.qualifications], and other
    * job characteristics. Use of these separate job fields is recommended.
@@ -167,10 +160,9 @@ public interface JobOrBuilder
    *
    *
    * 
-   * Required.
-   * The description of the job, which typically includes a multi-paragraph
-   * description of the company and related information. Separate fields are
-   * provided on the job object for
+   * Required. The description of the job, which typically includes a
+   * multi-paragraph description of the company and related information.
+   * Separate fields are provided on the job object for
    * [responsibilities][google.cloud.talent.v4beta1.Job.responsibilities],
    * [qualifications][google.cloud.talent.v4beta1.Job.qualifications], and other
    * job characteristics. Use of these separate job fields is recommended.
@@ -292,8 +284,7 @@ public interface JobOrBuilder
    *
    *
    * 
-   * Optional.
-   * Job application information.
+   * Optional. Job application information.
    * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -303,8 +294,7 @@ public interface JobOrBuilder * * *
-   * Optional.
-   * Job application information.
+   * Optional. Job application information.
    * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -314,8 +304,7 @@ public interface JobOrBuilder * * *
-   * Optional.
-   * Job application information.
+   * Optional. Job application information.
    * 
* * .google.cloud.talent.v4beta1.Job.ApplicationInfo application_info = 7; @@ -326,8 +315,7 @@ public interface JobOrBuilder * * *
-   * Optional.
-   * The benefits included with the job.
+   * Optional. The benefits included with the job.
    * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -337,8 +325,7 @@ public interface JobOrBuilder * * *
-   * Optional.
-   * The benefits included with the job.
+   * Optional. The benefits included with the job.
    * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -348,8 +335,7 @@ public interface JobOrBuilder * * *
-   * Optional.
-   * The benefits included with the job.
+   * Optional. The benefits included with the job.
    * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -359,8 +345,7 @@ public interface JobOrBuilder * * *
-   * Optional.
-   * The benefits included with the job.
+   * Optional. The benefits included with the job.
    * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -370,8 +355,7 @@ public interface JobOrBuilder * * *
-   * Optional.
-   * The benefits included with the job.
+   * Optional. The benefits included with the job.
    * 
* * repeated .google.cloud.talent.v4beta1.JobBenefit job_benefits = 8; @@ -382,9 +366,8 @@ public interface JobOrBuilder * * *
-   * Optional.
-   * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-   * that will paid to the employee.
+   * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+   * compensation that will paid to the employee.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -394,9 +377,8 @@ public interface JobOrBuilder * * *
-   * Optional.
-   * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-   * that will paid to the employee.
+   * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+   * compensation that will paid to the employee.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -406,9 +388,8 @@ public interface JobOrBuilder * * *
-   * Optional.
-   * Job compensation information (a.k.a. "pay rate") i.e., the compensation
-   * that will paid to the employee.
+   * Optional. Job compensation information (a.k.a. "pay rate") i.e., the
+   * compensation that will paid to the employee.
    * 
* * .google.cloud.talent.v4beta1.CompensationInfo compensation_info = 9; @@ -419,9 +400,8 @@ public interface JobOrBuilder * * *
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom job
-   * attributes that are not covered by the provided structured fields.
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * job attributes that are not covered by the provided structured fields.
    * The keys of the map are strings up to 64 bytes and must match the
    * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
    * KEY_1_LIKE_THIS.
@@ -440,9 +420,8 @@ public interface JobOrBuilder
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom job
-   * attributes that are not covered by the provided structured fields.
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * job attributes that are not covered by the provided structured fields.
    * The keys of the map are strings up to 64 bytes and must match the
    * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
    * KEY_1_LIKE_THIS.
@@ -465,9 +444,8 @@ public interface JobOrBuilder
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom job
-   * attributes that are not covered by the provided structured fields.
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * job attributes that are not covered by the provided structured fields.
    * The keys of the map are strings up to 64 bytes and must match the
    * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
    * KEY_1_LIKE_THIS.
@@ -487,9 +465,8 @@ public interface JobOrBuilder
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom job
-   * attributes that are not covered by the provided structured fields.
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * job attributes that are not covered by the provided structured fields.
    * The keys of the map are strings up to 64 bytes and must match the
    * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
    * KEY_1_LIKE_THIS.
@@ -509,9 +486,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom job
-   * attributes that are not covered by the provided structured fields.
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * job attributes that are not covered by the provided structured fields.
    * The keys of the map are strings up to 64 bytes and must match the
    * pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or
    * KEY_1_LIKE_THIS.
@@ -531,8 +507,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * The desired education degrees for the job, such as Bachelors, Masters.
+   * Optional. The desired education degrees for the job, such as Bachelors,
+   * Masters.
    * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -542,8 +518,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The desired education degrees for the job, such as Bachelors, Masters.
+   * Optional. The desired education degrees for the job, such as Bachelors,
+   * Masters.
    * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -553,8 +529,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The desired education degrees for the job, such as Bachelors, Masters.
+   * Optional. The desired education degrees for the job, such as Bachelors,
+   * Masters.
    * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -564,8 +540,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The desired education degrees for the job, such as Bachelors, Masters.
+   * Optional. The desired education degrees for the job, such as Bachelors,
+   * Masters.
    * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -575,8 +551,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The desired education degrees for the job, such as Bachelors, Masters.
+   * Optional. The desired education degrees for the job, such as Bachelors,
+   * Masters.
    * 
* * repeated .google.cloud.talent.v4beta1.DegreeType degree_types = 11; @@ -587,9 +563,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The department or functional area within the company with the open
-   * position.
+   * Optional. The department or functional area within the company with the
+   * open position.
    * The maximum number of allowed characters is 255.
    * 
* @@ -600,9 +575,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The department or functional area within the company with the open
-   * position.
+   * Optional. The department or functional area within the company with the
+   * open position.
    * The maximum number of allowed characters is 255.
    * 
* @@ -614,8 +588,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The employment type(s) of a job, for example,
+   * Optional. The employment type(s) of a job, for example,
    * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
    * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
    * 
@@ -627,8 +600,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The employment type(s) of a job, for example,
+   * Optional. The employment type(s) of a job, for example,
    * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
    * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
    * 
@@ -640,8 +612,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The employment type(s) of a job, for example,
+   * Optional. The employment type(s) of a job, for example,
    * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
    * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
    * 
@@ -653,8 +624,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The employment type(s) of a job, for example,
+   * Optional. The employment type(s) of a job, for example,
    * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
    * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
    * 
@@ -666,8 +636,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The employment type(s) of a job, for example,
+   * Optional. The employment type(s) of a job, for example,
    * [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or
    * [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME].
    * 
@@ -680,8 +649,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * A description of bonus, commission, and other compensation
+   * Optional. A description of bonus, commission, and other compensation
    * incentives associated with the job not including salary or pay.
    * The maximum number of allowed characters is 10,000.
    * 
@@ -693,8 +661,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * A description of bonus, commission, and other compensation
+   * Optional. A description of bonus, commission, and other compensation
    * incentives associated with the job not including salary or pay.
    * The maximum number of allowed characters is 10,000.
    * 
@@ -707,8 +674,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The language of the posting. This field is distinct from
+   * Optional. The language of the posting. This field is distinct from
    * any requirements for fluency that are associated with the job.
    * Language codes must be in BCP-47 format, such as "en-US" or "sr-Latn".
    * For more information, see
@@ -728,8 +694,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * The language of the posting. This field is distinct from
+   * Optional. The language of the posting. This field is distinct from
    * any requirements for fluency that are associated with the job.
    * Language codes must be in BCP-47 format, such as "en-US" or "sr-Latn".
    * For more information, see
@@ -750,8 +715,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * The experience level associated with the job, such as "Entry Level".
+   * Optional. The experience level associated with the job, such as "Entry
+   * Level".
    * 
* * .google.cloud.talent.v4beta1.JobLevel job_level = 16; @@ -761,8 +726,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The experience level associated with the job, such as "Entry Level".
+   * Optional. The experience level associated with the job, such as "Entry
+   * Level".
    * 
* * .google.cloud.talent.v4beta1.JobLevel job_level = 16; @@ -773,8 +738,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * A promotion value of the job, as determined by the client.
+   * Optional. A promotion value of the job, as determined by the client.
    * The value determines the sort order of the jobs returned when searching for
    * jobs using the featured jobs search call, with higher promotional values
    * being returned first and ties being resolved by relevance sort. Only the
@@ -790,8 +754,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * A description of the qualifications required to perform the
+   * Optional. A description of the qualifications required to perform the
    * job. The use of this field is recommended
    * as an alternative to using the more general
    * [description][google.cloud.talent.v4beta1.Job.description] field.
@@ -807,8 +770,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * A description of the qualifications required to perform the
+   * Optional. A description of the qualifications required to perform the
    * job. The use of this field is recommended
    * as an alternative to using the more general
    * [description][google.cloud.talent.v4beta1.Job.description] field.
@@ -825,8 +787,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * A description of job responsibilities. The use of this field is
+   * Optional. A description of job responsibilities. The use of this field is
    * recommended as an alternative to using the more general
    * [description][google.cloud.talent.v4beta1.Job.description] field.
    * This field accepts and sanitizes HTML input, and also accepts
@@ -841,8 +802,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * A description of job responsibilities. The use of this field is
+   * Optional. A description of job responsibilities. The use of this field is
    * recommended as an alternative to using the more general
    * [description][google.cloud.talent.v4beta1.Job.description] field.
    * This field accepts and sanitizes HTML input, and also accepts
@@ -858,13 +818,12 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * The job [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for
-   * example, state, country) throughout which the job is available. If this
-   * field is set, a
-   * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a search
-   * query within the job region finds this job posting if an exact location
-   * match isn't specified. If this field is set to
+   * Optional. The job
+   * [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for example,
+   * state, country) throughout which the job is available. If this field is
+   * set, a [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a
+   * search query within the job region finds this job posting if an exact
+   * location match isn't specified. If this field is set to
    * [PostingRegion.NATION][google.cloud.talent.v4beta1.PostingRegion.NATION] or
    * [PostingRegion.ADMINISTRATIVE_AREA][google.cloud.talent.v4beta1.PostingRegion.ADMINISTRATIVE_AREA],
    * setting job [Job.addresses][google.cloud.talent.v4beta1.Job.addresses] to
@@ -878,13 +837,12 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * The job [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for
-   * example, state, country) throughout which the job is available. If this
-   * field is set, a
-   * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a search
-   * query within the job region finds this job posting if an exact location
-   * match isn't specified. If this field is set to
+   * Optional. The job
+   * [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for example,
+   * state, country) throughout which the job is available. If this field is
+   * set, a [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a
+   * search query within the job region finds this job posting if an exact
+   * location match isn't specified. If this field is set to
    * [PostingRegion.NATION][google.cloud.talent.v4beta1.PostingRegion.NATION] or
    * [PostingRegion.ADMINISTRATIVE_AREA][google.cloud.talent.v4beta1.PostingRegion.ADMINISTRATIVE_AREA],
    * setting job [Job.addresses][google.cloud.talent.v4beta1.Job.addresses] to
@@ -899,8 +857,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * The visibility of the job.
+   * Optional. The visibility of the job.
    * Defaults to
    * [Visibility.ACCOUNT_ONLY][google.cloud.talent.v4beta1.Visibility.ACCOUNT_ONLY]
    * if not specified.
@@ -913,8 +870,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * The visibility of the job.
+   * Optional. The visibility of the job.
    * Defaults to
    * [Visibility.ACCOUNT_ONLY][google.cloud.talent.v4beta1.Visibility.ACCOUNT_ONLY]
    * if not specified.
@@ -928,9 +884,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * The start timestamp of the job in UTC time zone. Typically this field
-   * is used for contracting engagements. Invalid timestamps are ignored.
+   * Optional. The start timestamp of the job in UTC time zone. Typically this
+   * field is used for contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -940,9 +895,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The start timestamp of the job in UTC time zone. Typically this field
-   * is used for contracting engagements. Invalid timestamps are ignored.
+   * Optional. The start timestamp of the job in UTC time zone. Typically this
+   * field is used for contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -952,9 +906,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The start timestamp of the job in UTC time zone. Typically this field
-   * is used for contracting engagements. Invalid timestamps are ignored.
+   * Optional. The start timestamp of the job in UTC time zone. Typically this
+   * field is used for contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_start_time = 22; @@ -965,9 +918,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The end timestamp of the job. Typically this field is used for contracting
-   * engagements. Invalid timestamps are ignored.
+   * Optional. The end timestamp of the job. Typically this field is used for
+   * contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -977,9 +929,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The end timestamp of the job. Typically this field is used for contracting
-   * engagements. Invalid timestamps are ignored.
+   * Optional. The end timestamp of the job. Typically this field is used for
+   * contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -989,9 +940,8 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The end timestamp of the job. Typically this field is used for contracting
-   * engagements. Invalid timestamps are ignored.
+   * Optional. The end timestamp of the job. Typically this field is used for
+   * contracting engagements. Invalid timestamps are ignored.
    * 
* * .google.protobuf.Timestamp job_end_time = 23; @@ -1002,10 +952,9 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The timestamp this job posting was most recently published. The default
-   * value is the time the request arrives at the server. Invalid timestamps are
-   * ignored.
+   * Optional. The timestamp this job posting was most recently published. The
+   * default value is the time the request arrives at the server. Invalid
+   * timestamps are ignored.
    * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -1015,10 +964,9 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The timestamp this job posting was most recently published. The default
-   * value is the time the request arrives at the server. Invalid timestamps are
-   * ignored.
+   * Optional. The timestamp this job posting was most recently published. The
+   * default value is the time the request arrives at the server. Invalid
+   * timestamps are ignored.
    * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -1028,10 +976,9 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * The timestamp this job posting was most recently published. The default
-   * value is the time the request arrives at the server. Invalid timestamps are
-   * ignored.
+   * Optional. The timestamp this job posting was most recently published. The
+   * default value is the time the request arrives at the server. Invalid
+   * timestamps are ignored.
    * 
* * .google.protobuf.Timestamp posting_publish_time = 24; @@ -1046,25 +993,35 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -1090,25 +1047,35 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -1134,25 +1101,35 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * experience. * The expiration timestamp of the job. After this timestamp, the * job is marked as expired, and it no longer appears in search results. The - * expired job can't be deleted or listed by the - * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - * can be retrieved with the + * expired job can't be listed by the + * [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + * be retrieved with the * [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + * the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + * deleted with the + * [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An * expired job can be updated and opened again by using a future expiration * timestamp. Updating an expired job fails if there is another existing open * job with same [company][google.cloud.talent.v4beta1.Job.company], * [language_code][google.cloud.talent.v4beta1.Job.language_code] and * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. * The expired jobs are retained in our system for 90 days. However, the - * overall expired job count cannot exceed 3 times the maximum of open jobs - * count over the past week, otherwise jobs with earlier expire time are - * cleaned first. Expired jobs are no longer accessible after they are cleaned + * overall expired job count cannot exceed 3 times the maximum number of + * open jobs over previous 7 days. If this threshold is exceeded, + * expired jobs are cleaned out in order of earliest expire time. + * Expired jobs are no longer accessible after they are cleaned * out. * Invalid timestamps are ignored, and treated as expire time not provided. - * Timestamp before the instant request is made is considered valid, the job - * will be treated as expired immediately. + * If the timestamp is before the instant request is made, the job + * is treated as expired immediately on creation. This kind of job can + * not be updated. And when creating a job with past timestamp, the + * [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + * must be set before + * [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + * The purpose of this feature is to allow other objects, such as + * [Application][google.cloud.talent.v4beta1.Application], to refer a job that + * didn't exist in the system prior to becoming expired. If you want to modify + * a job that was expired on creation, delete it and create a new one. * If this value isn't provided at the time of job creation or is invalid, * the job posting expires after 30 days from the job's creation time. For * example, if the job was created on 2017/01/01 13:00AM UTC with an @@ -1289,8 +1266,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * Options for job processing.
+   * Optional. Options for job processing.
    * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -1300,8 +1276,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * Options for job processing.
+   * Optional. Options for job processing.
    * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; @@ -1311,8 +1286,7 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault( * * *
-   * Optional.
-   * Options for job processing.
+   * Optional. Options for job processing.
    * 
* * .google.cloud.talent.v4beta1.Job.ProcessingOptions processing_options = 30; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobQuery.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobQuery.java index 388b36de7b13..1c8a433710f5 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobQuery.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobQuery.java @@ -291,9 +291,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * The query string that matches against the job title, description, and
-   * location fields.
+   * Optional. The query string that matches against the job title, description,
+   * and location fields.
    * The maximum number of allowed characters is 255.
    * 
* @@ -314,9 +313,8 @@ public java.lang.String getQuery() { * * *
-   * Optional.
-   * The query string that matches against the job title, description, and
-   * location fields.
+   * Optional. The query string that matches against the job title, description,
+   * and location fields.
    * The maximum number of allowed characters is 255.
    * 
* @@ -340,8 +338,7 @@ public com.google.protobuf.ByteString getQueryBytes() { * * *
-   * Optional.
-   * This filter specifies the company entities to search against.
+   * Optional. This filter specifies the company entities to search against.
    * If a value isn't specified, jobs are searched for against all
    * companies.
    * If multiple values are specified, jobs are searched against the
@@ -363,8 +360,7 @@ public com.google.protobuf.ProtocolStringList getCompaniesList() {
    *
    *
    * 
-   * Optional.
-   * This filter specifies the company entities to search against.
+   * Optional. This filter specifies the company entities to search against.
    * If a value isn't specified, jobs are searched for against all
    * companies.
    * If multiple values are specified, jobs are searched against the
@@ -386,8 +382,7 @@ public int getCompaniesCount() {
    *
    *
    * 
-   * Optional.
-   * This filter specifies the company entities to search against.
+   * Optional. This filter specifies the company entities to search against.
    * If a value isn't specified, jobs are searched for against all
    * companies.
    * If multiple values are specified, jobs are searched against the
@@ -409,8 +404,7 @@ public java.lang.String getCompanies(int index) {
    *
    *
    * 
-   * Optional.
-   * This filter specifies the company entities to search against.
+   * Optional. This filter specifies the company entities to search against.
    * If a value isn't specified, jobs are searched for against all
    * companies.
    * If multiple values are specified, jobs are searched against the
@@ -435,8 +429,7 @@ public com.google.protobuf.ByteString getCompaniesBytes(int index) {
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the jobs to
+   * Optional. The location filter specifies geo-regions containing the jobs to
    * search against. See
    * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
    * information.
@@ -458,8 +451,7 @@ public java.util.List getLocatio
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the jobs to
+   * Optional. The location filter specifies geo-regions containing the jobs to
    * search against. See
    * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
    * information.
@@ -482,8 +474,7 @@ public java.util.List getLocatio
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the jobs to
+   * Optional. The location filter specifies geo-regions containing the jobs to
    * search against. See
    * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
    * information.
@@ -505,8 +496,7 @@ public int getLocationFiltersCount() {
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the jobs to
+   * Optional. The location filter specifies geo-regions containing the jobs to
    * search against. See
    * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
    * information.
@@ -528,8 +518,7 @@ public com.google.cloud.talent.v4beta1.LocationFilter getLocationFilters(int ind
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the jobs to
+   * Optional. The location filter specifies geo-regions containing the jobs to
    * search against. See
    * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
    * information.
@@ -569,10 +558,9 @@ public com.google.cloud.talent.v4beta1.JobCategory convert(java.lang.Integer fro
    *
    *
    * 
-   * Optional.
-   * The category filter specifies the categories of jobs to search against.
-   * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-   * information.
+   * Optional. The category filter specifies the categories of jobs to search
+   * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+   * more information.
    * If a value isn't specified, jobs from any category are searched against.
    * If multiple values are specified, jobs from any of the specified
    * categories are searched against.
@@ -589,10 +577,9 @@ public java.util.List getJobCategor
    *
    *
    * 
-   * Optional.
-   * The category filter specifies the categories of jobs to search against.
-   * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-   * information.
+   * Optional. The category filter specifies the categories of jobs to search
+   * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+   * more information.
    * If a value isn't specified, jobs from any category are searched against.
    * If multiple values are specified, jobs from any of the specified
    * categories are searched against.
@@ -607,10 +594,9 @@ public int getJobCategoriesCount() {
    *
    *
    * 
-   * Optional.
-   * The category filter specifies the categories of jobs to search against.
-   * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-   * information.
+   * Optional. The category filter specifies the categories of jobs to search
+   * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+   * more information.
    * If a value isn't specified, jobs from any category are searched against.
    * If multiple values are specified, jobs from any of the specified
    * categories are searched against.
@@ -625,10 +611,9 @@ public com.google.cloud.talent.v4beta1.JobCategory getJobCategories(int index) {
    *
    *
    * 
-   * Optional.
-   * The category filter specifies the categories of jobs to search against.
-   * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-   * information.
+   * Optional. The category filter specifies the categories of jobs to search
+   * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+   * more information.
    * If a value isn't specified, jobs from any category are searched against.
    * If multiple values are specified, jobs from any of the specified
    * categories are searched against.
@@ -643,10 +628,9 @@ public java.util.List getJobCategoriesValueList() {
    *
    *
    * 
-   * Optional.
-   * The category filter specifies the categories of jobs to search against.
-   * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-   * information.
+   * Optional. The category filter specifies the categories of jobs to search
+   * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+   * more information.
    * If a value isn't specified, jobs from any category are searched against.
    * If multiple values are specified, jobs from any of the specified
    * categories are searched against.
@@ -666,8 +650,8 @@ public int getJobCategoriesValue(int index) {
    *
    *
    * 
-   * Optional.
-   *  Allows filtering jobs by commute time with different travel methods (for
+   * Optional. Allows filtering jobs by commute time with different travel
+   * methods (for
    *  example, driving or public transit).
    * Note: This only works when you specify a
    * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -685,8 +669,8 @@ public boolean hasCommuteFilter() {
    *
    *
    * 
-   * Optional.
-   *  Allows filtering jobs by commute time with different travel methods (for
+   * Optional. Allows filtering jobs by commute time with different travel
+   * methods (for
    *  example, driving or public transit).
    * Note: This only works when you specify a
    * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -706,8 +690,8 @@ public com.google.cloud.talent.v4beta1.CommuteFilter getCommuteFilter() {
    *
    *
    * 
-   * Optional.
-   *  Allows filtering jobs by commute time with different travel methods (for
+   * Optional. Allows filtering jobs by commute time with different travel
+   * methods (for
    *  example, driving or public transit).
    * Note: This only works when you specify a
    * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -728,8 +712,7 @@ public com.google.cloud.talent.v4beta1.CommuteFilterOrBuilder getCommuteFilterOr
    *
    *
    * 
-   * Optional.
-   * This filter specifies the exact company
+   * Optional. This filter specifies the exact company
    * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
    * the jobs to search against.
    * If a value isn't specified, jobs within the search results are
@@ -748,8 +731,7 @@ public com.google.protobuf.ProtocolStringList getCompanyDisplayNamesList() {
    *
    *
    * 
-   * Optional.
-   * This filter specifies the exact company
+   * Optional. This filter specifies the exact company
    * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
    * the jobs to search against.
    * If a value isn't specified, jobs within the search results are
@@ -768,8 +750,7 @@ public int getCompanyDisplayNamesCount() {
    *
    *
    * 
-   * Optional.
-   * This filter specifies the exact company
+   * Optional. This filter specifies the exact company
    * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
    * the jobs to search against.
    * If a value isn't specified, jobs within the search results are
@@ -788,8 +769,7 @@ public java.lang.String getCompanyDisplayNames(int index) {
    *
    *
    * 
-   * Optional.
-   * This filter specifies the exact company
+   * Optional. This filter specifies the exact company
    * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
    * the jobs to search against.
    * If a value isn't specified, jobs within the search results are
@@ -811,8 +791,7 @@ public com.google.protobuf.ByteString getCompanyDisplayNamesBytes(int index) {
    *
    *
    * 
-   * Optional.
-   * This search filter is applied only to
+   * Optional. This search filter is applied only to
    * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
    * For example, if the filter is specified as "Hourly job with per-hour
    * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -828,8 +807,7 @@ public boolean hasCompensationFilter() {
    *
    *
    * 
-   * Optional.
-   * This search filter is applied only to
+   * Optional. This search filter is applied only to
    * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
    * For example, if the filter is specified as "Hourly job with per-hour
    * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -847,8 +825,7 @@ public com.google.cloud.talent.v4beta1.CompensationFilter getCompensationFilter(
    *
    *
    * 
-   * Optional.
-   * This search filter is applied only to
+   * Optional. This search filter is applied only to
    * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
    * For example, if the filter is specified as "Hourly job with per-hour
    * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -868,8 +845,7 @@ public com.google.cloud.talent.v4beta1.CompensationFilter getCompensationFilter(
    *
    *
    * 
-   * Optional.
-   * This filter specifies a structured syntax to match against the
+   * Optional. This filter specifies a structured syntax to match against the
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes]
    * marked as `filterable`.
    * The syntax for this expression is a subset of SQL syntax.
@@ -906,8 +882,7 @@ public java.lang.String getCustomAttributeFilter() {
    *
    *
    * 
-   * Optional.
-   * This filter specifies a structured syntax to match against the
+   * Optional. This filter specifies a structured syntax to match against the
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes]
    * marked as `filterable`.
    * The syntax for this expression is a subset of SQL syntax.
@@ -947,8 +922,7 @@ public com.google.protobuf.ByteString getCustomAttributeFilterBytes() {
    *
    *
    * 
-   * Optional.
-   * This flag controls the spell-check feature. If false, the
+   * Optional. This flag controls the spell-check feature. If false, the
    * service attempts to correct a misspelled query,
    * for example, "enginee" is corrected to "engineer".
    * Defaults to false: a spell check is performed.
@@ -980,9 +954,8 @@ public com.google.cloud.talent.v4beta1.EmploymentType convert(java.lang.Integer
    *
    *
    * 
-   * Optional.
-   * The employment type filter specifies the employment type of jobs to
-   * search against, such as
+   * Optional. The employment type filter specifies the employment type of jobs
+   * to search against, such as
    * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
    * If a value isn't specified, jobs in the search results includes any
    * employment type.
@@ -1001,9 +974,8 @@ public java.util.List getEmploym
    *
    *
    * 
-   * Optional.
-   * The employment type filter specifies the employment type of jobs to
-   * search against, such as
+   * Optional. The employment type filter specifies the employment type of jobs
+   * to search against, such as
    * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
    * If a value isn't specified, jobs in the search results includes any
    * employment type.
@@ -1020,9 +992,8 @@ public int getEmploymentTypesCount() {
    *
    *
    * 
-   * Optional.
-   * The employment type filter specifies the employment type of jobs to
-   * search against, such as
+   * Optional. The employment type filter specifies the employment type of jobs
+   * to search against, such as
    * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
    * If a value isn't specified, jobs in the search results includes any
    * employment type.
@@ -1039,9 +1010,8 @@ public com.google.cloud.talent.v4beta1.EmploymentType getEmploymentTypes(int ind
    *
    *
    * 
-   * Optional.
-   * The employment type filter specifies the employment type of jobs to
-   * search against, such as
+   * Optional. The employment type filter specifies the employment type of jobs
+   * to search against, such as
    * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
    * If a value isn't specified, jobs in the search results includes any
    * employment type.
@@ -1058,9 +1028,8 @@ public java.util.List getEmploymentTypesValueList() {
    *
    *
    * 
-   * Optional.
-   * The employment type filter specifies the employment type of jobs to
-   * search against, such as
+   * Optional. The employment type filter specifies the employment type of jobs
+   * to search against, such as
    * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
    * If a value isn't specified, jobs in the search results includes any
    * employment type.
@@ -1082,8 +1051,7 @@ public int getEmploymentTypesValue(int index) {
    *
    *
    * 
-   * Optional.
-   * This filter specifies the locale of jobs to search against,
+   * Optional. This filter specifies the locale of jobs to search against,
    * for example, "en-US".
    * If a value isn't specified, the search results can contain jobs in any
    * locale.
@@ -1102,8 +1070,7 @@ public com.google.protobuf.ProtocolStringList getLanguageCodesList() {
    *
    *
    * 
-   * Optional.
-   * This filter specifies the locale of jobs to search against,
+   * Optional. This filter specifies the locale of jobs to search against,
    * for example, "en-US".
    * If a value isn't specified, the search results can contain jobs in any
    * locale.
@@ -1122,8 +1089,7 @@ public int getLanguageCodesCount() {
    *
    *
    * 
-   * Optional.
-   * This filter specifies the locale of jobs to search against,
+   * Optional. This filter specifies the locale of jobs to search against,
    * for example, "en-US".
    * If a value isn't specified, the search results can contain jobs in any
    * locale.
@@ -1142,8 +1108,7 @@ public java.lang.String getLanguageCodes(int index) {
    *
    *
    * 
-   * Optional.
-   * This filter specifies the locale of jobs to search against,
+   * Optional. This filter specifies the locale of jobs to search against,
    * for example, "en-US".
    * If a value isn't specified, the search results can contain jobs in any
    * locale.
@@ -1165,9 +1130,8 @@ public com.google.protobuf.ByteString getLanguageCodesBytes(int index) {
    *
    *
    * 
-   * Optional.
-   * Jobs published within a range specified by this filter are searched
-   * against.
+   * Optional. Jobs published within a range specified by this filter are
+   * searched against.
    * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -1179,9 +1143,8 @@ public boolean hasPublishTimeRange() { * * *
-   * Optional.
-   * Jobs published within a range specified by this filter are searched
-   * against.
+   * Optional. Jobs published within a range specified by this filter are
+   * searched against.
    * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -1195,9 +1158,8 @@ public com.google.cloud.talent.v4beta1.TimestampRange getPublishTimeRange() { * * *
-   * Optional.
-   * Jobs published within a range specified by this filter are searched
-   * against.
+   * Optional. Jobs published within a range specified by this filter are
+   * searched against.
    * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -1212,8 +1174,8 @@ public com.google.cloud.talent.v4beta1.TimestampRangeOrBuilder getPublishTimeRan * * *
-   * Optional.
-   * This filter specifies a list of job names to be excluded during search.
+   * Optional. This filter specifies a list of job names to be excluded during
+   * search.
    * At most 400 excluded job names are allowed.
    * 
* @@ -1226,8 +1188,8 @@ public com.google.protobuf.ProtocolStringList getExcludedJobsList() { * * *
-   * Optional.
-   * This filter specifies a list of job names to be excluded during search.
+   * Optional. This filter specifies a list of job names to be excluded during
+   * search.
    * At most 400 excluded job names are allowed.
    * 
* @@ -1240,8 +1202,8 @@ public int getExcludedJobsCount() { * * *
-   * Optional.
-   * This filter specifies a list of job names to be excluded during search.
+   * Optional. This filter specifies a list of job names to be excluded during
+   * search.
    * At most 400 excluded job names are allowed.
    * 
* @@ -1254,8 +1216,8 @@ public java.lang.String getExcludedJobs(int index) { * * *
-   * Optional.
-   * This filter specifies a list of job names to be excluded during search.
+   * Optional. This filter specifies a list of job names to be excluded during
+   * search.
    * At most 400 excluded job names are allowed.
    * 
* @@ -1978,9 +1940,8 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * The query string that matches against the job title, description, and
-     * location fields.
+     * Optional. The query string that matches against the job title, description,
+     * and location fields.
      * The maximum number of allowed characters is 255.
      * 
* @@ -2001,9 +1962,8 @@ public java.lang.String getQuery() { * * *
-     * Optional.
-     * The query string that matches against the job title, description, and
-     * location fields.
+     * Optional. The query string that matches against the job title, description,
+     * and location fields.
      * The maximum number of allowed characters is 255.
      * 
* @@ -2024,9 +1984,8 @@ public com.google.protobuf.ByteString getQueryBytes() { * * *
-     * Optional.
-     * The query string that matches against the job title, description, and
-     * location fields.
+     * Optional. The query string that matches against the job title, description,
+     * and location fields.
      * The maximum number of allowed characters is 255.
      * 
* @@ -2045,9 +2004,8 @@ public Builder setQuery(java.lang.String value) { * * *
-     * Optional.
-     * The query string that matches against the job title, description, and
-     * location fields.
+     * Optional. The query string that matches against the job title, description,
+     * and location fields.
      * The maximum number of allowed characters is 255.
      * 
* @@ -2063,9 +2021,8 @@ public Builder clearQuery() { * * *
-     * Optional.
-     * The query string that matches against the job title, description, and
-     * location fields.
+     * Optional. The query string that matches against the job title, description,
+     * and location fields.
      * The maximum number of allowed characters is 255.
      * 
* @@ -2095,8 +2052,7 @@ private void ensureCompaniesIsMutable() { * * *
-     * Optional.
-     * This filter specifies the company entities to search against.
+     * Optional. This filter specifies the company entities to search against.
      * If a value isn't specified, jobs are searched for against all
      * companies.
      * If multiple values are specified, jobs are searched against the
@@ -2118,8 +2074,7 @@ public com.google.protobuf.ProtocolStringList getCompaniesList() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the company entities to search against.
+     * Optional. This filter specifies the company entities to search against.
      * If a value isn't specified, jobs are searched for against all
      * companies.
      * If multiple values are specified, jobs are searched against the
@@ -2141,8 +2096,7 @@ public int getCompaniesCount() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the company entities to search against.
+     * Optional. This filter specifies the company entities to search against.
      * If a value isn't specified, jobs are searched for against all
      * companies.
      * If multiple values are specified, jobs are searched against the
@@ -2164,8 +2118,7 @@ public java.lang.String getCompanies(int index) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the company entities to search against.
+     * Optional. This filter specifies the company entities to search against.
      * If a value isn't specified, jobs are searched for against all
      * companies.
      * If multiple values are specified, jobs are searched against the
@@ -2187,8 +2140,7 @@ public com.google.protobuf.ByteString getCompaniesBytes(int index) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the company entities to search against.
+     * Optional. This filter specifies the company entities to search against.
      * If a value isn't specified, jobs are searched for against all
      * companies.
      * If multiple values are specified, jobs are searched against the
@@ -2216,8 +2168,7 @@ public Builder setCompanies(int index, java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the company entities to search against.
+     * Optional. This filter specifies the company entities to search against.
      * If a value isn't specified, jobs are searched for against all
      * companies.
      * If multiple values are specified, jobs are searched against the
@@ -2245,8 +2196,7 @@ public Builder addCompanies(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the company entities to search against.
+     * Optional. This filter specifies the company entities to search against.
      * If a value isn't specified, jobs are searched for against all
      * companies.
      * If multiple values are specified, jobs are searched against the
@@ -2271,8 +2221,7 @@ public Builder addAllCompanies(java.lang.Iterable values) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the company entities to search against.
+     * Optional. This filter specifies the company entities to search against.
      * If a value isn't specified, jobs are searched for against all
      * companies.
      * If multiple values are specified, jobs are searched against the
@@ -2297,8 +2246,7 @@ public Builder clearCompanies() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the company entities to search against.
+     * Optional. This filter specifies the company entities to search against.
      * If a value isn't specified, jobs are searched for against all
      * companies.
      * If multiple values are specified, jobs are searched against the
@@ -2346,8 +2294,7 @@ private void ensureLocationFiltersIsMutable() {
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2373,8 +2320,7 @@ public java.util.List getLocatio
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2400,8 +2346,7 @@ public int getLocationFiltersCount() {
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2427,8 +2372,7 @@ public com.google.cloud.talent.v4beta1.LocationFilter getLocationFilters(int ind
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2461,8 +2405,7 @@ public Builder setLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2492,8 +2435,7 @@ public Builder setLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2525,8 +2467,7 @@ public Builder addLocationFilters(com.google.cloud.talent.v4beta1.LocationFilter
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2559,8 +2500,7 @@ public Builder addLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2590,8 +2530,7 @@ public Builder addLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2621,8 +2560,7 @@ public Builder addLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2652,8 +2590,7 @@ public Builder addAllLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2682,8 +2619,7 @@ public Builder clearLocationFilters() {
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2712,8 +2648,7 @@ public Builder removeLocationFilters(int index) {
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2736,8 +2671,7 @@ public com.google.cloud.talent.v4beta1.LocationFilter.Builder getLocationFilters
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2764,8 +2698,7 @@ public com.google.cloud.talent.v4beta1.LocationFilterOrBuilder getLocationFilter
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2792,8 +2725,7 @@ public com.google.cloud.talent.v4beta1.LocationFilterOrBuilder getLocationFilter
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2816,8 +2748,7 @@ public com.google.cloud.talent.v4beta1.LocationFilter.Builder addLocationFilters
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2841,8 +2772,7 @@ public com.google.cloud.talent.v4beta1.LocationFilter.Builder addLocationFilters
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the jobs to
+     * Optional. The location filter specifies geo-regions containing the jobs to
      * search against. See
      * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
      * information.
@@ -2894,10 +2824,9 @@ private void ensureJobCategoriesIsMutable() {
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -2914,10 +2843,9 @@ public java.util.List getJobCategor
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -2932,10 +2860,9 @@ public int getJobCategoriesCount() {
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -2950,10 +2877,9 @@ public com.google.cloud.talent.v4beta1.JobCategory getJobCategories(int index) {
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -2974,10 +2900,9 @@ public Builder setJobCategories(int index, com.google.cloud.talent.v4beta1.JobCa
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -2998,10 +2923,9 @@ public Builder addJobCategories(com.google.cloud.talent.v4beta1.JobCategory valu
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -3022,10 +2946,9 @@ public Builder addAllJobCategories(
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -3043,10 +2966,9 @@ public Builder clearJobCategories() {
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -3061,10 +2983,9 @@ public java.util.List getJobCategoriesValueList() {
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -3079,10 +3000,9 @@ public int getJobCategoriesValue(int index) {
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -3100,10 +3020,9 @@ public Builder setJobCategoriesValue(int index, int value) {
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -3121,10 +3040,9 @@ public Builder addJobCategoriesValue(int value) {
      *
      *
      * 
-     * Optional.
-     * The category filter specifies the categories of jobs to search against.
-     * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-     * information.
+     * Optional. The category filter specifies the categories of jobs to search
+     * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+     * more information.
      * If a value isn't specified, jobs from any category are searched against.
      * If multiple values are specified, jobs from any of the specified
      * categories are searched against.
@@ -3151,8 +3069,8 @@ public Builder addAllJobCategoriesValue(java.lang.Iterable va
      *
      *
      * 
-     * Optional.
-     *  Allows filtering jobs by commute time with different travel methods (for
+     * Optional. Allows filtering jobs by commute time with different travel
+     * methods (for
      *  example, driving or public transit).
      * Note: This only works when you specify a
      * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -3170,8 +3088,8 @@ public boolean hasCommuteFilter() {
      *
      *
      * 
-     * Optional.
-     *  Allows filtering jobs by commute time with different travel methods (for
+     * Optional. Allows filtering jobs by commute time with different travel
+     * methods (for
      *  example, driving or public transit).
      * Note: This only works when you specify a
      * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -3195,8 +3113,8 @@ public com.google.cloud.talent.v4beta1.CommuteFilter getCommuteFilter() {
      *
      *
      * 
-     * Optional.
-     *  Allows filtering jobs by commute time with different travel methods (for
+     * Optional. Allows filtering jobs by commute time with different travel
+     * methods (for
      *  example, driving or public transit).
      * Note: This only works when you specify a
      * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -3224,8 +3142,8 @@ public Builder setCommuteFilter(com.google.cloud.talent.v4beta1.CommuteFilter va
      *
      *
      * 
-     * Optional.
-     *  Allows filtering jobs by commute time with different travel methods (for
+     * Optional. Allows filtering jobs by commute time with different travel
+     * methods (for
      *  example, driving or public transit).
      * Note: This only works when you specify a
      * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -3251,8 +3169,8 @@ public Builder setCommuteFilter(
      *
      *
      * 
-     * Optional.
-     *  Allows filtering jobs by commute time with different travel methods (for
+     * Optional. Allows filtering jobs by commute time with different travel
+     * methods (for
      *  example, driving or public transit).
      * Note: This only works when you specify a
      * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -3284,8 +3202,8 @@ public Builder mergeCommuteFilter(com.google.cloud.talent.v4beta1.CommuteFilter
      *
      *
      * 
-     * Optional.
-     *  Allows filtering jobs by commute time with different travel methods (for
+     * Optional. Allows filtering jobs by commute time with different travel
+     * methods (for
      *  example, driving or public transit).
      * Note: This only works when you specify a
      * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -3311,8 +3229,8 @@ public Builder clearCommuteFilter() {
      *
      *
      * 
-     * Optional.
-     *  Allows filtering jobs by commute time with different travel methods (for
+     * Optional. Allows filtering jobs by commute time with different travel
+     * methods (for
      *  example, driving or public transit).
      * Note: This only works when you specify a
      * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -3332,8 +3250,8 @@ public com.google.cloud.talent.v4beta1.CommuteFilter.Builder getCommuteFilterBui
      *
      *
      * 
-     * Optional.
-     *  Allows filtering jobs by commute time with different travel methods (for
+     * Optional. Allows filtering jobs by commute time with different travel
+     * methods (for
      *  example, driving or public transit).
      * Note: This only works when you specify a
      * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -3357,8 +3275,8 @@ public com.google.cloud.talent.v4beta1.CommuteFilterOrBuilder getCommuteFilterOr
      *
      *
      * 
-     * Optional.
-     *  Allows filtering jobs by commute time with different travel methods (for
+     * Optional. Allows filtering jobs by commute time with different travel
+     * methods (for
      *  example, driving or public transit).
      * Note: This only works when you specify a
      * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -3399,8 +3317,7 @@ private void ensureCompanyDisplayNamesIsMutable() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the exact company
+     * Optional. This filter specifies the exact company
      * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
      * the jobs to search against.
      * If a value isn't specified, jobs within the search results are
@@ -3419,8 +3336,7 @@ public com.google.protobuf.ProtocolStringList getCompanyDisplayNamesList() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the exact company
+     * Optional. This filter specifies the exact company
      * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
      * the jobs to search against.
      * If a value isn't specified, jobs within the search results are
@@ -3439,8 +3355,7 @@ public int getCompanyDisplayNamesCount() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the exact company
+     * Optional. This filter specifies the exact company
      * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
      * the jobs to search against.
      * If a value isn't specified, jobs within the search results are
@@ -3459,8 +3374,7 @@ public java.lang.String getCompanyDisplayNames(int index) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the exact company
+     * Optional. This filter specifies the exact company
      * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
      * the jobs to search against.
      * If a value isn't specified, jobs within the search results are
@@ -3479,8 +3393,7 @@ public com.google.protobuf.ByteString getCompanyDisplayNamesBytes(int index) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the exact company
+     * Optional. This filter specifies the exact company
      * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
      * the jobs to search against.
      * If a value isn't specified, jobs within the search results are
@@ -3505,8 +3418,7 @@ public Builder setCompanyDisplayNames(int index, java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the exact company
+     * Optional. This filter specifies the exact company
      * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
      * the jobs to search against.
      * If a value isn't specified, jobs within the search results are
@@ -3531,8 +3443,7 @@ public Builder addCompanyDisplayNames(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the exact company
+     * Optional. This filter specifies the exact company
      * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
      * the jobs to search against.
      * If a value isn't specified, jobs within the search results are
@@ -3554,8 +3465,7 @@ public Builder addAllCompanyDisplayNames(java.lang.Iterable va
      *
      *
      * 
-     * Optional.
-     * This filter specifies the exact company
+     * Optional. This filter specifies the exact company
      * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
      * the jobs to search against.
      * If a value isn't specified, jobs within the search results are
@@ -3577,8 +3487,7 @@ public Builder clearCompanyDisplayNames() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the exact company
+     * Optional. This filter specifies the exact company
      * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
      * the jobs to search against.
      * If a value isn't specified, jobs within the search results are
@@ -3611,8 +3520,7 @@ public Builder addCompanyDisplayNamesBytes(com.google.protobuf.ByteString value)
      *
      *
      * 
-     * Optional.
-     * This search filter is applied only to
+     * Optional. This search filter is applied only to
      * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
      * For example, if the filter is specified as "Hourly job with per-hour
      * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -3628,8 +3536,7 @@ public boolean hasCompensationFilter() {
      *
      *
      * 
-     * Optional.
-     * This search filter is applied only to
+     * Optional. This search filter is applied only to
      * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
      * For example, if the filter is specified as "Hourly job with per-hour
      * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -3651,8 +3558,7 @@ public com.google.cloud.talent.v4beta1.CompensationFilter getCompensationFilter(
      *
      *
      * 
-     * Optional.
-     * This search filter is applied only to
+     * Optional. This search filter is applied only to
      * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
      * For example, if the filter is specified as "Hourly job with per-hour
      * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -3678,8 +3584,7 @@ public Builder setCompensationFilter(com.google.cloud.talent.v4beta1.Compensatio
      *
      *
      * 
-     * Optional.
-     * This search filter is applied only to
+     * Optional. This search filter is applied only to
      * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
      * For example, if the filter is specified as "Hourly job with per-hour
      * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -3703,8 +3608,7 @@ public Builder setCompensationFilter(
      *
      *
      * 
-     * Optional.
-     * This search filter is applied only to
+     * Optional. This search filter is applied only to
      * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
      * For example, if the filter is specified as "Hourly job with per-hour
      * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -3735,8 +3639,7 @@ public Builder mergeCompensationFilter(
      *
      *
      * 
-     * Optional.
-     * This search filter is applied only to
+     * Optional. This search filter is applied only to
      * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
      * For example, if the filter is specified as "Hourly job with per-hour
      * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -3760,8 +3663,7 @@ public Builder clearCompensationFilter() {
      *
      *
      * 
-     * Optional.
-     * This search filter is applied only to
+     * Optional. This search filter is applied only to
      * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
      * For example, if the filter is specified as "Hourly job with per-hour
      * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -3780,8 +3682,7 @@ public Builder clearCompensationFilter() {
      *
      *
      * 
-     * Optional.
-     * This search filter is applied only to
+     * Optional. This search filter is applied only to
      * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
      * For example, if the filter is specified as "Hourly job with per-hour
      * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -3804,8 +3705,7 @@ public Builder clearCompensationFilter() {
      *
      *
      * 
-     * Optional.
-     * This search filter is applied only to
+     * Optional. This search filter is applied only to
      * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
      * For example, if the filter is specified as "Hourly job with per-hour
      * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -3836,8 +3736,7 @@ public Builder clearCompensationFilter() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies a structured syntax to match against the
+     * Optional. This filter specifies a structured syntax to match against the
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes]
      * marked as `filterable`.
      * The syntax for this expression is a subset of SQL syntax.
@@ -3874,8 +3773,7 @@ public java.lang.String getCustomAttributeFilter() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies a structured syntax to match against the
+     * Optional. This filter specifies a structured syntax to match against the
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes]
      * marked as `filterable`.
      * The syntax for this expression is a subset of SQL syntax.
@@ -3912,8 +3810,7 @@ public com.google.protobuf.ByteString getCustomAttributeFilterBytes() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies a structured syntax to match against the
+     * Optional. This filter specifies a structured syntax to match against the
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes]
      * marked as `filterable`.
      * The syntax for this expression is a subset of SQL syntax.
@@ -3948,8 +3845,7 @@ public Builder setCustomAttributeFilter(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies a structured syntax to match against the
+     * Optional. This filter specifies a structured syntax to match against the
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes]
      * marked as `filterable`.
      * The syntax for this expression is a subset of SQL syntax.
@@ -3981,8 +3877,7 @@ public Builder clearCustomAttributeFilter() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies a structured syntax to match against the
+     * Optional. This filter specifies a structured syntax to match against the
      * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes]
      * marked as `filterable`.
      * The syntax for this expression is a subset of SQL syntax.
@@ -4020,8 +3915,7 @@ public Builder setCustomAttributeFilterBytes(com.google.protobuf.ByteString valu
      *
      *
      * 
-     * Optional.
-     * This flag controls the spell-check feature. If false, the
+     * Optional. This flag controls the spell-check feature. If false, the
      * service attempts to correct a misspelled query,
      * for example, "enginee" is corrected to "engineer".
      * Defaults to false: a spell check is performed.
@@ -4036,8 +3930,7 @@ public boolean getDisableSpellCheck() {
      *
      *
      * 
-     * Optional.
-     * This flag controls the spell-check feature. If false, the
+     * Optional. This flag controls the spell-check feature. If false, the
      * service attempts to correct a misspelled query,
      * for example, "enginee" is corrected to "engineer".
      * Defaults to false: a spell check is performed.
@@ -4055,8 +3948,7 @@ public Builder setDisableSpellCheck(boolean value) {
      *
      *
      * 
-     * Optional.
-     * This flag controls the spell-check feature. If false, the
+     * Optional. This flag controls the spell-check feature. If false, the
      * service attempts to correct a misspelled query,
      * for example, "enginee" is corrected to "engineer".
      * Defaults to false: a spell check is performed.
@@ -4083,9 +3975,8 @@ private void ensureEmploymentTypesIsMutable() {
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4104,9 +3995,8 @@ public java.util.List getEmploym
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4123,9 +4013,8 @@ public int getEmploymentTypesCount() {
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4142,9 +4031,8 @@ public com.google.cloud.talent.v4beta1.EmploymentType getEmploymentTypes(int ind
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4168,9 +4056,8 @@ public Builder setEmploymentTypes(
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4193,9 +4080,8 @@ public Builder addEmploymentTypes(com.google.cloud.talent.v4beta1.EmploymentType
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4218,9 +4104,8 @@ public Builder addAllEmploymentTypes(
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4240,9 +4125,8 @@ public Builder clearEmploymentTypes() {
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4259,9 +4143,8 @@ public java.util.List getEmploymentTypesValueList() {
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4278,9 +4161,8 @@ public int getEmploymentTypesValue(int index) {
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4300,9 +4182,8 @@ public Builder setEmploymentTypesValue(int index, int value) {
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4322,9 +4203,8 @@ public Builder addEmploymentTypesValue(int value) {
      *
      *
      * 
-     * Optional.
-     * The employment type filter specifies the employment type of jobs to
-     * search against, such as
+     * Optional. The employment type filter specifies the employment type of jobs
+     * to search against, such as
      * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
      * If a value isn't specified, jobs in the search results includes any
      * employment type.
@@ -4356,8 +4236,7 @@ private void ensureLanguageCodesIsMutable() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the locale of jobs to search against,
+     * Optional. This filter specifies the locale of jobs to search against,
      * for example, "en-US".
      * If a value isn't specified, the search results can contain jobs in any
      * locale.
@@ -4376,8 +4255,7 @@ public com.google.protobuf.ProtocolStringList getLanguageCodesList() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the locale of jobs to search against,
+     * Optional. This filter specifies the locale of jobs to search against,
      * for example, "en-US".
      * If a value isn't specified, the search results can contain jobs in any
      * locale.
@@ -4396,8 +4274,7 @@ public int getLanguageCodesCount() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the locale of jobs to search against,
+     * Optional. This filter specifies the locale of jobs to search against,
      * for example, "en-US".
      * If a value isn't specified, the search results can contain jobs in any
      * locale.
@@ -4416,8 +4293,7 @@ public java.lang.String getLanguageCodes(int index) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the locale of jobs to search against,
+     * Optional. This filter specifies the locale of jobs to search against,
      * for example, "en-US".
      * If a value isn't specified, the search results can contain jobs in any
      * locale.
@@ -4436,8 +4312,7 @@ public com.google.protobuf.ByteString getLanguageCodesBytes(int index) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the locale of jobs to search against,
+     * Optional. This filter specifies the locale of jobs to search against,
      * for example, "en-US".
      * If a value isn't specified, the search results can contain jobs in any
      * locale.
@@ -4462,8 +4337,7 @@ public Builder setLanguageCodes(int index, java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the locale of jobs to search against,
+     * Optional. This filter specifies the locale of jobs to search against,
      * for example, "en-US".
      * If a value isn't specified, the search results can contain jobs in any
      * locale.
@@ -4488,8 +4362,7 @@ public Builder addLanguageCodes(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the locale of jobs to search against,
+     * Optional. This filter specifies the locale of jobs to search against,
      * for example, "en-US".
      * If a value isn't specified, the search results can contain jobs in any
      * locale.
@@ -4511,8 +4384,7 @@ public Builder addAllLanguageCodes(java.lang.Iterable values)
      *
      *
      * 
-     * Optional.
-     * This filter specifies the locale of jobs to search against,
+     * Optional. This filter specifies the locale of jobs to search against,
      * for example, "en-US".
      * If a value isn't specified, the search results can contain jobs in any
      * locale.
@@ -4534,8 +4406,7 @@ public Builder clearLanguageCodes() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies the locale of jobs to search against,
+     * Optional. This filter specifies the locale of jobs to search against,
      * for example, "en-US".
      * If a value isn't specified, the search results can contain jobs in any
      * locale.
@@ -4568,9 +4439,8 @@ public Builder addLanguageCodesBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * Jobs published within a range specified by this filter are searched
-     * against.
+     * Optional. Jobs published within a range specified by this filter are
+     * searched against.
      * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -4582,9 +4452,8 @@ public boolean hasPublishTimeRange() { * * *
-     * Optional.
-     * Jobs published within a range specified by this filter are searched
-     * against.
+     * Optional. Jobs published within a range specified by this filter are
+     * searched against.
      * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -4602,9 +4471,8 @@ public com.google.cloud.talent.v4beta1.TimestampRange getPublishTimeRange() { * * *
-     * Optional.
-     * Jobs published within a range specified by this filter are searched
-     * against.
+     * Optional. Jobs published within a range specified by this filter are
+     * searched against.
      * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -4626,9 +4494,8 @@ public Builder setPublishTimeRange(com.google.cloud.talent.v4beta1.TimestampRang * * *
-     * Optional.
-     * Jobs published within a range specified by this filter are searched
-     * against.
+     * Optional. Jobs published within a range specified by this filter are
+     * searched against.
      * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -4648,9 +4515,8 @@ public Builder setPublishTimeRange( * * *
-     * Optional.
-     * Jobs published within a range specified by this filter are searched
-     * against.
+     * Optional. Jobs published within a range specified by this filter are
+     * searched against.
      * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -4676,9 +4542,8 @@ public Builder mergePublishTimeRange(com.google.cloud.talent.v4beta1.TimestampRa * * *
-     * Optional.
-     * Jobs published within a range specified by this filter are searched
-     * against.
+     * Optional. Jobs published within a range specified by this filter are
+     * searched against.
      * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -4698,9 +4563,8 @@ public Builder clearPublishTimeRange() { * * *
-     * Optional.
-     * Jobs published within a range specified by this filter are searched
-     * against.
+     * Optional. Jobs published within a range specified by this filter are
+     * searched against.
      * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -4714,9 +4578,8 @@ public com.google.cloud.talent.v4beta1.TimestampRange.Builder getPublishTimeRang * * *
-     * Optional.
-     * Jobs published within a range specified by this filter are searched
-     * against.
+     * Optional. Jobs published within a range specified by this filter are
+     * searched against.
      * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -4734,9 +4597,8 @@ public com.google.cloud.talent.v4beta1.TimestampRangeOrBuilder getPublishTimeRan * * *
-     * Optional.
-     * Jobs published within a range specified by this filter are searched
-     * against.
+     * Optional. Jobs published within a range specified by this filter are
+     * searched against.
      * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -4771,8 +4633,8 @@ private void ensureExcludedJobsIsMutable() { * * *
-     * Optional.
-     * This filter specifies a list of job names to be excluded during search.
+     * Optional. This filter specifies a list of job names to be excluded during
+     * search.
      * At most 400 excluded job names are allowed.
      * 
* @@ -4785,8 +4647,8 @@ public com.google.protobuf.ProtocolStringList getExcludedJobsList() { * * *
-     * Optional.
-     * This filter specifies a list of job names to be excluded during search.
+     * Optional. This filter specifies a list of job names to be excluded during
+     * search.
      * At most 400 excluded job names are allowed.
      * 
* @@ -4799,8 +4661,8 @@ public int getExcludedJobsCount() { * * *
-     * Optional.
-     * This filter specifies a list of job names to be excluded during search.
+     * Optional. This filter specifies a list of job names to be excluded during
+     * search.
      * At most 400 excluded job names are allowed.
      * 
* @@ -4813,8 +4675,8 @@ public java.lang.String getExcludedJobs(int index) { * * *
-     * Optional.
-     * This filter specifies a list of job names to be excluded during search.
+     * Optional. This filter specifies a list of job names to be excluded during
+     * search.
      * At most 400 excluded job names are allowed.
      * 
* @@ -4827,8 +4689,8 @@ public com.google.protobuf.ByteString getExcludedJobsBytes(int index) { * * *
-     * Optional.
-     * This filter specifies a list of job names to be excluded during search.
+     * Optional. This filter specifies a list of job names to be excluded during
+     * search.
      * At most 400 excluded job names are allowed.
      * 
* @@ -4847,8 +4709,8 @@ public Builder setExcludedJobs(int index, java.lang.String value) { * * *
-     * Optional.
-     * This filter specifies a list of job names to be excluded during search.
+     * Optional. This filter specifies a list of job names to be excluded during
+     * search.
      * At most 400 excluded job names are allowed.
      * 
* @@ -4867,8 +4729,8 @@ public Builder addExcludedJobs(java.lang.String value) { * * *
-     * Optional.
-     * This filter specifies a list of job names to be excluded during search.
+     * Optional. This filter specifies a list of job names to be excluded during
+     * search.
      * At most 400 excluded job names are allowed.
      * 
* @@ -4884,8 +4746,8 @@ public Builder addAllExcludedJobs(java.lang.Iterable values) { * * *
-     * Optional.
-     * This filter specifies a list of job names to be excluded during search.
+     * Optional. This filter specifies a list of job names to be excluded during
+     * search.
      * At most 400 excluded job names are allowed.
      * 
* @@ -4901,8 +4763,8 @@ public Builder clearExcludedJobs() { * * *
-     * Optional.
-     * This filter specifies a list of job names to be excluded during search.
+     * Optional. This filter specifies a list of job names to be excluded during
+     * search.
      * At most 400 excluded job names are allowed.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobQueryOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobQueryOrBuilder.java index e34465304af9..fb682df7f71b 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobQueryOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobQueryOrBuilder.java @@ -12,9 +12,8 @@ public interface JobQueryOrBuilder * * *
-   * Optional.
-   * The query string that matches against the job title, description, and
-   * location fields.
+   * Optional. The query string that matches against the job title, description,
+   * and location fields.
    * The maximum number of allowed characters is 255.
    * 
* @@ -25,9 +24,8 @@ public interface JobQueryOrBuilder * * *
-   * Optional.
-   * The query string that matches against the job title, description, and
-   * location fields.
+   * Optional. The query string that matches against the job title, description,
+   * and location fields.
    * The maximum number of allowed characters is 255.
    * 
* @@ -39,8 +37,7 @@ public interface JobQueryOrBuilder * * *
-   * Optional.
-   * This filter specifies the company entities to search against.
+   * Optional. This filter specifies the company entities to search against.
    * If a value isn't specified, jobs are searched for against all
    * companies.
    * If multiple values are specified, jobs are searched against the
@@ -60,8 +57,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies the company entities to search against.
+   * Optional. This filter specifies the company entities to search against.
    * If a value isn't specified, jobs are searched for against all
    * companies.
    * If multiple values are specified, jobs are searched against the
@@ -81,8 +77,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies the company entities to search against.
+   * Optional. This filter specifies the company entities to search against.
    * If a value isn't specified, jobs are searched for against all
    * companies.
    * If multiple values are specified, jobs are searched against the
@@ -102,8 +97,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies the company entities to search against.
+   * Optional. This filter specifies the company entities to search against.
    * If a value isn't specified, jobs are searched for against all
    * companies.
    * If multiple values are specified, jobs are searched against the
@@ -124,8 +118,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the jobs to
+   * Optional. The location filter specifies geo-regions containing the jobs to
    * search against. See
    * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
    * information.
@@ -145,8 +138,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the jobs to
+   * Optional. The location filter specifies geo-regions containing the jobs to
    * search against. See
    * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
    * information.
@@ -166,8 +158,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the jobs to
+   * Optional. The location filter specifies geo-regions containing the jobs to
    * search against. See
    * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
    * information.
@@ -187,8 +178,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the jobs to
+   * Optional. The location filter specifies geo-regions containing the jobs to
    * search against. See
    * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
    * information.
@@ -209,8 +199,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the jobs to
+   * Optional. The location filter specifies geo-regions containing the jobs to
    * search against. See
    * [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more
    * information.
@@ -231,10 +220,9 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The category filter specifies the categories of jobs to search against.
-   * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-   * information.
+   * Optional. The category filter specifies the categories of jobs to search
+   * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+   * more information.
    * If a value isn't specified, jobs from any category are searched against.
    * If multiple values are specified, jobs from any of the specified
    * categories are searched against.
@@ -247,10 +235,9 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The category filter specifies the categories of jobs to search against.
-   * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-   * information.
+   * Optional. The category filter specifies the categories of jobs to search
+   * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+   * more information.
    * If a value isn't specified, jobs from any category are searched against.
    * If multiple values are specified, jobs from any of the specified
    * categories are searched against.
@@ -263,10 +250,9 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The category filter specifies the categories of jobs to search against.
-   * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-   * information.
+   * Optional. The category filter specifies the categories of jobs to search
+   * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+   * more information.
    * If a value isn't specified, jobs from any category are searched against.
    * If multiple values are specified, jobs from any of the specified
    * categories are searched against.
@@ -279,10 +265,9 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The category filter specifies the categories of jobs to search against.
-   * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-   * information.
+   * Optional. The category filter specifies the categories of jobs to search
+   * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+   * more information.
    * If a value isn't specified, jobs from any category are searched against.
    * If multiple values are specified, jobs from any of the specified
    * categories are searched against.
@@ -295,10 +280,9 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The category filter specifies the categories of jobs to search against.
-   * See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more
-   * information.
+   * Optional. The category filter specifies the categories of jobs to search
+   * against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for
+   * more information.
    * If a value isn't specified, jobs from any category are searched against.
    * If multiple values are specified, jobs from any of the specified
    * categories are searched against.
@@ -312,8 +296,8 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   *  Allows filtering jobs by commute time with different travel methods (for
+   * Optional. Allows filtering jobs by commute time with different travel
+   * methods (for
    *  example, driving or public transit).
    * Note: This only works when you specify a
    * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -329,8 +313,8 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   *  Allows filtering jobs by commute time with different travel methods (for
+   * Optional. Allows filtering jobs by commute time with different travel
+   * methods (for
    *  example, driving or public transit).
    * Note: This only works when you specify a
    * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -346,8 +330,8 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   *  Allows filtering jobs by commute time with different travel methods (for
+   * Optional. Allows filtering jobs by commute time with different travel
+   * methods (for
    *  example, driving or public transit).
    * Note: This only works when you specify a
    * [CommuteMethod][google.cloud.talent.v4beta1.CommuteMethod]. In this case,
@@ -364,8 +348,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies the exact company
+   * Optional. This filter specifies the exact company
    * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
    * the jobs to search against.
    * If a value isn't specified, jobs within the search results are
@@ -382,8 +365,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies the exact company
+   * Optional. This filter specifies the exact company
    * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
    * the jobs to search against.
    * If a value isn't specified, jobs within the search results are
@@ -400,8 +382,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies the exact company
+   * Optional. This filter specifies the exact company
    * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
    * the jobs to search against.
    * If a value isn't specified, jobs within the search results are
@@ -418,8 +399,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies the exact company
+   * Optional. This filter specifies the exact company
    * [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of
    * the jobs to search against.
    * If a value isn't specified, jobs within the search results are
@@ -437,8 +417,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This search filter is applied only to
+   * Optional. This search filter is applied only to
    * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
    * For example, if the filter is specified as "Hourly job with per-hour
    * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -452,8 +431,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This search filter is applied only to
+   * Optional. This search filter is applied only to
    * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
    * For example, if the filter is specified as "Hourly job with per-hour
    * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -467,8 +445,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This search filter is applied only to
+   * Optional. This search filter is applied only to
    * [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info].
    * For example, if the filter is specified as "Hourly job with per-hour
    * compensation > $15", only jobs meeting these criteria are searched. If a
@@ -483,8 +460,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies a structured syntax to match against the
+   * Optional. This filter specifies a structured syntax to match against the
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes]
    * marked as `filterable`.
    * The syntax for this expression is a subset of SQL syntax.
@@ -511,8 +487,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies a structured syntax to match against the
+   * Optional. This filter specifies a structured syntax to match against the
    * [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes]
    * marked as `filterable`.
    * The syntax for this expression is a subset of SQL syntax.
@@ -540,8 +515,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This flag controls the spell-check feature. If false, the
+   * Optional. This flag controls the spell-check feature. If false, the
    * service attempts to correct a misspelled query,
    * for example, "enginee" is corrected to "engineer".
    * Defaults to false: a spell check is performed.
@@ -555,9 +529,8 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The employment type filter specifies the employment type of jobs to
-   * search against, such as
+   * Optional. The employment type filter specifies the employment type of jobs
+   * to search against, such as
    * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
    * If a value isn't specified, jobs in the search results includes any
    * employment type.
@@ -572,9 +545,8 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The employment type filter specifies the employment type of jobs to
-   * search against, such as
+   * Optional. The employment type filter specifies the employment type of jobs
+   * to search against, such as
    * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
    * If a value isn't specified, jobs in the search results includes any
    * employment type.
@@ -589,9 +561,8 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The employment type filter specifies the employment type of jobs to
-   * search against, such as
+   * Optional. The employment type filter specifies the employment type of jobs
+   * to search against, such as
    * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
    * If a value isn't specified, jobs in the search results includes any
    * employment type.
@@ -606,9 +577,8 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The employment type filter specifies the employment type of jobs to
-   * search against, such as
+   * Optional. The employment type filter specifies the employment type of jobs
+   * to search against, such as
    * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
    * If a value isn't specified, jobs in the search results includes any
    * employment type.
@@ -623,9 +593,8 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The employment type filter specifies the employment type of jobs to
-   * search against, such as
+   * Optional. The employment type filter specifies the employment type of jobs
+   * to search against, such as
    * [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME].
    * If a value isn't specified, jobs in the search results includes any
    * employment type.
@@ -641,8 +610,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies the locale of jobs to search against,
+   * Optional. This filter specifies the locale of jobs to search against,
    * for example, "en-US".
    * If a value isn't specified, the search results can contain jobs in any
    * locale.
@@ -659,8 +627,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies the locale of jobs to search against,
+   * Optional. This filter specifies the locale of jobs to search against,
    * for example, "en-US".
    * If a value isn't specified, the search results can contain jobs in any
    * locale.
@@ -677,8 +644,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies the locale of jobs to search against,
+   * Optional. This filter specifies the locale of jobs to search against,
    * for example, "en-US".
    * If a value isn't specified, the search results can contain jobs in any
    * locale.
@@ -695,8 +661,7 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * This filter specifies the locale of jobs to search against,
+   * Optional. This filter specifies the locale of jobs to search against,
    * for example, "en-US".
    * If a value isn't specified, the search results can contain jobs in any
    * locale.
@@ -714,9 +679,8 @@ public interface JobQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Jobs published within a range specified by this filter are searched
-   * against.
+   * Optional. Jobs published within a range specified by this filter are
+   * searched against.
    * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -726,9 +690,8 @@ public interface JobQueryOrBuilder * * *
-   * Optional.
-   * Jobs published within a range specified by this filter are searched
-   * against.
+   * Optional. Jobs published within a range specified by this filter are
+   * searched against.
    * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -738,9 +701,8 @@ public interface JobQueryOrBuilder * * *
-   * Optional.
-   * Jobs published within a range specified by this filter are searched
-   * against.
+   * Optional. Jobs published within a range specified by this filter are
+   * searched against.
    * 
* * .google.cloud.talent.v4beta1.TimestampRange publish_time_range = 12; @@ -751,8 +713,8 @@ public interface JobQueryOrBuilder * * *
-   * Optional.
-   * This filter specifies a list of job names to be excluded during search.
+   * Optional. This filter specifies a list of job names to be excluded during
+   * search.
    * At most 400 excluded job names are allowed.
    * 
* @@ -763,8 +725,8 @@ public interface JobQueryOrBuilder * * *
-   * Optional.
-   * This filter specifies a list of job names to be excluded during search.
+   * Optional. This filter specifies a list of job names to be excluded during
+   * search.
    * At most 400 excluded job names are allowed.
    * 
* @@ -775,8 +737,8 @@ public interface JobQueryOrBuilder * * *
-   * Optional.
-   * This filter specifies a list of job names to be excluded during search.
+   * Optional. This filter specifies a list of job names to be excluded during
+   * search.
    * At most 400 excluded job names are allowed.
    * 
* @@ -787,8 +749,8 @@ public interface JobQueryOrBuilder * * *
-   * Optional.
-   * This filter specifies a list of job names to be excluded during search.
+   * Optional. This filter specifies a list of job names to be excluded during
+   * search.
    * At most 400 excluded job names are allowed.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobServiceProto.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobServiceProto.java index ca6e865c6f45..86ec6f41763a 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobServiceProto.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobServiceProto.java @@ -79,147 +79,149 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { java.lang.String[] descriptorData = { "\n-google/cloud/talent/v4beta1/job_servic" + "e.proto\022\033google.cloud.talent.v4beta1\032\034go" - + "ogle/api/annotations.proto\032\'google/cloud" - + "/talent/v4beta1/batch.proto\032(google/clou" - + "d/talent/v4beta1/common.proto\032)google/cl" - + "oud/talent/v4beta1/filters.proto\032+google" - + "/cloud/talent/v4beta1/histogram.proto\032%g" - + "oogle/cloud/talent/v4beta1/job.proto\032#go" - + "ogle/longrunning/operations.proto\032\036googl" - + "e/protobuf/duration.proto\032\033google/protob" - + "uf/empty.proto\032 google/protobuf/field_ma" - + "sk.proto\"Q\n\020CreateJobRequest\022\016\n\006parent\030\001" - + " \001(\t\022-\n\003job\030\002 \001(\0132 .google.cloud.talent." - + "v4beta1.Job\"\035\n\rGetJobRequest\022\014\n\004name\030\001 \001" - + "(\t\"r\n\020UpdateJobRequest\022-\n\003job\030\001 \001(\0132 .go" - + "ogle.cloud.talent.v4beta1.Job\022/\n\013update_" - + "mask\030\002 \001(\0132\032.google.protobuf.FieldMask\" " - + "\n\020DeleteJobRequest\022\014\n\004name\030\001 \001(\t\"8\n\026Batc" - + "hDeleteJobsRequest\022\016\n\006parent\030\001 \001(\t\022\016\n\006fi" - + "lter\030\002 \001(\t\"\220\001\n\017ListJobsRequest\022\016\n\006parent" - + "\030\001 \001(\t\022\016\n\006filter\030\002 \001(\t\022\022\n\npage_token\030\003 \001" - + "(\t\022\021\n\tpage_size\030\004 \001(\005\0226\n\010job_view\030\005 \001(\0162" - + "$.google.cloud.talent.v4beta1.JobView\"\234\001" - + "\n\020ListJobsResponse\022.\n\004jobs\030\001 \003(\0132 .googl" - + "e.cloud.talent.v4beta1.Job\022\027\n\017next_page_" - + "token\030\002 \001(\t\022?\n\010metadata\030\003 \001(\0132-.google.c" - + "loud.talent.v4beta1.ResponseMetadata\"\240\t\n" - + "\021SearchJobsRequest\022\016\n\006parent\030\001 \001(\t\022N\n\013se" - + "arch_mode\030\002 \001(\01629.google.cloud.talent.v4" - + "beta1.SearchJobsRequest.SearchMode\022F\n\020re" - + "quest_metadata\030\003 \001(\0132,.google.cloud.tale" - + "nt.v4beta1.RequestMetadata\0228\n\tjob_query\030" - + "\004 \001(\0132%.google.cloud.talent.v4beta1.JobQ" - + "uery\022\031\n\021enable_broadening\030\005 \001(\010\022#\n\033requi" - + "re_precise_result_size\030\006 \001(\010\022F\n\021histogra" - + "m_queries\030\007 \003(\0132+.google.cloud.talent.v4" - + "beta1.HistogramQuery\0226\n\010job_view\030\010 \001(\0162$" - + ".google.cloud.talent.v4beta1.JobView\022\016\n\006" - + "offset\030\t \001(\005\022\021\n\tpage_size\030\n \001(\005\022\022\n\npage_" - + "token\030\013 \001(\t\022\020\n\010order_by\030\014 \001(\t\022b\n\025diversi" - + "fication_level\030\r \001(\0162C.google.cloud.tale" - + "nt.v4beta1.SearchJobsRequest.Diversifica" - + "tionLevel\022]\n\023custom_ranking_info\030\016 \001(\0132@" - + ".google.cloud.talent.v4beta1.SearchJobsR" - + "equest.CustomRankingInfo\022\035\n\025disable_keyw" - + "ord_match\030\020 \001(\010\032\220\002\n\021CustomRankingInfo\022j\n" - + "\020importance_level\030\001 \001(\0162P.google.cloud.t" - + "alent.v4beta1.SearchJobsRequest.CustomRa" - + "nkingInfo.ImportanceLevel\022\032\n\022ranking_exp" - + "ression\030\002 \001(\t\"s\n\017ImportanceLevel\022 \n\034IMPO" - + "RTANCE_LEVEL_UNSPECIFIED\020\000\022\010\n\004NONE\020\001\022\007\n\003" - + "LOW\020\002\022\010\n\004MILD\020\003\022\n\n\006MEDIUM\020\004\022\010\n\004HIGH\020\005\022\013\n" - + "\007EXTREME\020\006\"R\n\nSearchMode\022\033\n\027SEARCH_MODE_" - + "UNSPECIFIED\020\000\022\016\n\nJOB_SEARCH\020\001\022\027\n\023FEATURE" - + "D_JOB_SEARCH\020\002\"W\n\024DiversificationLevel\022%" - + "\n!DIVERSIFICATION_LEVEL_UNSPECIFIED\020\000\022\014\n" - + "\010DISABLED\020\001\022\n\n\006SIMPLE\020\002\"\327\006\n\022SearchJobsRe" - + "sponse\022R\n\rmatching_jobs\030\001 \003(\0132;.google.c" - + "loud.talent.v4beta1.SearchJobsResponse.M" - + "atchingJob\022R\n\027histogram_query_results\030\002 " - + "\003(\01321.google.cloud.talent.v4beta1.Histog" - + "ramQueryResult\022\027\n\017next_page_token\030\003 \001(\t\022" - + "?\n\020location_filters\030\004 \003(\0132%.google.cloud" - + ".talent.v4beta1.Location\022\034\n\024estimated_to" - + "tal_size\030\005 \001(\005\022\022\n\ntotal_size\030\006 \001(\005\022?\n\010me" - + "tadata\030\007 \001(\0132-.google.cloud.talent.v4bet" - + "a1.ResponseMetadata\022\"\n\032broadened_query_j" - + "obs_count\030\010 \001(\005\022I\n\020spell_correction\030\t \001(" - + "\0132/.google.cloud.talent.v4beta1.Spelling" - + "Correction\032\334\001\n\013MatchingJob\022-\n\003job\030\001 \001(\0132" - + " .google.cloud.talent.v4beta1.Job\022\023\n\013job" - + "_summary\030\002 \001(\t\022\031\n\021job_title_snippet\030\003 \001(" - + "\t\022\033\n\023search_text_snippet\030\004 \001(\t\022Q\n\014commut" - + "e_info\030\005 \001(\0132;.google.cloud.talent.v4bet" - + "a1.SearchJobsResponse.CommuteInfo\032~\n\013Com" - + "muteInfo\022;\n\014job_location\030\001 \001(\0132%.google." - + "cloud.talent.v4beta1.Location\0222\n\017travel_" - + "duration\030\002 \001(\0132\031.google.protobuf.Duratio" - + "n\"X\n\026BatchCreateJobsRequest\022\016\n\006parent\030\001 " - + "\001(\t\022.\n\004jobs\030\002 \003(\0132 .google.cloud.talent." - + "v4beta1.Job\"\211\001\n\026BatchUpdateJobsRequest\022\016" - + "\n\006parent\030\001 \001(\t\022.\n\004jobs\030\002 \003(\0132 .google.cl" - + "oud.talent.v4beta1.Job\022/\n\013update_mask\030\003 " - + "\001(\0132\032.google.protobuf.FieldMask*v\n\007JobVi" - + "ew\022\030\n\024JOB_VIEW_UNSPECIFIED\020\000\022\024\n\020JOB_VIEW" - + "_ID_ONLY\020\001\022\024\n\020JOB_VIEW_MINIMAL\020\002\022\022\n\016JOB_" - + "VIEW_SMALL\020\003\022\021\n\rJOB_VIEW_FULL\020\0042\242\020\n\nJobS" - + "ervice\022\274\001\n\tCreateJob\022-.google.cloud.tale" - + "nt.v4beta1.CreateJobRequest\032 .google.clo" - + "ud.talent.v4beta1.Job\"^\202\323\344\223\002X\"+/v4beta1/" - + "{parent=projects/*/tenants/*}/jobs:\001*Z&\"" - + "!/v4beta1/{parent=projects/*}/jobs:\001*\022\260\001" - + "\n\006GetJob\022*.google.cloud.talent.v4beta1.G" - + "etJobRequest\032 .google.cloud.talent.v4bet" - + "a1.Job\"X\202\323\344\223\002R\022+/v4beta1/{name=projects/" - + "*/tenants/*/jobs/*}Z#\022!/v4beta1/{name=pr" - + "ojects/*/jobs/*}\022\304\001\n\tUpdateJob\022-.google." - + "cloud.talent.v4beta1.UpdateJobRequest\032 ." - + "google.cloud.talent.v4beta1.Job\"f\202\323\344\223\002`2" - + "//v4beta1/{job.name=projects/*/tenants/*" - + "/jobs/*}:\001*Z*2%/v4beta1/{job.name=projec" - + "ts/*/jobs/*}:\001*\022\254\001\n\tDeleteJob\022-.google.c" - + "loud.talent.v4beta1.DeleteJobRequest\032\026.g" - + "oogle.protobuf.Empty\"X\202\323\344\223\002R*+/v4beta1/{" - + "name=projects/*/tenants/*/jobs/*}Z#*!/v4" - + "beta1/{name=projects/*/jobs/*}\022\301\001\n\010ListJ" - + "obs\022,.google.cloud.talent.v4beta1.ListJo" - + "bsRequest\032-.google.cloud.talent.v4beta1." - + "ListJobsResponse\"X\202\323\344\223\002R\022+/v4beta1/{pare" - + "nt=projects/*/tenants/*}/jobsZ#\022!/v4beta" - + "1/{parent=projects/*}/jobs\022\323\001\n\017BatchDele" - + "teJobs\0223.google.cloud.talent.v4beta1.Bat" - + "chDeleteJobsRequest\032\026.google.protobuf.Em" - + "pty\"s\202\323\344\223\002m\"7/v4beta1/{parent=projects/*" - + "/tenants/*}/jobs:batchDelete:\001*Z/\"-/v4be" - + "ta1/{parent=projects/*}/jobs:batchDelete" - + "\022\333\001\n\nSearchJobs\022..google.cloud.talent.v4" - + "beta1.SearchJobsRequest\032/.google.cloud.t" - + "alent.v4beta1.SearchJobsResponse\"l\202\323\344\223\002f" - + "\"2/v4beta1/{parent=projects/*/tenants/*}" - + "/jobs:search:\001*Z-\"(/v4beta1/{parent=proj" - + "ects/*}/jobs:search:\001*\022\363\001\n\022SearchJobsFor" - + "Alert\022..google.cloud.talent.v4beta1.Sear" - + "chJobsRequest\032/.google.cloud.talent.v4be" - + "ta1.SearchJobsResponse\"|\202\323\344\223\002v\":/v4beta1" - + "/{parent=projects/*/tenants/*}/jobs:sear" - + "chForAlert:\001*Z5\"0/v4beta1/{parent=projec" - + "ts/*}/jobs:searchForAlert:\001*\022\335\001\n\017BatchCr" - + "eateJobs\0223.google.cloud.talent.v4beta1.B" - + "atchCreateJobsRequest\032\035.google.longrunni" - + "ng.Operation\"v\202\323\344\223\002p\"7/v4beta1/{parent=p" - + "rojects/*/tenants/*}/jobs:batchCreate:\001*" - + "Z2\"-/v4beta1/{parent=projects/*}/jobs:ba" - + "tchCreate:\001*\022\335\001\n\017BatchUpdateJobs\0223.googl" - + "e.cloud.talent.v4beta1.BatchUpdateJobsRe" + + "ogle/api/annotations.proto\032\027google/api/c" + + "lient.proto\032(google/cloud/talent/v4beta1" + + "/common.proto\032)google/cloud/talent/v4bet" + + "a1/filters.proto\032+google/cloud/talent/v4" + + "beta1/histogram.proto\032%google/cloud/tale" + + "nt/v4beta1/job.proto\032#google/longrunning" + + "/operations.proto\032\036google/protobuf/durat" + + "ion.proto\032\033google/protobuf/empty.proto\032 " + + "google/protobuf/field_mask.proto\"Q\n\020Crea" + + "teJobRequest\022\016\n\006parent\030\001 \001(\t\022-\n\003job\030\002 \001(" + + "\0132 .google.cloud.talent.v4beta1.Job\"\035\n\rG" + + "etJobRequest\022\014\n\004name\030\001 \001(\t\"r\n\020UpdateJobR" + + "equest\022-\n\003job\030\001 \001(\0132 .google.cloud.talen" + + "t.v4beta1.Job\022/\n\013update_mask\030\002 \001(\0132\032.goo" + + "gle.protobuf.FieldMask\" \n\020DeleteJobReque" + + "st\022\014\n\004name\030\001 \001(\t\"8\n\026BatchDeleteJobsReque" + + "st\022\016\n\006parent\030\001 \001(\t\022\016\n\006filter\030\002 \001(\t\"\220\001\n\017L" + + "istJobsRequest\022\016\n\006parent\030\001 \001(\t\022\016\n\006filter" + + "\030\002 \001(\t\022\022\n\npage_token\030\003 \001(\t\022\021\n\tpage_size\030" + + "\004 \001(\005\0226\n\010job_view\030\005 \001(\0162$.google.cloud.t" + + "alent.v4beta1.JobView\"\234\001\n\020ListJobsRespon" + + "se\022.\n\004jobs\030\001 \003(\0132 .google.cloud.talent.v" + + "4beta1.Job\022\027\n\017next_page_token\030\002 \001(\t\022?\n\010m" + + "etadata\030\003 \001(\0132-.google.cloud.talent.v4be" + + "ta1.ResponseMetadata\"\240\t\n\021SearchJobsReque" + + "st\022\016\n\006parent\030\001 \001(\t\022N\n\013search_mode\030\002 \001(\0162" + + "9.google.cloud.talent.v4beta1.SearchJobs" + + "Request.SearchMode\022F\n\020request_metadata\030\003" + + " \001(\0132,.google.cloud.talent.v4beta1.Reque" + + "stMetadata\0228\n\tjob_query\030\004 \001(\0132%.google.c" + + "loud.talent.v4beta1.JobQuery\022\031\n\021enable_b" + + "roadening\030\005 \001(\010\022#\n\033require_precise_resul" + + "t_size\030\006 \001(\010\022F\n\021histogram_queries\030\007 \003(\0132" + + "+.google.cloud.talent.v4beta1.HistogramQ" + + "uery\0226\n\010job_view\030\010 \001(\0162$.google.cloud.ta" + + "lent.v4beta1.JobView\022\016\n\006offset\030\t \001(\005\022\021\n\t" + + "page_size\030\n \001(\005\022\022\n\npage_token\030\013 \001(\t\022\020\n\010o" + + "rder_by\030\014 \001(\t\022b\n\025diversification_level\030\r" + + " \001(\0162C.google.cloud.talent.v4beta1.Searc" + + "hJobsRequest.DiversificationLevel\022]\n\023cus" + + "tom_ranking_info\030\016 \001(\0132@.google.cloud.ta" + + "lent.v4beta1.SearchJobsRequest.CustomRan" + + "kingInfo\022\035\n\025disable_keyword_match\030\020 \001(\010\032" + + "\220\002\n\021CustomRankingInfo\022j\n\020importance_leve" + + "l\030\001 \001(\0162P.google.cloud.talent.v4beta1.Se" + + "archJobsRequest.CustomRankingInfo.Import" + + "anceLevel\022\032\n\022ranking_expression\030\002 \001(\t\"s\n" + + "\017ImportanceLevel\022 \n\034IMPORTANCE_LEVEL_UNS" + + "PECIFIED\020\000\022\010\n\004NONE\020\001\022\007\n\003LOW\020\002\022\010\n\004MILD\020\003\022" + + "\n\n\006MEDIUM\020\004\022\010\n\004HIGH\020\005\022\013\n\007EXTREME\020\006\"R\n\nSe" + + "archMode\022\033\n\027SEARCH_MODE_UNSPECIFIED\020\000\022\016\n" + + "\nJOB_SEARCH\020\001\022\027\n\023FEATURED_JOB_SEARCH\020\002\"W" + + "\n\024DiversificationLevel\022%\n!DIVERSIFICATIO" + + "N_LEVEL_UNSPECIFIED\020\000\022\014\n\010DISABLED\020\001\022\n\n\006S" + + "IMPLE\020\002\"\327\006\n\022SearchJobsResponse\022R\n\rmatchi" + + "ng_jobs\030\001 \003(\0132;.google.cloud.talent.v4be" + + "ta1.SearchJobsResponse.MatchingJob\022R\n\027hi" + + "stogram_query_results\030\002 \003(\01321.google.clo" + + "ud.talent.v4beta1.HistogramQueryResult\022\027" + + "\n\017next_page_token\030\003 \001(\t\022?\n\020location_filt" + + "ers\030\004 \003(\0132%.google.cloud.talent.v4beta1." + + "Location\022\034\n\024estimated_total_size\030\005 \001(\005\022\022" + + "\n\ntotal_size\030\006 \001(\005\022?\n\010metadata\030\007 \001(\0132-.g" + + "oogle.cloud.talent.v4beta1.ResponseMetad" + + "ata\022\"\n\032broadened_query_jobs_count\030\010 \001(\005\022" + + "I\n\020spell_correction\030\t \001(\0132/.google.cloud" + + ".talent.v4beta1.SpellingCorrection\032\334\001\n\013M" + + "atchingJob\022-\n\003job\030\001 \001(\0132 .google.cloud.t" + + "alent.v4beta1.Job\022\023\n\013job_summary\030\002 \001(\t\022\031" + + "\n\021job_title_snippet\030\003 \001(\t\022\033\n\023search_text" + + "_snippet\030\004 \001(\t\022Q\n\014commute_info\030\005 \001(\0132;.g" + + "oogle.cloud.talent.v4beta1.SearchJobsRes" + + "ponse.CommuteInfo\032~\n\013CommuteInfo\022;\n\014job_" + + "location\030\001 \001(\0132%.google.cloud.talent.v4b" + + "eta1.Location\0222\n\017travel_duration\030\002 \001(\0132\031" + + ".google.protobuf.Duration\"X\n\026BatchCreate" + + "JobsRequest\022\016\n\006parent\030\001 \001(\t\022.\n\004jobs\030\002 \003(" + + "\0132 .google.cloud.talent.v4beta1.Job\"\211\001\n\026" + + "BatchUpdateJobsRequest\022\016\n\006parent\030\001 \001(\t\022." + + "\n\004jobs\030\002 \003(\0132 .google.cloud.talent.v4bet" + + "a1.Job\022/\n\013update_mask\030\003 \001(\0132\032.google.pro" + + "tobuf.FieldMask*v\n\007JobView\022\030\n\024JOB_VIEW_U" + + "NSPECIFIED\020\000\022\024\n\020JOB_VIEW_ID_ONLY\020\001\022\024\n\020JO" + + "B_VIEW_MINIMAL\020\002\022\022\n\016JOB_VIEW_SMALL\020\003\022\021\n\r" + + "JOB_VIEW_FULL\020\0042\220\021\n\nJobService\022\274\001\n\tCreat" + + "eJob\022-.google.cloud.talent.v4beta1.Creat" + + "eJobRequest\032 .google.cloud.talent.v4beta" + + "1.Job\"^\202\323\344\223\002X\"+/v4beta1/{parent=projects" + + "/*/tenants/*}/jobs:\001*Z&\"!/v4beta1/{paren" + + "t=projects/*}/jobs:\001*\022\260\001\n\006GetJob\022*.googl" + + "e.cloud.talent.v4beta1.GetJobRequest\032 .g" + + "oogle.cloud.talent.v4beta1.Job\"X\202\323\344\223\002R\022+" + + "/v4beta1/{name=projects/*/tenants/*/jobs" + + "/*}Z#\022!/v4beta1/{name=projects/*/jobs/*}" + + "\022\304\001\n\tUpdateJob\022-.google.cloud.talent.v4b" + + "eta1.UpdateJobRequest\032 .google.cloud.tal" + + "ent.v4beta1.Job\"f\202\323\344\223\002`2//v4beta1/{job.n" + + "ame=projects/*/tenants/*/jobs/*}:\001*Z*2%/" + + "v4beta1/{job.name=projects/*/jobs/*}:\001*\022" + + "\254\001\n\tDeleteJob\022-.google.cloud.talent.v4be" + + "ta1.DeleteJobRequest\032\026.google.protobuf.E" + + "mpty\"X\202\323\344\223\002R*+/v4beta1/{name=projects/*/" + + "tenants/*/jobs/*}Z#*!/v4beta1/{name=proj" + + "ects/*/jobs/*}\022\301\001\n\010ListJobs\022,.google.clo" + + "ud.talent.v4beta1.ListJobsRequest\032-.goog" + + "le.cloud.talent.v4beta1.ListJobsResponse" + + "\"X\202\323\344\223\002R\022+/v4beta1/{parent=projects/*/te" + + "nants/*}/jobsZ#\022!/v4beta1/{parent=projec" + + "ts/*}/jobs\022\323\001\n\017BatchDeleteJobs\0223.google." + + "cloud.talent.v4beta1.BatchDeleteJobsRequ" + + "est\032\026.google.protobuf.Empty\"s\202\323\344\223\002m\"7/v4" + + "beta1/{parent=projects/*/tenants/*}/jobs" + + ":batchDelete:\001*Z/\"-/v4beta1/{parent=proj" + + "ects/*}/jobs:batchDelete\022\333\001\n\nSearchJobs\022" + + "..google.cloud.talent.v4beta1.SearchJobs" + + "Request\032/.google.cloud.talent.v4beta1.Se" + + "archJobsResponse\"l\202\323\344\223\002f\"2/v4beta1/{pare" + + "nt=projects/*/tenants/*}/jobs:search:\001*Z" + + "-\"(/v4beta1/{parent=projects/*}/jobs:sea" + + "rch:\001*\022\363\001\n\022SearchJobsForAlert\022..google.c" + + "loud.talent.v4beta1.SearchJobsRequest\032/." + + "google.cloud.talent.v4beta1.SearchJobsRe" + + "sponse\"|\202\323\344\223\002v\":/v4beta1/{parent=project" + + "s/*/tenants/*}/jobs:searchForAlert:\001*Z5\"" + + "0/v4beta1/{parent=projects/*}/jobs:searc" + + "hForAlert:\001*\022\335\001\n\017BatchCreateJobs\0223.googl" + + "e.cloud.talent.v4beta1.BatchCreateJobsRe" + "quest\032\035.google.longrunning.Operation\"v\202\323" + "\344\223\002p\"7/v4beta1/{parent=projects/*/tenant" - + "s/*}/jobs:batchUpdate:\001*Z2\"-/v4beta1/{pa" - + "rent=projects/*}/jobs:batchUpdate:\001*B}\n\037" - + "com.google.cloud.talent.v4beta1B\017JobServ" - + "iceProtoP\001ZAgoogle.golang.org/genproto/g" - + "oogleapis/cloud/talent/v4beta1;talent\242\002\003" - + "CTSb\006proto3" + + "s/*}/jobs:batchCreate:\001*Z2\"-/v4beta1/{pa" + + "rent=projects/*}/jobs:batchCreate:\001*\022\335\001\n" + + "\017BatchUpdateJobs\0223.google.cloud.talent.v" + + "4beta1.BatchUpdateJobsRequest\032\035.google.l" + + "ongrunning.Operation\"v\202\323\344\223\002p\"7/v4beta1/{" + + "parent=projects/*/tenants/*}/jobs:batchU" + + "pdate:\001*Z2\"-/v4beta1/{parent=projects/*}" + + "/jobs:batchUpdate:\001*\032l\312A\023jobs.googleapis" + + ".com\322AShttps://www.googleapis.com/auth/c" + + "loud-platform,https://www.googleapis.com" + + "/auth/jobsB}\n\037com.google.cloud.talent.v4" + + "beta1B\017JobServiceProtoP\001ZAgoogle.golang." + + "org/genproto/googleapis/cloud/talent/v4b" + + "eta1;talent\242\002\003CTSb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -233,7 +235,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.api.AnnotationsProto.getDescriptor(), - com.google.cloud.talent.v4beta1.BatchProto.getDescriptor(), + com.google.api.ClientProto.getDescriptor(), com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(), com.google.cloud.talent.v4beta1.FiltersProto.getDescriptor(), com.google.cloud.talent.v4beta1.HistogramProto.getDescriptor(), @@ -386,11 +388,13 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); + registry.add(com.google.api.ClientProto.defaultHost); registry.add(com.google.api.AnnotationsProto.http); + registry.add(com.google.api.ClientProto.oauthScopes); com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( descriptor, registry); com.google.api.AnnotationsProto.getDescriptor(); - com.google.cloud.talent.v4beta1.BatchProto.getDescriptor(); + com.google.api.ClientProto.getDescriptor(); com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(); com.google.cloud.talent.v4beta1.FiltersProto.getDescriptor(); com.google.cloud.talent.v4beta1.HistogramProto.getDescriptor(); diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobTitleFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobTitleFilter.java index 511d26e050e9..d1084ee7c3ac 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobTitleFilter.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobTitleFilter.java @@ -103,8 +103,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The job title, for example, "Software engineer", or "Product manager".
+   * Required. The job title, for example, "Software engineer", or "Product
+   * manager".
    * 
* * string job_title = 1; @@ -124,8 +124,8 @@ public java.lang.String getJobTitle() { * * *
-   * Required.
-   * The job title, for example, "Software engineer", or "Product manager".
+   * Required. The job title, for example, "Software engineer", or "Product
+   * manager".
    * 
* * string job_title = 1; @@ -148,9 +148,8 @@ public com.google.protobuf.ByteString getJobTitleBytes() { * * *
-   * Optional.
-   * Whether to apply negation to the filter so profiles matching the filter
-   * are excluded.
+   * Optional. Whether to apply negation to the filter so profiles matching the
+   * filter are excluded.
    * 
* * bool negated = 2; @@ -496,8 +495,8 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The job title, for example, "Software engineer", or "Product manager".
+     * Required. The job title, for example, "Software engineer", or "Product
+     * manager".
      * 
* * string job_title = 1; @@ -517,8 +516,8 @@ public java.lang.String getJobTitle() { * * *
-     * Required.
-     * The job title, for example, "Software engineer", or "Product manager".
+     * Required. The job title, for example, "Software engineer", or "Product
+     * manager".
      * 
* * string job_title = 1; @@ -538,8 +537,8 @@ public com.google.protobuf.ByteString getJobTitleBytes() { * * *
-     * Required.
-     * The job title, for example, "Software engineer", or "Product manager".
+     * Required. The job title, for example, "Software engineer", or "Product
+     * manager".
      * 
* * string job_title = 1; @@ -557,8 +556,8 @@ public Builder setJobTitle(java.lang.String value) { * * *
-     * Required.
-     * The job title, for example, "Software engineer", or "Product manager".
+     * Required. The job title, for example, "Software engineer", or "Product
+     * manager".
      * 
* * string job_title = 1; @@ -573,8 +572,8 @@ public Builder clearJobTitle() { * * *
-     * Required.
-     * The job title, for example, "Software engineer", or "Product manager".
+     * Required. The job title, for example, "Software engineer", or "Product
+     * manager".
      * 
* * string job_title = 1; @@ -595,9 +594,8 @@ public Builder setJobTitleBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * are excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter are excluded.
      * 
* * bool negated = 2; @@ -609,9 +607,8 @@ public boolean getNegated() { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * are excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter are excluded.
      * 
* * bool negated = 2; @@ -626,9 +623,8 @@ public Builder setNegated(boolean value) { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * are excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter are excluded.
      * 
* * bool negated = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobTitleFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobTitleFilterOrBuilder.java index a3623d46cc5c..24f7d328b015 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobTitleFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobTitleFilterOrBuilder.java @@ -12,8 +12,8 @@ public interface JobTitleFilterOrBuilder * * *
-   * Required.
-   * The job title, for example, "Software engineer", or "Product manager".
+   * Required. The job title, for example, "Software engineer", or "Product
+   * manager".
    * 
* * string job_title = 1; @@ -23,8 +23,8 @@ public interface JobTitleFilterOrBuilder * * *
-   * Required.
-   * The job title, for example, "Software engineer", or "Product manager".
+   * Required. The job title, for example, "Software engineer", or "Product
+   * manager".
    * 
* * string job_title = 1; @@ -35,9 +35,8 @@ public interface JobTitleFilterOrBuilder * * *
-   * Optional.
-   * Whether to apply negation to the filter so profiles matching the filter
-   * are excluded.
+   * Optional. Whether to apply negation to the filter so profiles matching the
+   * filter are excluded.
    * 
* * bool negated = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListApplicationsRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListApplicationsRequest.java index cfe7ee122f11..8cf371114f1a 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListApplicationsRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListApplicationsRequest.java @@ -110,8 +110,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * Resource name of the profile under which the application is created.
+   * Required. Resource name of the profile under which the application is
+   * created.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
    * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -134,8 +134,8 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * Resource name of the profile under which the application is created.
+   * Required. Resource name of the profile under which the application is
+   * created.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
    * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -161,8 +161,7 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -182,8 +181,7 @@ public java.lang.String getPageToken() { * * *
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -206,8 +204,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() { * * *
-   * Optional.
-   * The maximum number of applications to be returned, at most 100.
+   * Optional. The maximum number of applications to be returned, at most 100.
    * Default is 100 if a non-positive number is provided.
    * 
* @@ -572,8 +569,8 @@ public Builder mergeFrom( * * *
-     * Required.
-     * Resource name of the profile under which the application is created.
+     * Required. Resource name of the profile under which the application is
+     * created.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
      * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -596,8 +593,8 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile under which the application is created.
+     * Required. Resource name of the profile under which the application is
+     * created.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
      * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -620,8 +617,8 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile under which the application is created.
+     * Required. Resource name of the profile under which the application is
+     * created.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
      * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -642,8 +639,8 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile under which the application is created.
+     * Required. Resource name of the profile under which the application is
+     * created.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
      * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -661,8 +658,8 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of the profile under which the application is created.
+     * Required. Resource name of the profile under which the application is
+     * created.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
      * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -686,8 +683,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -707,8 +703,7 @@ public java.lang.String getPageToken() { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -728,8 +723,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -747,8 +741,7 @@ public Builder setPageToken(java.lang.String value) { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -763,8 +756,7 @@ public Builder clearPageToken() { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -785,8 +777,7 @@ public Builder setPageTokenBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The maximum number of applications to be returned, at most 100.
+     * Optional. The maximum number of applications to be returned, at most 100.
      * Default is 100 if a non-positive number is provided.
      * 
* @@ -799,8 +790,7 @@ public int getPageSize() { * * *
-     * Optional.
-     * The maximum number of applications to be returned, at most 100.
+     * Optional. The maximum number of applications to be returned, at most 100.
      * Default is 100 if a non-positive number is provided.
      * 
* @@ -816,8 +806,7 @@ public Builder setPageSize(int value) { * * *
-     * Optional.
-     * The maximum number of applications to be returned, at most 100.
+     * Optional. The maximum number of applications to be returned, at most 100.
      * Default is 100 if a non-positive number is provided.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListApplicationsRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListApplicationsRequestOrBuilder.java index 04ec1a44a703..48f2fdd06f31 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListApplicationsRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListApplicationsRequestOrBuilder.java @@ -12,8 +12,8 @@ public interface ListApplicationsRequestOrBuilder * * *
-   * Required.
-   * Resource name of the profile under which the application is created.
+   * Required. Resource name of the profile under which the application is
+   * created.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
    * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -26,8 +26,8 @@ public interface ListApplicationsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Resource name of the profile under which the application is created.
+   * Required. Resource name of the profile under which the application is
+   * created.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for
    * example, "projects/test-project/tenants/test-tenant/profiles/test-profile".
@@ -41,8 +41,7 @@ public interface ListApplicationsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -52,8 +51,7 @@ public interface ListApplicationsRequestOrBuilder * * *
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -64,8 +62,7 @@ public interface ListApplicationsRequestOrBuilder * * *
-   * Optional.
-   * The maximum number of applications to be returned, at most 100.
+   * Optional. The maximum number of applications to be returned, at most 100.
    * Default is 100 if a non-positive number is provided.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListCompaniesRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListCompaniesRequest.java index 1fb1997b4431..fd538a15c806 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListCompaniesRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListCompaniesRequest.java @@ -115,8 +115,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * Resource name of the tenant under which the company is created.
+   * Required. Resource name of the tenant under which the company is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -140,8 +139,7 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * Resource name of the tenant under which the company is created.
+   * Required. Resource name of the tenant under which the company is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -168,8 +166,7 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -189,8 +186,7 @@ public java.lang.String getPageToken() { * * *
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -213,8 +209,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() { * * *
-   * Optional.
-   * The maximum number of companies to be returned, at most 100.
+   * Optional. The maximum number of companies to be returned, at most 100.
    * Default is 100 if a non-positive number is provided.
    * 
* @@ -230,11 +225,11 @@ public int getPageSize() { * * *
-   * Optional.
-   * Set to true if the companies requested must have open jobs.
+   * Optional. Set to true if the companies requested must have open jobs.
    * Defaults to false.
-   * If true, at most [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of companies are fetched, among which
-   * only those with open jobs are returned.
+   * If true, at most
+   * [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of
+   * companies are fetched, among which only those with open jobs are returned.
    * 
* * bool require_open_jobs = 4; @@ -612,8 +607,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * Resource name of the tenant under which the company is created.
+     * Required. Resource name of the tenant under which the company is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -637,8 +631,7 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the company is created.
+     * Required. Resource name of the tenant under which the company is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -662,8 +655,7 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the company is created.
+     * Required. Resource name of the tenant under which the company is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -685,8 +677,7 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the company is created.
+     * Required. Resource name of the tenant under which the company is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -705,8 +696,7 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * Resource name of the tenant under which the company is created.
+     * Required. Resource name of the tenant under which the company is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -731,8 +721,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -752,8 +741,7 @@ public java.lang.String getPageToken() { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -773,8 +761,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -792,8 +779,7 @@ public Builder setPageToken(java.lang.String value) { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -808,8 +794,7 @@ public Builder clearPageToken() { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -830,8 +815,7 @@ public Builder setPageTokenBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The maximum number of companies to be returned, at most 100.
+     * Optional. The maximum number of companies to be returned, at most 100.
      * Default is 100 if a non-positive number is provided.
      * 
* @@ -844,8 +828,7 @@ public int getPageSize() { * * *
-     * Optional.
-     * The maximum number of companies to be returned, at most 100.
+     * Optional. The maximum number of companies to be returned, at most 100.
      * Default is 100 if a non-positive number is provided.
      * 
* @@ -861,8 +844,7 @@ public Builder setPageSize(int value) { * * *
-     * Optional.
-     * The maximum number of companies to be returned, at most 100.
+     * Optional. The maximum number of companies to be returned, at most 100.
      * Default is 100 if a non-positive number is provided.
      * 
* @@ -880,11 +862,11 @@ public Builder clearPageSize() { * * *
-     * Optional.
-     * Set to true if the companies requested must have open jobs.
+     * Optional. Set to true if the companies requested must have open jobs.
      * Defaults to false.
-     * If true, at most [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of companies are fetched, among which
-     * only those with open jobs are returned.
+     * If true, at most
+     * [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of
+     * companies are fetched, among which only those with open jobs are returned.
      * 
* * bool require_open_jobs = 4; @@ -896,11 +878,11 @@ public boolean getRequireOpenJobs() { * * *
-     * Optional.
-     * Set to true if the companies requested must have open jobs.
+     * Optional. Set to true if the companies requested must have open jobs.
      * Defaults to false.
-     * If true, at most [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of companies are fetched, among which
-     * only those with open jobs are returned.
+     * If true, at most
+     * [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of
+     * companies are fetched, among which only those with open jobs are returned.
      * 
* * bool require_open_jobs = 4; @@ -915,11 +897,11 @@ public Builder setRequireOpenJobs(boolean value) { * * *
-     * Optional.
-     * Set to true if the companies requested must have open jobs.
+     * Optional. Set to true if the companies requested must have open jobs.
      * Defaults to false.
-     * If true, at most [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of companies are fetched, among which
-     * only those with open jobs are returned.
+     * If true, at most
+     * [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of
+     * companies are fetched, among which only those with open jobs are returned.
      * 
* * bool require_open_jobs = 4; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListCompaniesRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListCompaniesRequestOrBuilder.java index 1fe61d45f4f1..1de9092bcd88 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListCompaniesRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListCompaniesRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface ListCompaniesRequestOrBuilder * * *
-   * Required.
-   * Resource name of the tenant under which the company is created.
+   * Required. Resource name of the tenant under which the company is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -27,8 +26,7 @@ public interface ListCompaniesRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * Resource name of the tenant under which the company is created.
+   * Required. Resource name of the tenant under which the company is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -43,8 +41,7 @@ public interface ListCompaniesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -54,8 +51,7 @@ public interface ListCompaniesRequestOrBuilder * * *
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -66,8 +62,7 @@ public interface ListCompaniesRequestOrBuilder * * *
-   * Optional.
-   * The maximum number of companies to be returned, at most 100.
+   * Optional. The maximum number of companies to be returned, at most 100.
    * Default is 100 if a non-positive number is provided.
    * 
* @@ -79,11 +74,11 @@ public interface ListCompaniesRequestOrBuilder * * *
-   * Optional.
-   * Set to true if the companies requested must have open jobs.
+   * Optional. Set to true if the companies requested must have open jobs.
    * Defaults to false.
-   * If true, at most [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of companies are fetched, among which
-   * only those with open jobs are returned.
+   * If true, at most
+   * [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of
+   * companies are fetched, among which only those with open jobs are returned.
    * 
* * bool require_open_jobs = 4; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListJobsRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListJobsRequest.java index c5a2ef7384a2..6b070335a650 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListJobsRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListJobsRequest.java @@ -127,8 +127,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -152,8 +151,7 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -180,8 +178,7 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Required.
-   * The filter string specifies the jobs to be enumerated.
+   * Required. The filter string specifies the jobs to be enumerated.
    * Supported operator: =, AND
    * The fields eligible for filtering are:
    * * `companyName` (Required)
@@ -213,8 +210,7 @@ public java.lang.String getFilter() {
    *
    *
    * 
-   * Required.
-   * The filter string specifies the jobs to be enumerated.
+   * Required. The filter string specifies the jobs to be enumerated.
    * Supported operator: =, AND
    * The fields eligible for filtering are:
    * * `companyName` (Required)
@@ -249,8 +245,7 @@ public com.google.protobuf.ByteString getFilterBytes() {
    *
    *
    * 
-   * Optional.
-   * The starting point of a query result.
+   * Optional. The starting point of a query result.
    * 
* * string page_token = 3; @@ -270,8 +265,7 @@ public java.lang.String getPageToken() { * * *
-   * Optional.
-   * The starting point of a query result.
+   * Optional. The starting point of a query result.
    * 
* * string page_token = 3; @@ -294,8 +288,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() { * * *
-   * Optional.
-   * The maximum number of jobs to be returned per page of results.
+   * Optional. The maximum number of jobs to be returned per page of results.
    * If [job_view][google.cloud.talent.v4beta1.ListJobsRequest.job_view] is set
    * to
    * [JobView.JOB_VIEW_ID_ONLY][google.cloud.talent.v4beta1.JobView.JOB_VIEW_ID_ONLY],
@@ -316,8 +309,7 @@ public int getPageSize() {
    *
    *
    * 
-   * Optional.
-   * The desired job attributes returned for jobs in the
+   * Optional. The desired job attributes returned for jobs in the
    * search response. Defaults to
    * [JobView.JOB_VIEW_FULL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_FULL]
    * if no value is specified.
@@ -332,8 +324,7 @@ public int getJobViewValue() {
    *
    *
    * 
-   * Optional.
-   * The desired job attributes returned for jobs in the
+   * Optional. The desired job attributes returned for jobs in the
    * search response. Defaults to
    * [JobView.JOB_VIEW_FULL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_FULL]
    * if no value is specified.
@@ -733,8 +724,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -758,8 +748,7 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -783,8 +772,7 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -806,8 +794,7 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -826,8 +813,7 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the job is created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -852,8 +838,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * The filter string specifies the jobs to be enumerated.
+     * Required. The filter string specifies the jobs to be enumerated.
      * Supported operator: =, AND
      * The fields eligible for filtering are:
      * * `companyName` (Required)
@@ -885,8 +870,7 @@ public java.lang.String getFilter() {
      *
      *
      * 
-     * Required.
-     * The filter string specifies the jobs to be enumerated.
+     * Required. The filter string specifies the jobs to be enumerated.
      * Supported operator: =, AND
      * The fields eligible for filtering are:
      * * `companyName` (Required)
@@ -918,8 +902,7 @@ public com.google.protobuf.ByteString getFilterBytes() {
      *
      *
      * 
-     * Required.
-     * The filter string specifies the jobs to be enumerated.
+     * Required. The filter string specifies the jobs to be enumerated.
      * Supported operator: =, AND
      * The fields eligible for filtering are:
      * * `companyName` (Required)
@@ -949,8 +932,7 @@ public Builder setFilter(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The filter string specifies the jobs to be enumerated.
+     * Required. The filter string specifies the jobs to be enumerated.
      * Supported operator: =, AND
      * The fields eligible for filtering are:
      * * `companyName` (Required)
@@ -977,8 +959,7 @@ public Builder clearFilter() {
      *
      *
      * 
-     * Required.
-     * The filter string specifies the jobs to be enumerated.
+     * Required. The filter string specifies the jobs to be enumerated.
      * Supported operator: =, AND
      * The fields eligible for filtering are:
      * * `companyName` (Required)
@@ -1011,8 +992,7 @@ public Builder setFilterBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * The starting point of a query result.
+     * Optional. The starting point of a query result.
      * 
* * string page_token = 3; @@ -1032,8 +1012,7 @@ public java.lang.String getPageToken() { * * *
-     * Optional.
-     * The starting point of a query result.
+     * Optional. The starting point of a query result.
      * 
* * string page_token = 3; @@ -1053,8 +1032,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() { * * *
-     * Optional.
-     * The starting point of a query result.
+     * Optional. The starting point of a query result.
      * 
* * string page_token = 3; @@ -1072,8 +1050,7 @@ public Builder setPageToken(java.lang.String value) { * * *
-     * Optional.
-     * The starting point of a query result.
+     * Optional. The starting point of a query result.
      * 
* * string page_token = 3; @@ -1088,8 +1065,7 @@ public Builder clearPageToken() { * * *
-     * Optional.
-     * The starting point of a query result.
+     * Optional. The starting point of a query result.
      * 
* * string page_token = 3; @@ -1110,8 +1086,7 @@ public Builder setPageTokenBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The maximum number of jobs to be returned per page of results.
+     * Optional. The maximum number of jobs to be returned per page of results.
      * If [job_view][google.cloud.talent.v4beta1.ListJobsRequest.job_view] is set
      * to
      * [JobView.JOB_VIEW_ID_ONLY][google.cloud.talent.v4beta1.JobView.JOB_VIEW_ID_ONLY],
@@ -1129,8 +1104,7 @@ public int getPageSize() {
      *
      *
      * 
-     * Optional.
-     * The maximum number of jobs to be returned per page of results.
+     * Optional. The maximum number of jobs to be returned per page of results.
      * If [job_view][google.cloud.talent.v4beta1.ListJobsRequest.job_view] is set
      * to
      * [JobView.JOB_VIEW_ID_ONLY][google.cloud.talent.v4beta1.JobView.JOB_VIEW_ID_ONLY],
@@ -1151,8 +1125,7 @@ public Builder setPageSize(int value) {
      *
      *
      * 
-     * Optional.
-     * The maximum number of jobs to be returned per page of results.
+     * Optional. The maximum number of jobs to be returned per page of results.
      * If [job_view][google.cloud.talent.v4beta1.ListJobsRequest.job_view] is set
      * to
      * [JobView.JOB_VIEW_ID_ONLY][google.cloud.talent.v4beta1.JobView.JOB_VIEW_ID_ONLY],
@@ -1175,8 +1148,7 @@ public Builder clearPageSize() {
      *
      *
      * 
-     * Optional.
-     * The desired job attributes returned for jobs in the
+     * Optional. The desired job attributes returned for jobs in the
      * search response. Defaults to
      * [JobView.JOB_VIEW_FULL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_FULL]
      * if no value is specified.
@@ -1191,8 +1163,7 @@ public int getJobViewValue() {
      *
      *
      * 
-     * Optional.
-     * The desired job attributes returned for jobs in the
+     * Optional. The desired job attributes returned for jobs in the
      * search response. Defaults to
      * [JobView.JOB_VIEW_FULL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_FULL]
      * if no value is specified.
@@ -1209,8 +1180,7 @@ public Builder setJobViewValue(int value) {
      *
      *
      * 
-     * Optional.
-     * The desired job attributes returned for jobs in the
+     * Optional. The desired job attributes returned for jobs in the
      * search response. Defaults to
      * [JobView.JOB_VIEW_FULL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_FULL]
      * if no value is specified.
@@ -1228,8 +1198,7 @@ public com.google.cloud.talent.v4beta1.JobView getJobView() {
      *
      *
      * 
-     * Optional.
-     * The desired job attributes returned for jobs in the
+     * Optional. The desired job attributes returned for jobs in the
      * search response. Defaults to
      * [JobView.JOB_VIEW_FULL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_FULL]
      * if no value is specified.
@@ -1250,8 +1219,7 @@ public Builder setJobView(com.google.cloud.talent.v4beta1.JobView value) {
      *
      *
      * 
-     * Optional.
-     * The desired job attributes returned for jobs in the
+     * Optional. The desired job attributes returned for jobs in the
      * search response. Defaults to
      * [JobView.JOB_VIEW_FULL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_FULL]
      * if no value is specified.
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListJobsRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListJobsRequestOrBuilder.java
index 1e5a4f53cfb3..594c657bb9b9 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListJobsRequestOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListJobsRequestOrBuilder.java
@@ -12,8 +12,7 @@ public interface ListJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -27,8 +26,7 @@ public interface ListJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the job is created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -43,8 +41,7 @@ public interface ListJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The filter string specifies the jobs to be enumerated.
+   * Required. The filter string specifies the jobs to be enumerated.
    * Supported operator: =, AND
    * The fields eligible for filtering are:
    * * `companyName` (Required)
@@ -66,8 +63,7 @@ public interface ListJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The filter string specifies the jobs to be enumerated.
+   * Required. The filter string specifies the jobs to be enumerated.
    * Supported operator: =, AND
    * The fields eligible for filtering are:
    * * `companyName` (Required)
@@ -90,8 +86,7 @@ public interface ListJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The starting point of a query result.
+   * Optional. The starting point of a query result.
    * 
* * string page_token = 3; @@ -101,8 +96,7 @@ public interface ListJobsRequestOrBuilder * * *
-   * Optional.
-   * The starting point of a query result.
+   * Optional. The starting point of a query result.
    * 
* * string page_token = 3; @@ -113,8 +107,7 @@ public interface ListJobsRequestOrBuilder * * *
-   * Optional.
-   * The maximum number of jobs to be returned per page of results.
+   * Optional. The maximum number of jobs to be returned per page of results.
    * If [job_view][google.cloud.talent.v4beta1.ListJobsRequest.job_view] is set
    * to
    * [JobView.JOB_VIEW_ID_ONLY][google.cloud.talent.v4beta1.JobView.JOB_VIEW_ID_ONLY],
@@ -131,8 +124,7 @@ public interface ListJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The desired job attributes returned for jobs in the
+   * Optional. The desired job attributes returned for jobs in the
    * search response. Defaults to
    * [JobView.JOB_VIEW_FULL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_FULL]
    * if no value is specified.
@@ -145,8 +137,7 @@ public interface ListJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The desired job attributes returned for jobs in the
+   * Optional. The desired job attributes returned for jobs in the
    * search response. Defaults to
    * [JobView.JOB_VIEW_FULL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_FULL]
    * if no value is specified.
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListProfilesRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListProfilesRequest.java
index 64502aaad162..b8b0631895b4 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListProfilesRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListProfilesRequest.java
@@ -125,8 +125,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the profile is
+   * created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -148,8 +148,8 @@ public java.lang.String getParent() { * * *
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the profile is
+   * created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -174,8 +174,8 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-   * Optional.
-   * The token that specifies the current offset (that is, starting result).
+   * Optional. The token that specifies the current offset (that is, starting
+   * result).
    * Please set the value to
    * [ListProfilesResponse.next_page_token][google.cloud.talent.v4beta1.ListProfilesResponse.next_page_token]
    * to continue the list.
@@ -198,8 +198,8 @@ public java.lang.String getPageToken() {
    *
    *
    * 
-   * Optional.
-   * The token that specifies the current offset (that is, starting result).
+   * Optional. The token that specifies the current offset (that is, starting
+   * result).
    * Please set the value to
    * [ListProfilesResponse.next_page_token][google.cloud.talent.v4beta1.ListProfilesResponse.next_page_token]
    * to continue the list.
@@ -225,8 +225,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
    *
    *
    * 
-   * Optional.
-   * The maximum number of profiles to be returned, at most 100.
+   * Optional. The maximum number of profiles to be returned, at most 100.
    * Default is 100 unless a positive number smaller than 100 is specified.
    * 
* @@ -242,9 +241,8 @@ public int getPageSize() { * * *
-   * Optional.
-   * A field mask to specify the profile fields to be listed in response.
-   * All fields are listed if it is unset.
+   * Optional. A field mask to specify the profile fields to be listed in
+   * response. All fields are listed if it is unset.
    * Valid values are:
    * * name
    * 
@@ -258,9 +256,8 @@ public boolean hasReadMask() { * * *
-   * Optional.
-   * A field mask to specify the profile fields to be listed in response.
-   * All fields are listed if it is unset.
+   * Optional. A field mask to specify the profile fields to be listed in
+   * response. All fields are listed if it is unset.
    * Valid values are:
    * * name
    * 
@@ -274,9 +271,8 @@ public com.google.protobuf.FieldMask getReadMask() { * * *
-   * Optional.
-   * A field mask to specify the profile fields to be listed in response.
-   * All fields are listed if it is unset.
+   * Optional. A field mask to specify the profile fields to be listed in
+   * response. All fields are listed if it is unset.
    * Valid values are:
    * * name
    * 
@@ -669,8 +665,8 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the profile is
+     * created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -692,8 +688,8 @@ public java.lang.String getParent() { * * *
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the profile is
+     * created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -715,8 +711,8 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the profile is
+     * created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -736,8 +732,8 @@ public Builder setParent(java.lang.String value) { * * *
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the profile is
+     * created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -754,8 +750,8 @@ public Builder clearParent() { * * *
-     * Required.
-     * The resource name of the tenant under which the job is created.
+     * Required. The resource name of the tenant under which the profile is
+     * created.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -778,8 +774,8 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The token that specifies the current offset (that is, starting result).
+     * Optional. The token that specifies the current offset (that is, starting
+     * result).
      * Please set the value to
      * [ListProfilesResponse.next_page_token][google.cloud.talent.v4beta1.ListProfilesResponse.next_page_token]
      * to continue the list.
@@ -802,8 +798,8 @@ public java.lang.String getPageToken() {
      *
      *
      * 
-     * Optional.
-     * The token that specifies the current offset (that is, starting result).
+     * Optional. The token that specifies the current offset (that is, starting
+     * result).
      * Please set the value to
      * [ListProfilesResponse.next_page_token][google.cloud.talent.v4beta1.ListProfilesResponse.next_page_token]
      * to continue the list.
@@ -826,8 +822,8 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
      *
      *
      * 
-     * Optional.
-     * The token that specifies the current offset (that is, starting result).
+     * Optional. The token that specifies the current offset (that is, starting
+     * result).
      * Please set the value to
      * [ListProfilesResponse.next_page_token][google.cloud.talent.v4beta1.ListProfilesResponse.next_page_token]
      * to continue the list.
@@ -848,8 +844,8 @@ public Builder setPageToken(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The token that specifies the current offset (that is, starting result).
+     * Optional. The token that specifies the current offset (that is, starting
+     * result).
      * Please set the value to
      * [ListProfilesResponse.next_page_token][google.cloud.talent.v4beta1.ListProfilesResponse.next_page_token]
      * to continue the list.
@@ -867,8 +863,8 @@ public Builder clearPageToken() {
      *
      *
      * 
-     * Optional.
-     * The token that specifies the current offset (that is, starting result).
+     * Optional. The token that specifies the current offset (that is, starting
+     * result).
      * Please set the value to
      * [ListProfilesResponse.next_page_token][google.cloud.talent.v4beta1.ListProfilesResponse.next_page_token]
      * to continue the list.
@@ -892,8 +888,7 @@ public Builder setPageTokenBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * The maximum number of profiles to be returned, at most 100.
+     * Optional. The maximum number of profiles to be returned, at most 100.
      * Default is 100 unless a positive number smaller than 100 is specified.
      * 
* @@ -906,8 +901,7 @@ public int getPageSize() { * * *
-     * Optional.
-     * The maximum number of profiles to be returned, at most 100.
+     * Optional. The maximum number of profiles to be returned, at most 100.
      * Default is 100 unless a positive number smaller than 100 is specified.
      * 
* @@ -923,8 +917,7 @@ public Builder setPageSize(int value) { * * *
-     * Optional.
-     * The maximum number of profiles to be returned, at most 100.
+     * Optional. The maximum number of profiles to be returned, at most 100.
      * Default is 100 unless a positive number smaller than 100 is specified.
      * 
* @@ -947,9 +940,8 @@ public Builder clearPageSize() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to be listed in response.
-     * All fields are listed if it is unset.
+     * Optional. A field mask to specify the profile fields to be listed in
+     * response. All fields are listed if it is unset.
      * Valid values are:
      * * name
      * 
@@ -963,9 +955,8 @@ public boolean hasReadMask() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to be listed in response.
-     * All fields are listed if it is unset.
+     * Optional. A field mask to specify the profile fields to be listed in
+     * response. All fields are listed if it is unset.
      * Valid values are:
      * * name
      * 
@@ -983,9 +974,8 @@ public com.google.protobuf.FieldMask getReadMask() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to be listed in response.
-     * All fields are listed if it is unset.
+     * Optional. A field mask to specify the profile fields to be listed in
+     * response. All fields are listed if it is unset.
      * Valid values are:
      * * name
      * 
@@ -1009,9 +999,8 @@ public Builder setReadMask(com.google.protobuf.FieldMask value) { * * *
-     * Optional.
-     * A field mask to specify the profile fields to be listed in response.
-     * All fields are listed if it is unset.
+     * Optional. A field mask to specify the profile fields to be listed in
+     * response. All fields are listed if it is unset.
      * Valid values are:
      * * name
      * 
@@ -1032,9 +1021,8 @@ public Builder setReadMask(com.google.protobuf.FieldMask.Builder builderForValue * * *
-     * Optional.
-     * A field mask to specify the profile fields to be listed in response.
-     * All fields are listed if it is unset.
+     * Optional. A field mask to specify the profile fields to be listed in
+     * response. All fields are listed if it is unset.
      * Valid values are:
      * * name
      * 
@@ -1060,9 +1048,8 @@ public Builder mergeReadMask(com.google.protobuf.FieldMask value) { * * *
-     * Optional.
-     * A field mask to specify the profile fields to be listed in response.
-     * All fields are listed if it is unset.
+     * Optional. A field mask to specify the profile fields to be listed in
+     * response. All fields are listed if it is unset.
      * Valid values are:
      * * name
      * 
@@ -1084,9 +1071,8 @@ public Builder clearReadMask() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to be listed in response.
-     * All fields are listed if it is unset.
+     * Optional. A field mask to specify the profile fields to be listed in
+     * response. All fields are listed if it is unset.
      * Valid values are:
      * * name
      * 
@@ -1102,9 +1088,8 @@ public com.google.protobuf.FieldMask.Builder getReadMaskBuilder() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to be listed in response.
-     * All fields are listed if it is unset.
+     * Optional. A field mask to specify the profile fields to be listed in
+     * response. All fields are listed if it is unset.
      * Valid values are:
      * * name
      * 
@@ -1122,9 +1107,8 @@ public com.google.protobuf.FieldMaskOrBuilder getReadMaskOrBuilder() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to be listed in response.
-     * All fields are listed if it is unset.
+     * Optional. A field mask to specify the profile fields to be listed in
+     * response. All fields are listed if it is unset.
      * Valid values are:
      * * name
      * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListProfilesRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListProfilesRequestOrBuilder.java index 547a776f8ae4..597e7286901f 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListProfilesRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListProfilesRequestOrBuilder.java @@ -12,8 +12,8 @@ public interface ListProfilesRequestOrBuilder * * *
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the profile is
+   * created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -25,8 +25,8 @@ public interface ListProfilesRequestOrBuilder * * *
-   * Required.
-   * The resource name of the tenant under which the job is created.
+   * Required. The resource name of the tenant under which the profile is
+   * created.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -39,8 +39,8 @@ public interface ListProfilesRequestOrBuilder * * *
-   * Optional.
-   * The token that specifies the current offset (that is, starting result).
+   * Optional. The token that specifies the current offset (that is, starting
+   * result).
    * Please set the value to
    * [ListProfilesResponse.next_page_token][google.cloud.talent.v4beta1.ListProfilesResponse.next_page_token]
    * to continue the list.
@@ -53,8 +53,8 @@ public interface ListProfilesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The token that specifies the current offset (that is, starting result).
+   * Optional. The token that specifies the current offset (that is, starting
+   * result).
    * Please set the value to
    * [ListProfilesResponse.next_page_token][google.cloud.talent.v4beta1.ListProfilesResponse.next_page_token]
    * to continue the list.
@@ -68,8 +68,7 @@ public interface ListProfilesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The maximum number of profiles to be returned, at most 100.
+   * Optional. The maximum number of profiles to be returned, at most 100.
    * Default is 100 unless a positive number smaller than 100 is specified.
    * 
* @@ -81,9 +80,8 @@ public interface ListProfilesRequestOrBuilder * * *
-   * Optional.
-   * A field mask to specify the profile fields to be listed in response.
-   * All fields are listed if it is unset.
+   * Optional. A field mask to specify the profile fields to be listed in
+   * response. All fields are listed if it is unset.
    * Valid values are:
    * * name
    * 
@@ -95,9 +93,8 @@ public interface ListProfilesRequestOrBuilder * * *
-   * Optional.
-   * A field mask to specify the profile fields to be listed in response.
-   * All fields are listed if it is unset.
+   * Optional. A field mask to specify the profile fields to be listed in
+   * response. All fields are listed if it is unset.
    * Valid values are:
    * * name
    * 
@@ -109,9 +106,8 @@ public interface ListProfilesRequestOrBuilder * * *
-   * Optional.
-   * A field mask to specify the profile fields to be listed in response.
-   * All fields are listed if it is unset.
+   * Optional. A field mask to specify the profile fields to be listed in
+   * response. All fields are listed if it is unset.
    * Valid values are:
    * * name
    * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListTenantsRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListTenantsRequest.java index 23507162c32a..e670c043b3a3 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListTenantsRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListTenantsRequest.java @@ -110,8 +110,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * Resource name of the project under which the tenant is created.
+   * Required. Resource name of the project under which the tenant is created.
    * The format is "projects/{project_id}", for example,
    * "projects/api-test-project".
    * 
@@ -133,8 +132,7 @@ public java.lang.String getParent() { * * *
-   * Required.
-   * Resource name of the project under which the tenant is created.
+   * Required. Resource name of the project under which the tenant is created.
    * The format is "projects/{project_id}", for example,
    * "projects/api-test-project".
    * 
@@ -159,8 +157,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -180,8 +177,7 @@ public java.lang.String getPageToken() { * * *
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -204,8 +200,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() { * * *
-   * Optional.
-   * The maximum number of tenants to be returned, at most 100.
+   * Optional. The maximum number of tenants to be returned, at most 100.
    * Default is 100 if a non-positive number is provided.
    * 
* @@ -569,8 +564,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * Resource name of the project under which the tenant is created.
+     * Required. Resource name of the project under which the tenant is created.
      * The format is "projects/{project_id}", for example,
      * "projects/api-test-project".
      * 
@@ -592,8 +586,7 @@ public java.lang.String getParent() { * * *
-     * Required.
-     * Resource name of the project under which the tenant is created.
+     * Required. Resource name of the project under which the tenant is created.
      * The format is "projects/{project_id}", for example,
      * "projects/api-test-project".
      * 
@@ -615,8 +608,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-     * Required.
-     * Resource name of the project under which the tenant is created.
+     * Required. Resource name of the project under which the tenant is created.
      * The format is "projects/{project_id}", for example,
      * "projects/api-test-project".
      * 
@@ -636,8 +628,7 @@ public Builder setParent(java.lang.String value) { * * *
-     * Required.
-     * Resource name of the project under which the tenant is created.
+     * Required. Resource name of the project under which the tenant is created.
      * The format is "projects/{project_id}", for example,
      * "projects/api-test-project".
      * 
@@ -654,8 +645,7 @@ public Builder clearParent() { * * *
-     * Required.
-     * Resource name of the project under which the tenant is created.
+     * Required. Resource name of the project under which the tenant is created.
      * The format is "projects/{project_id}", for example,
      * "projects/api-test-project".
      * 
@@ -678,8 +668,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -699,8 +688,7 @@ public java.lang.String getPageToken() { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -720,8 +708,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -739,8 +726,7 @@ public Builder setPageToken(java.lang.String value) { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -755,8 +741,7 @@ public Builder clearPageToken() { * * *
-     * Optional.
-     * The starting indicator from which to return results.
+     * Optional. The starting indicator from which to return results.
      * 
* * string page_token = 2; @@ -777,8 +762,7 @@ public Builder setPageTokenBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The maximum number of tenants to be returned, at most 100.
+     * Optional. The maximum number of tenants to be returned, at most 100.
      * Default is 100 if a non-positive number is provided.
      * 
* @@ -791,8 +775,7 @@ public int getPageSize() { * * *
-     * Optional.
-     * The maximum number of tenants to be returned, at most 100.
+     * Optional. The maximum number of tenants to be returned, at most 100.
      * Default is 100 if a non-positive number is provided.
      * 
* @@ -808,8 +791,7 @@ public Builder setPageSize(int value) { * * *
-     * Optional.
-     * The maximum number of tenants to be returned, at most 100.
+     * Optional. The maximum number of tenants to be returned, at most 100.
      * Default is 100 if a non-positive number is provided.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListTenantsRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListTenantsRequestOrBuilder.java index e07e301e58bf..5c61ba164240 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListTenantsRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ListTenantsRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface ListTenantsRequestOrBuilder * * *
-   * Required.
-   * Resource name of the project under which the tenant is created.
+   * Required. Resource name of the project under which the tenant is created.
    * The format is "projects/{project_id}", for example,
    * "projects/api-test-project".
    * 
@@ -25,8 +24,7 @@ public interface ListTenantsRequestOrBuilder * * *
-   * Required.
-   * Resource name of the project under which the tenant is created.
+   * Required. Resource name of the project under which the tenant is created.
    * The format is "projects/{project_id}", for example,
    * "projects/api-test-project".
    * 
@@ -39,8 +37,7 @@ public interface ListTenantsRequestOrBuilder * * *
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -50,8 +47,7 @@ public interface ListTenantsRequestOrBuilder * * *
-   * Optional.
-   * The starting indicator from which to return results.
+   * Optional. The starting indicator from which to return results.
    * 
* * string page_token = 2; @@ -62,8 +58,7 @@ public interface ListTenantsRequestOrBuilder * * *
-   * Optional.
-   * The maximum number of tenants to be returned, at most 100.
+   * Optional. The maximum number of tenants to be returned, at most 100.
    * Default is 100 if a non-positive number is provided.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/LocationFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/LocationFilter.java index 66a5439786a0..da13b65c45fd 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/LocationFilter.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/LocationFilter.java @@ -286,8 +286,7 @@ private TelecommutePreference(int value) { * * *
-   * Optional.
-   * The address name, such as "Mountain View" or "Bay Area".
+   * Optional. The address name, such as "Mountain View" or "Bay Area".
    * 
* * string address = 1; @@ -307,8 +306,7 @@ public java.lang.String getAddress() { * * *
-   * Optional.
-   * The address name, such as "Mountain View" or "Bay Area".
+   * Optional. The address name, such as "Mountain View" or "Bay Area".
    * 
* * string address = 1; @@ -331,15 +329,15 @@ public com.google.protobuf.ByteString getAddressBytes() { * * *
-   * Optional.
-   * CLDR region code of the country/region of the address. This is used
-   * to address ambiguity of the user-input location, for example, "Liverpool"
-   * against "Liverpool, NY, US" or "Liverpool, UK".
+   * Optional. CLDR region code of the country/region of the address. This is
+   * used to address ambiguity of the user-input location, for example,
+   * "Liverpool" against "Liverpool, NY, US" or "Liverpool, UK".
    * Set this field if all the jobs to search against are from a same region,
    * or jobs are world-wide, but the job seeker is from a specific region.
    * See http://cldr.unicode.org/ and
    * http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html
    * for details. Example: "CH" for Switzerland.
+   * Note that this filter is not applicable for Profile Search related queries.
    * 
* * string region_code = 2; @@ -359,15 +357,15 @@ public java.lang.String getRegionCode() { * * *
-   * Optional.
-   * CLDR region code of the country/region of the address. This is used
-   * to address ambiguity of the user-input location, for example, "Liverpool"
-   * against "Liverpool, NY, US" or "Liverpool, UK".
+   * Optional. CLDR region code of the country/region of the address. This is
+   * used to address ambiguity of the user-input location, for example,
+   * "Liverpool" against "Liverpool, NY, US" or "Liverpool, UK".
    * Set this field if all the jobs to search against are from a same region,
    * or jobs are world-wide, but the job seeker is from a specific region.
    * See http://cldr.unicode.org/ and
    * http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html
    * for details. Example: "CH" for Switzerland.
+   * Note that this filter is not applicable for Profile Search related queries.
    * 
* * string region_code = 2; @@ -390,8 +388,7 @@ public com.google.protobuf.ByteString getRegionCodeBytes() { * * *
-   * Optional.
-   * The latitude and longitude of the geographic center from which to
+   * Optional. The latitude and longitude of the geographic center from which to
    * search. This field's ignored if `address` is provided.
    * 
* @@ -404,8 +401,7 @@ public boolean hasLatLng() { * * *
-   * Optional.
-   * The latitude and longitude of the geographic center from which to
+   * Optional. The latitude and longitude of the geographic center from which to
    * search. This field's ignored if `address` is provided.
    * 
* @@ -418,8 +414,7 @@ public com.google.type.LatLng getLatLng() { * * *
-   * Optional.
-   * The latitude and longitude of the geographic center from which to
+   * Optional. The latitude and longitude of the geographic center from which to
    * search. This field's ignored if `address` is provided.
    * 
* @@ -435,10 +430,9 @@ public com.google.type.LatLngOrBuilder getLatLngOrBuilder() { * * *
-   * Optional.
-   * The distance_in_miles is applied when the location being searched for is
-   * identified as a city or smaller. When the location being searched for is a
-   * state or larger, this field is ignored.
+   * Optional. The distance_in_miles is applied when the location being searched
+   * for is identified as a city or smaller. When the location being searched
+   * for is a state or larger, this field is ignored.
    * 
* * double distance_in_miles = 4; @@ -453,9 +447,8 @@ public double getDistanceInMiles() { * * *
-   * Optional.
-   * Allows the client to return jobs without a
-   * set location, specifically, telecommuting jobs (telecomuting is considered
+   * Optional. Allows the client to return jobs without a
+   * set location, specifically, telecommuting jobs (telecommuting is considered
    * by the service as a special location.
    * [Job.posting_region][google.cloud.talent.v4beta1.Job.posting_region]
    * indicates if a job permits telecommuting. If this field is set to
@@ -485,9 +478,8 @@ public int getTelecommutePreferenceValue() {
    *
    *
    * 
-   * Optional.
-   * Allows the client to return jobs without a
-   * set location, specifically, telecommuting jobs (telecomuting is considered
+   * Optional. Allows the client to return jobs without a
+   * set location, specifically, telecommuting jobs (telecommuting is considered
    * by the service as a special location.
    * [Job.posting_region][google.cloud.talent.v4beta1.Job.posting_region]
    * indicates if a job permits telecommuting. If this field is set to
@@ -527,9 +519,8 @@ public int getTelecommutePreferenceValue() {
    *
    *
    * 
-   * Optional.
-   * Whether to apply negation to the filter so profiles matching the filter
-   * are excluded.
+   * Optional. Whether to apply negation to the filter so profiles matching the
+   * filter are excluded.
    * Currently only supported in profile search.
    * 
* @@ -960,8 +951,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * The address name, such as "Mountain View" or "Bay Area".
+     * Optional. The address name, such as "Mountain View" or "Bay Area".
      * 
* * string address = 1; @@ -981,8 +971,7 @@ public java.lang.String getAddress() { * * *
-     * Optional.
-     * The address name, such as "Mountain View" or "Bay Area".
+     * Optional. The address name, such as "Mountain View" or "Bay Area".
      * 
* * string address = 1; @@ -1002,8 +991,7 @@ public com.google.protobuf.ByteString getAddressBytes() { * * *
-     * Optional.
-     * The address name, such as "Mountain View" or "Bay Area".
+     * Optional. The address name, such as "Mountain View" or "Bay Area".
      * 
* * string address = 1; @@ -1021,8 +1009,7 @@ public Builder setAddress(java.lang.String value) { * * *
-     * Optional.
-     * The address name, such as "Mountain View" or "Bay Area".
+     * Optional. The address name, such as "Mountain View" or "Bay Area".
      * 
* * string address = 1; @@ -1037,8 +1024,7 @@ public Builder clearAddress() { * * *
-     * Optional.
-     * The address name, such as "Mountain View" or "Bay Area".
+     * Optional. The address name, such as "Mountain View" or "Bay Area".
      * 
* * string address = 1; @@ -1059,15 +1045,15 @@ public Builder setAddressBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * CLDR region code of the country/region of the address. This is used
-     * to address ambiguity of the user-input location, for example, "Liverpool"
-     * against "Liverpool, NY, US" or "Liverpool, UK".
+     * Optional. CLDR region code of the country/region of the address. This is
+     * used to address ambiguity of the user-input location, for example,
+     * "Liverpool" against "Liverpool, NY, US" or "Liverpool, UK".
      * Set this field if all the jobs to search against are from a same region,
      * or jobs are world-wide, but the job seeker is from a specific region.
      * See http://cldr.unicode.org/ and
      * http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html
      * for details. Example: "CH" for Switzerland.
+     * Note that this filter is not applicable for Profile Search related queries.
      * 
* * string region_code = 2; @@ -1087,15 +1073,15 @@ public java.lang.String getRegionCode() { * * *
-     * Optional.
-     * CLDR region code of the country/region of the address. This is used
-     * to address ambiguity of the user-input location, for example, "Liverpool"
-     * against "Liverpool, NY, US" or "Liverpool, UK".
+     * Optional. CLDR region code of the country/region of the address. This is
+     * used to address ambiguity of the user-input location, for example,
+     * "Liverpool" against "Liverpool, NY, US" or "Liverpool, UK".
      * Set this field if all the jobs to search against are from a same region,
      * or jobs are world-wide, but the job seeker is from a specific region.
      * See http://cldr.unicode.org/ and
      * http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html
      * for details. Example: "CH" for Switzerland.
+     * Note that this filter is not applicable for Profile Search related queries.
      * 
* * string region_code = 2; @@ -1115,15 +1101,15 @@ public com.google.protobuf.ByteString getRegionCodeBytes() { * * *
-     * Optional.
-     * CLDR region code of the country/region of the address. This is used
-     * to address ambiguity of the user-input location, for example, "Liverpool"
-     * against "Liverpool, NY, US" or "Liverpool, UK".
+     * Optional. CLDR region code of the country/region of the address. This is
+     * used to address ambiguity of the user-input location, for example,
+     * "Liverpool" against "Liverpool, NY, US" or "Liverpool, UK".
      * Set this field if all the jobs to search against are from a same region,
      * or jobs are world-wide, but the job seeker is from a specific region.
      * See http://cldr.unicode.org/ and
      * http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html
      * for details. Example: "CH" for Switzerland.
+     * Note that this filter is not applicable for Profile Search related queries.
      * 
* * string region_code = 2; @@ -1141,15 +1127,15 @@ public Builder setRegionCode(java.lang.String value) { * * *
-     * Optional.
-     * CLDR region code of the country/region of the address. This is used
-     * to address ambiguity of the user-input location, for example, "Liverpool"
-     * against "Liverpool, NY, US" or "Liverpool, UK".
+     * Optional. CLDR region code of the country/region of the address. This is
+     * used to address ambiguity of the user-input location, for example,
+     * "Liverpool" against "Liverpool, NY, US" or "Liverpool, UK".
      * Set this field if all the jobs to search against are from a same region,
      * or jobs are world-wide, but the job seeker is from a specific region.
      * See http://cldr.unicode.org/ and
      * http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html
      * for details. Example: "CH" for Switzerland.
+     * Note that this filter is not applicable for Profile Search related queries.
      * 
* * string region_code = 2; @@ -1164,15 +1150,15 @@ public Builder clearRegionCode() { * * *
-     * Optional.
-     * CLDR region code of the country/region of the address. This is used
-     * to address ambiguity of the user-input location, for example, "Liverpool"
-     * against "Liverpool, NY, US" or "Liverpool, UK".
+     * Optional. CLDR region code of the country/region of the address. This is
+     * used to address ambiguity of the user-input location, for example,
+     * "Liverpool" against "Liverpool, NY, US" or "Liverpool, UK".
      * Set this field if all the jobs to search against are from a same region,
      * or jobs are world-wide, but the job seeker is from a specific region.
      * See http://cldr.unicode.org/ and
      * http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html
      * for details. Example: "CH" for Switzerland.
+     * Note that this filter is not applicable for Profile Search related queries.
      * 
* * string region_code = 2; @@ -1196,8 +1182,7 @@ public Builder setRegionCodeBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The latitude and longitude of the geographic center from which to
+     * Optional. The latitude and longitude of the geographic center from which to
      * search. This field's ignored if `address` is provided.
      * 
* @@ -1210,8 +1195,7 @@ public boolean hasLatLng() { * * *
-     * Optional.
-     * The latitude and longitude of the geographic center from which to
+     * Optional. The latitude and longitude of the geographic center from which to
      * search. This field's ignored if `address` is provided.
      * 
* @@ -1228,8 +1212,7 @@ public com.google.type.LatLng getLatLng() { * * *
-     * Optional.
-     * The latitude and longitude of the geographic center from which to
+     * Optional. The latitude and longitude of the geographic center from which to
      * search. This field's ignored if `address` is provided.
      * 
* @@ -1252,8 +1235,7 @@ public Builder setLatLng(com.google.type.LatLng value) { * * *
-     * Optional.
-     * The latitude and longitude of the geographic center from which to
+     * Optional. The latitude and longitude of the geographic center from which to
      * search. This field's ignored if `address` is provided.
      * 
* @@ -1273,8 +1255,7 @@ public Builder setLatLng(com.google.type.LatLng.Builder builderForValue) { * * *
-     * Optional.
-     * The latitude and longitude of the geographic center from which to
+     * Optional. The latitude and longitude of the geographic center from which to
      * search. This field's ignored if `address` is provided.
      * 
* @@ -1298,8 +1279,7 @@ public Builder mergeLatLng(com.google.type.LatLng value) { * * *
-     * Optional.
-     * The latitude and longitude of the geographic center from which to
+     * Optional. The latitude and longitude of the geographic center from which to
      * search. This field's ignored if `address` is provided.
      * 
* @@ -1320,8 +1300,7 @@ public Builder clearLatLng() { * * *
-     * Optional.
-     * The latitude and longitude of the geographic center from which to
+     * Optional. The latitude and longitude of the geographic center from which to
      * search. This field's ignored if `address` is provided.
      * 
* @@ -1336,8 +1315,7 @@ public com.google.type.LatLng.Builder getLatLngBuilder() { * * *
-     * Optional.
-     * The latitude and longitude of the geographic center from which to
+     * Optional. The latitude and longitude of the geographic center from which to
      * search. This field's ignored if `address` is provided.
      * 
* @@ -1354,8 +1332,7 @@ public com.google.type.LatLngOrBuilder getLatLngOrBuilder() { * * *
-     * Optional.
-     * The latitude and longitude of the geographic center from which to
+     * Optional. The latitude and longitude of the geographic center from which to
      * search. This field's ignored if `address` is provided.
      * 
* @@ -1380,10 +1357,9 @@ public com.google.type.LatLngOrBuilder getLatLngOrBuilder() { * * *
-     * Optional.
-     * The distance_in_miles is applied when the location being searched for is
-     * identified as a city or smaller. When the location being searched for is a
-     * state or larger, this field is ignored.
+     * Optional. The distance_in_miles is applied when the location being searched
+     * for is identified as a city or smaller. When the location being searched
+     * for is a state or larger, this field is ignored.
      * 
* * double distance_in_miles = 4; @@ -1395,10 +1371,9 @@ public double getDistanceInMiles() { * * *
-     * Optional.
-     * The distance_in_miles is applied when the location being searched for is
-     * identified as a city or smaller. When the location being searched for is a
-     * state or larger, this field is ignored.
+     * Optional. The distance_in_miles is applied when the location being searched
+     * for is identified as a city or smaller. When the location being searched
+     * for is a state or larger, this field is ignored.
      * 
* * double distance_in_miles = 4; @@ -1413,10 +1388,9 @@ public Builder setDistanceInMiles(double value) { * * *
-     * Optional.
-     * The distance_in_miles is applied when the location being searched for is
-     * identified as a city or smaller. When the location being searched for is a
-     * state or larger, this field is ignored.
+     * Optional. The distance_in_miles is applied when the location being searched
+     * for is identified as a city or smaller. When the location being searched
+     * for is a state or larger, this field is ignored.
      * 
* * double distance_in_miles = 4; @@ -1433,9 +1407,8 @@ public Builder clearDistanceInMiles() { * * *
-     * Optional.
-     * Allows the client to return jobs without a
-     * set location, specifically, telecommuting jobs (telecomuting is considered
+     * Optional. Allows the client to return jobs without a
+     * set location, specifically, telecommuting jobs (telecommuting is considered
      * by the service as a special location.
      * [Job.posting_region][google.cloud.talent.v4beta1.Job.posting_region]
      * indicates if a job permits telecommuting. If this field is set to
@@ -1465,9 +1438,8 @@ public int getTelecommutePreferenceValue() {
      *
      *
      * 
-     * Optional.
-     * Allows the client to return jobs without a
-     * set location, specifically, telecommuting jobs (telecomuting is considered
+     * Optional. Allows the client to return jobs without a
+     * set location, specifically, telecommuting jobs (telecommuting is considered
      * by the service as a special location.
      * [Job.posting_region][google.cloud.talent.v4beta1.Job.posting_region]
      * indicates if a job permits telecommuting. If this field is set to
@@ -1499,9 +1471,8 @@ public Builder setTelecommutePreferenceValue(int value) {
      *
      *
      * 
-     * Optional.
-     * Allows the client to return jobs without a
-     * set location, specifically, telecommuting jobs (telecomuting is considered
+     * Optional. Allows the client to return jobs without a
+     * set location, specifically, telecommuting jobs (telecommuting is considered
      * by the service as a special location.
      * [Job.posting_region][google.cloud.talent.v4beta1.Job.posting_region]
      * indicates if a job permits telecommuting. If this field is set to
@@ -1538,9 +1509,8 @@ public Builder setTelecommutePreferenceValue(int value) {
      *
      *
      * 
-     * Optional.
-     * Allows the client to return jobs without a
-     * set location, specifically, telecommuting jobs (telecomuting is considered
+     * Optional. Allows the client to return jobs without a
+     * set location, specifically, telecommuting jobs (telecommuting is considered
      * by the service as a special location.
      * [Job.posting_region][google.cloud.talent.v4beta1.Job.posting_region]
      * indicates if a job permits telecommuting. If this field is set to
@@ -1577,9 +1547,8 @@ public Builder setTelecommutePreference(
      *
      *
      * 
-     * Optional.
-     * Allows the client to return jobs without a
-     * set location, specifically, telecommuting jobs (telecomuting is considered
+     * Optional. Allows the client to return jobs without a
+     * set location, specifically, telecommuting jobs (telecommuting is considered
      * by the service as a special location.
      * [Job.posting_region][google.cloud.talent.v4beta1.Job.posting_region]
      * indicates if a job permits telecommuting. If this field is set to
@@ -1614,9 +1583,8 @@ public Builder clearTelecommutePreference() {
      *
      *
      * 
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * are excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter are excluded.
      * Currently only supported in profile search.
      * 
* @@ -1629,9 +1597,8 @@ public boolean getNegated() { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * are excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter are excluded.
      * Currently only supported in profile search.
      * 
* @@ -1647,9 +1614,8 @@ public Builder setNegated(boolean value) { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * are excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter are excluded.
      * Currently only supported in profile search.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/LocationFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/LocationFilterOrBuilder.java index fe1b46df3010..cbb473565455 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/LocationFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/LocationFilterOrBuilder.java @@ -12,8 +12,7 @@ public interface LocationFilterOrBuilder * * *
-   * Optional.
-   * The address name, such as "Mountain View" or "Bay Area".
+   * Optional. The address name, such as "Mountain View" or "Bay Area".
    * 
* * string address = 1; @@ -23,8 +22,7 @@ public interface LocationFilterOrBuilder * * *
-   * Optional.
-   * The address name, such as "Mountain View" or "Bay Area".
+   * Optional. The address name, such as "Mountain View" or "Bay Area".
    * 
* * string address = 1; @@ -35,15 +33,15 @@ public interface LocationFilterOrBuilder * * *
-   * Optional.
-   * CLDR region code of the country/region of the address. This is used
-   * to address ambiguity of the user-input location, for example, "Liverpool"
-   * against "Liverpool, NY, US" or "Liverpool, UK".
+   * Optional. CLDR region code of the country/region of the address. This is
+   * used to address ambiguity of the user-input location, for example,
+   * "Liverpool" against "Liverpool, NY, US" or "Liverpool, UK".
    * Set this field if all the jobs to search against are from a same region,
    * or jobs are world-wide, but the job seeker is from a specific region.
    * See http://cldr.unicode.org/ and
    * http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html
    * for details. Example: "CH" for Switzerland.
+   * Note that this filter is not applicable for Profile Search related queries.
    * 
* * string region_code = 2; @@ -53,15 +51,15 @@ public interface LocationFilterOrBuilder * * *
-   * Optional.
-   * CLDR region code of the country/region of the address. This is used
-   * to address ambiguity of the user-input location, for example, "Liverpool"
-   * against "Liverpool, NY, US" or "Liverpool, UK".
+   * Optional. CLDR region code of the country/region of the address. This is
+   * used to address ambiguity of the user-input location, for example,
+   * "Liverpool" against "Liverpool, NY, US" or "Liverpool, UK".
    * Set this field if all the jobs to search against are from a same region,
    * or jobs are world-wide, but the job seeker is from a specific region.
    * See http://cldr.unicode.org/ and
    * http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html
    * for details. Example: "CH" for Switzerland.
+   * Note that this filter is not applicable for Profile Search related queries.
    * 
* * string region_code = 2; @@ -72,8 +70,7 @@ public interface LocationFilterOrBuilder * * *
-   * Optional.
-   * The latitude and longitude of the geographic center from which to
+   * Optional. The latitude and longitude of the geographic center from which to
    * search. This field's ignored if `address` is provided.
    * 
* @@ -84,8 +81,7 @@ public interface LocationFilterOrBuilder * * *
-   * Optional.
-   * The latitude and longitude of the geographic center from which to
+   * Optional. The latitude and longitude of the geographic center from which to
    * search. This field's ignored if `address` is provided.
    * 
* @@ -96,8 +92,7 @@ public interface LocationFilterOrBuilder * * *
-   * Optional.
-   * The latitude and longitude of the geographic center from which to
+   * Optional. The latitude and longitude of the geographic center from which to
    * search. This field's ignored if `address` is provided.
    * 
* @@ -109,10 +104,9 @@ public interface LocationFilterOrBuilder * * *
-   * Optional.
-   * The distance_in_miles is applied when the location being searched for is
-   * identified as a city or smaller. When the location being searched for is a
-   * state or larger, this field is ignored.
+   * Optional. The distance_in_miles is applied when the location being searched
+   * for is identified as a city or smaller. When the location being searched
+   * for is a state or larger, this field is ignored.
    * 
* * double distance_in_miles = 4; @@ -123,9 +117,8 @@ public interface LocationFilterOrBuilder * * *
-   * Optional.
-   * Allows the client to return jobs without a
-   * set location, specifically, telecommuting jobs (telecomuting is considered
+   * Optional. Allows the client to return jobs without a
+   * set location, specifically, telecommuting jobs (telecommuting is considered
    * by the service as a special location.
    * [Job.posting_region][google.cloud.talent.v4beta1.Job.posting_region]
    * indicates if a job permits telecommuting. If this field is set to
@@ -153,9 +146,8 @@ public interface LocationFilterOrBuilder
    *
    *
    * 
-   * Optional.
-   * Allows the client to return jobs without a
-   * set location, specifically, telecommuting jobs (telecomuting is considered
+   * Optional. Allows the client to return jobs without a
+   * set location, specifically, telecommuting jobs (telecommuting is considered
    * by the service as a special location.
    * [Job.posting_region][google.cloud.talent.v4beta1.Job.posting_region]
    * indicates if a job permits telecommuting. If this field is set to
@@ -184,9 +176,8 @@ public interface LocationFilterOrBuilder
    *
    *
    * 
-   * Optional.
-   * Whether to apply negation to the filter so profiles matching the filter
-   * are excluded.
+   * Optional. Whether to apply negation to the filter so profiles matching the
+   * filter are excluded.
    * Currently only supported in profile search.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Patent.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Patent.java index 424e7425a810..3039f583b03b 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Patent.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Patent.java @@ -189,8 +189,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * Name of the patent.
+   * Optional. Name of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -211,8 +210,7 @@ public java.lang.String getDisplayName() { * * *
-   * Optional.
-   * Name of the patent.
+   * Optional. Name of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -236,8 +234,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-   * Optional.
-   * A list of inventors' names.
+   * Optional. A list of inventors' names.
    * Number of characters allowed for each is 100.
    * 
* @@ -250,8 +247,7 @@ public com.google.protobuf.ProtocolStringList getInventorsList() { * * *
-   * Optional.
-   * A list of inventors' names.
+   * Optional. A list of inventors' names.
    * Number of characters allowed for each is 100.
    * 
* @@ -264,8 +260,7 @@ public int getInventorsCount() { * * *
-   * Optional.
-   * A list of inventors' names.
+   * Optional. A list of inventors' names.
    * Number of characters allowed for each is 100.
    * 
* @@ -278,8 +273,7 @@ public java.lang.String getInventors(int index) { * * *
-   * Optional.
-   * A list of inventors' names.
+   * Optional. A list of inventors' names.
    * Number of characters allowed for each is 100.
    * 
* @@ -295,8 +289,7 @@ public com.google.protobuf.ByteString getInventorsBytes(int index) { * * *
-   * Optional.
-   * The status of the patent.
+   * Optional. The status of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -317,8 +310,7 @@ public java.lang.String getPatentStatus() { * * *
-   * Optional.
-   * The status of the patent.
+   * Optional. The status of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -342,8 +334,7 @@ public com.google.protobuf.ByteString getPatentStatusBytes() { * * *
-   * Optional.
-   * The date the last time the status of the patent was checked.
+   * Optional. The date the last time the status of the patent was checked.
    * 
* * .google.type.Date patent_status_date = 4; @@ -355,8 +346,7 @@ public boolean hasPatentStatusDate() { * * *
-   * Optional.
-   * The date the last time the status of the patent was checked.
+   * Optional. The date the last time the status of the patent was checked.
    * 
* * .google.type.Date patent_status_date = 4; @@ -370,8 +360,7 @@ public com.google.type.Date getPatentStatusDate() { * * *
-   * Optional.
-   * The date the last time the status of the patent was checked.
+   * Optional. The date the last time the status of the patent was checked.
    * 
* * .google.type.Date patent_status_date = 4; @@ -386,8 +375,7 @@ public com.google.type.DateOrBuilder getPatentStatusDateOrBuilder() { * * *
-   * Optional.
-   * The date that the patent was filed.
+   * Optional. The date that the patent was filed.
    * 
* * .google.type.Date patent_filing_date = 5; @@ -399,8 +387,7 @@ public boolean hasPatentFilingDate() { * * *
-   * Optional.
-   * The date that the patent was filed.
+   * Optional. The date that the patent was filed.
    * 
* * .google.type.Date patent_filing_date = 5; @@ -414,8 +401,7 @@ public com.google.type.Date getPatentFilingDate() { * * *
-   * Optional.
-   * The date that the patent was filed.
+   * Optional. The date that the patent was filed.
    * 
* * .google.type.Date patent_filing_date = 5; @@ -430,8 +416,7 @@ public com.google.type.DateOrBuilder getPatentFilingDateOrBuilder() { * * *
-   * Optional.
-   * The name of the patent office.
+   * Optional. The name of the patent office.
    * Number of characters allowed is 100.
    * 
* @@ -452,8 +437,7 @@ public java.lang.String getPatentOffice() { * * *
-   * Optional.
-   * The name of the patent office.
+   * Optional. The name of the patent office.
    * Number of characters allowed is 100.
    * 
* @@ -477,8 +461,7 @@ public com.google.protobuf.ByteString getPatentOfficeBytes() { * * *
-   * Optional.
-   * The number of the patent.
+   * Optional. The number of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -499,8 +482,7 @@ public java.lang.String getPatentNumber() { * * *
-   * Optional.
-   * The number of the patent.
+   * Optional. The number of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -524,8 +506,7 @@ public com.google.protobuf.ByteString getPatentNumberBytes() { * * *
-   * Optional.
-   * The description of the patent.
+   * Optional. The description of the patent.
    * Number of characters allowed is 100,000.
    * 
* @@ -546,8 +527,7 @@ public java.lang.String getPatentDescription() { * * *
-   * Optional.
-   * The description of the patent.
+   * Optional. The description of the patent.
    * Number of characters allowed is 100,000.
    * 
* @@ -571,8 +551,7 @@ public com.google.protobuf.ByteString getPatentDescriptionBytes() { * * *
-   * Optional.
-   * The skills used in this patent.
+   * Optional. The skills used in this patent.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -584,8 +563,7 @@ public java.util.List getSkillsUsedList() * * *
-   * Optional.
-   * The skills used in this patent.
+   * Optional. The skills used in this patent.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -598,8 +576,7 @@ public java.util.List getSkillsUsedList() * * *
-   * Optional.
-   * The skills used in this patent.
+   * Optional. The skills used in this patent.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -611,8 +588,7 @@ public int getSkillsUsedCount() { * * *
-   * Optional.
-   * The skills used in this patent.
+   * Optional. The skills used in this patent.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -624,8 +600,7 @@ public com.google.cloud.talent.v4beta1.Skill getSkillsUsed(int index) { * * *
-   * Optional.
-   * The skills used in this patent.
+   * Optional. The skills used in this patent.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -1167,8 +1142,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * Name of the patent.
+     * Optional. Name of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -1189,8 +1163,7 @@ public java.lang.String getDisplayName() { * * *
-     * Optional.
-     * Name of the patent.
+     * Optional. Name of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -1211,8 +1184,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-     * Optional.
-     * Name of the patent.
+     * Optional. Name of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -1231,8 +1203,7 @@ public Builder setDisplayName(java.lang.String value) { * * *
-     * Optional.
-     * Name of the patent.
+     * Optional. Name of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -1248,8 +1219,7 @@ public Builder clearDisplayName() { * * *
-     * Optional.
-     * Name of the patent.
+     * Optional. Name of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -1279,8 +1249,7 @@ private void ensureInventorsIsMutable() { * * *
-     * Optional.
-     * A list of inventors' names.
+     * Optional. A list of inventors' names.
      * Number of characters allowed for each is 100.
      * 
* @@ -1293,8 +1262,7 @@ public com.google.protobuf.ProtocolStringList getInventorsList() { * * *
-     * Optional.
-     * A list of inventors' names.
+     * Optional. A list of inventors' names.
      * Number of characters allowed for each is 100.
      * 
* @@ -1307,8 +1275,7 @@ public int getInventorsCount() { * * *
-     * Optional.
-     * A list of inventors' names.
+     * Optional. A list of inventors' names.
      * Number of characters allowed for each is 100.
      * 
* @@ -1321,8 +1288,7 @@ public java.lang.String getInventors(int index) { * * *
-     * Optional.
-     * A list of inventors' names.
+     * Optional. A list of inventors' names.
      * Number of characters allowed for each is 100.
      * 
* @@ -1335,8 +1301,7 @@ public com.google.protobuf.ByteString getInventorsBytes(int index) { * * *
-     * Optional.
-     * A list of inventors' names.
+     * Optional. A list of inventors' names.
      * Number of characters allowed for each is 100.
      * 
* @@ -1355,8 +1320,7 @@ public Builder setInventors(int index, java.lang.String value) { * * *
-     * Optional.
-     * A list of inventors' names.
+     * Optional. A list of inventors' names.
      * Number of characters allowed for each is 100.
      * 
* @@ -1375,8 +1339,7 @@ public Builder addInventors(java.lang.String value) { * * *
-     * Optional.
-     * A list of inventors' names.
+     * Optional. A list of inventors' names.
      * Number of characters allowed for each is 100.
      * 
* @@ -1392,8 +1355,7 @@ public Builder addAllInventors(java.lang.Iterable values) { * * *
-     * Optional.
-     * A list of inventors' names.
+     * Optional. A list of inventors' names.
      * Number of characters allowed for each is 100.
      * 
* @@ -1409,8 +1371,7 @@ public Builder clearInventors() { * * *
-     * Optional.
-     * A list of inventors' names.
+     * Optional. A list of inventors' names.
      * Number of characters allowed for each is 100.
      * 
* @@ -1432,8 +1393,7 @@ public Builder addInventorsBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The status of the patent.
+     * Optional. The status of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -1454,8 +1414,7 @@ public java.lang.String getPatentStatus() { * * *
-     * Optional.
-     * The status of the patent.
+     * Optional. The status of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -1476,8 +1435,7 @@ public com.google.protobuf.ByteString getPatentStatusBytes() { * * *
-     * Optional.
-     * The status of the patent.
+     * Optional. The status of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -1496,8 +1454,7 @@ public Builder setPatentStatus(java.lang.String value) { * * *
-     * Optional.
-     * The status of the patent.
+     * Optional. The status of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -1513,8 +1470,7 @@ public Builder clearPatentStatus() { * * *
-     * Optional.
-     * The status of the patent.
+     * Optional. The status of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -1539,8 +1495,7 @@ public Builder setPatentStatusBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The date the last time the status of the patent was checked.
+     * Optional. The date the last time the status of the patent was checked.
      * 
* * .google.type.Date patent_status_date = 4; @@ -1552,8 +1507,7 @@ public boolean hasPatentStatusDate() { * * *
-     * Optional.
-     * The date the last time the status of the patent was checked.
+     * Optional. The date the last time the status of the patent was checked.
      * 
* * .google.type.Date patent_status_date = 4; @@ -1571,8 +1525,7 @@ public com.google.type.Date getPatentStatusDate() { * * *
-     * Optional.
-     * The date the last time the status of the patent was checked.
+     * Optional. The date the last time the status of the patent was checked.
      * 
* * .google.type.Date patent_status_date = 4; @@ -1594,8 +1547,7 @@ public Builder setPatentStatusDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The date the last time the status of the patent was checked.
+     * Optional. The date the last time the status of the patent was checked.
      * 
* * .google.type.Date patent_status_date = 4; @@ -1614,8 +1566,7 @@ public Builder setPatentStatusDate(com.google.type.Date.Builder builderForValue) * * *
-     * Optional.
-     * The date the last time the status of the patent was checked.
+     * Optional. The date the last time the status of the patent was checked.
      * 
* * .google.type.Date patent_status_date = 4; @@ -1639,8 +1590,7 @@ public Builder mergePatentStatusDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The date the last time the status of the patent was checked.
+     * Optional. The date the last time the status of the patent was checked.
      * 
* * .google.type.Date patent_status_date = 4; @@ -1660,8 +1610,7 @@ public Builder clearPatentStatusDate() { * * *
-     * Optional.
-     * The date the last time the status of the patent was checked.
+     * Optional. The date the last time the status of the patent was checked.
      * 
* * .google.type.Date patent_status_date = 4; @@ -1675,8 +1624,7 @@ public com.google.type.Date.Builder getPatentStatusDateBuilder() { * * *
-     * Optional.
-     * The date the last time the status of the patent was checked.
+     * Optional. The date the last time the status of the patent was checked.
      * 
* * .google.type.Date patent_status_date = 4; @@ -1694,8 +1642,7 @@ public com.google.type.DateOrBuilder getPatentStatusDateOrBuilder() { * * *
-     * Optional.
-     * The date the last time the status of the patent was checked.
+     * Optional. The date the last time the status of the patent was checked.
      * 
* * .google.type.Date patent_status_date = 4; @@ -1721,8 +1668,7 @@ public com.google.type.DateOrBuilder getPatentStatusDateOrBuilder() { * * *
-     * Optional.
-     * The date that the patent was filed.
+     * Optional. The date that the patent was filed.
      * 
* * .google.type.Date patent_filing_date = 5; @@ -1734,8 +1680,7 @@ public boolean hasPatentFilingDate() { * * *
-     * Optional.
-     * The date that the patent was filed.
+     * Optional. The date that the patent was filed.
      * 
* * .google.type.Date patent_filing_date = 5; @@ -1753,8 +1698,7 @@ public com.google.type.Date getPatentFilingDate() { * * *
-     * Optional.
-     * The date that the patent was filed.
+     * Optional. The date that the patent was filed.
      * 
* * .google.type.Date patent_filing_date = 5; @@ -1776,8 +1720,7 @@ public Builder setPatentFilingDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The date that the patent was filed.
+     * Optional. The date that the patent was filed.
      * 
* * .google.type.Date patent_filing_date = 5; @@ -1796,8 +1739,7 @@ public Builder setPatentFilingDate(com.google.type.Date.Builder builderForValue) * * *
-     * Optional.
-     * The date that the patent was filed.
+     * Optional. The date that the patent was filed.
      * 
* * .google.type.Date patent_filing_date = 5; @@ -1821,8 +1763,7 @@ public Builder mergePatentFilingDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The date that the patent was filed.
+     * Optional. The date that the patent was filed.
      * 
* * .google.type.Date patent_filing_date = 5; @@ -1842,8 +1783,7 @@ public Builder clearPatentFilingDate() { * * *
-     * Optional.
-     * The date that the patent was filed.
+     * Optional. The date that the patent was filed.
      * 
* * .google.type.Date patent_filing_date = 5; @@ -1857,8 +1797,7 @@ public com.google.type.Date.Builder getPatentFilingDateBuilder() { * * *
-     * Optional.
-     * The date that the patent was filed.
+     * Optional. The date that the patent was filed.
      * 
* * .google.type.Date patent_filing_date = 5; @@ -1876,8 +1815,7 @@ public com.google.type.DateOrBuilder getPatentFilingDateOrBuilder() { * * *
-     * Optional.
-     * The date that the patent was filed.
+     * Optional. The date that the patent was filed.
      * 
* * .google.type.Date patent_filing_date = 5; @@ -1900,8 +1838,7 @@ public com.google.type.DateOrBuilder getPatentFilingDateOrBuilder() { * * *
-     * Optional.
-     * The name of the patent office.
+     * Optional. The name of the patent office.
      * Number of characters allowed is 100.
      * 
* @@ -1922,8 +1859,7 @@ public java.lang.String getPatentOffice() { * * *
-     * Optional.
-     * The name of the patent office.
+     * Optional. The name of the patent office.
      * Number of characters allowed is 100.
      * 
* @@ -1944,8 +1880,7 @@ public com.google.protobuf.ByteString getPatentOfficeBytes() { * * *
-     * Optional.
-     * The name of the patent office.
+     * Optional. The name of the patent office.
      * Number of characters allowed is 100.
      * 
* @@ -1964,8 +1899,7 @@ public Builder setPatentOffice(java.lang.String value) { * * *
-     * Optional.
-     * The name of the patent office.
+     * Optional. The name of the patent office.
      * Number of characters allowed is 100.
      * 
* @@ -1981,8 +1915,7 @@ public Builder clearPatentOffice() { * * *
-     * Optional.
-     * The name of the patent office.
+     * Optional. The name of the patent office.
      * Number of characters allowed is 100.
      * 
* @@ -2004,8 +1937,7 @@ public Builder setPatentOfficeBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The number of the patent.
+     * Optional. The number of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -2026,8 +1958,7 @@ public java.lang.String getPatentNumber() { * * *
-     * Optional.
-     * The number of the patent.
+     * Optional. The number of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -2048,8 +1979,7 @@ public com.google.protobuf.ByteString getPatentNumberBytes() { * * *
-     * Optional.
-     * The number of the patent.
+     * Optional. The number of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -2068,8 +1998,7 @@ public Builder setPatentNumber(java.lang.String value) { * * *
-     * Optional.
-     * The number of the patent.
+     * Optional. The number of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -2085,8 +2014,7 @@ public Builder clearPatentNumber() { * * *
-     * Optional.
-     * The number of the patent.
+     * Optional. The number of the patent.
      * Number of characters allowed is 100.
      * 
* @@ -2108,8 +2036,7 @@ public Builder setPatentNumberBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The description of the patent.
+     * Optional. The description of the patent.
      * Number of characters allowed is 100,000.
      * 
* @@ -2130,8 +2057,7 @@ public java.lang.String getPatentDescription() { * * *
-     * Optional.
-     * The description of the patent.
+     * Optional. The description of the patent.
      * Number of characters allowed is 100,000.
      * 
* @@ -2152,8 +2078,7 @@ public com.google.protobuf.ByteString getPatentDescriptionBytes() { * * *
-     * Optional.
-     * The description of the patent.
+     * Optional. The description of the patent.
      * Number of characters allowed is 100,000.
      * 
* @@ -2172,8 +2097,7 @@ public Builder setPatentDescription(java.lang.String value) { * * *
-     * Optional.
-     * The description of the patent.
+     * Optional. The description of the patent.
      * Number of characters allowed is 100,000.
      * 
* @@ -2189,8 +2113,7 @@ public Builder clearPatentDescription() { * * *
-     * Optional.
-     * The description of the patent.
+     * Optional. The description of the patent.
      * Number of characters allowed is 100,000.
      * 
* @@ -2227,8 +2150,7 @@ private void ensureSkillsUsedIsMutable() { * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2244,8 +2166,7 @@ public java.util.List getSkillsUsedList() * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2261,8 +2182,7 @@ public int getSkillsUsedCount() { * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2278,8 +2198,7 @@ public com.google.cloud.talent.v4beta1.Skill getSkillsUsed(int index) { * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2301,8 +2220,7 @@ public Builder setSkillsUsed(int index, com.google.cloud.talent.v4beta1.Skill va * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2322,8 +2240,7 @@ public Builder setSkillsUsed( * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2345,8 +2262,7 @@ public Builder addSkillsUsed(com.google.cloud.talent.v4beta1.Skill value) { * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2368,8 +2284,7 @@ public Builder addSkillsUsed(int index, com.google.cloud.talent.v4beta1.Skill va * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2388,8 +2303,7 @@ public Builder addSkillsUsed(com.google.cloud.talent.v4beta1.Skill.Builder build * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2409,8 +2323,7 @@ public Builder addSkillsUsed( * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2430,8 +2343,7 @@ public Builder addAllSkillsUsed( * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2450,8 +2362,7 @@ public Builder clearSkillsUsed() { * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2470,8 +2381,7 @@ public Builder removeSkillsUsed(int index) { * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2483,8 +2393,7 @@ public com.google.cloud.talent.v4beta1.Skill.Builder getSkillsUsedBuilder(int in * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2500,8 +2409,7 @@ public com.google.cloud.talent.v4beta1.SkillOrBuilder getSkillsUsedOrBuilder(int * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2518,8 +2426,7 @@ public com.google.cloud.talent.v4beta1.SkillOrBuilder getSkillsUsedOrBuilder(int * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2532,8 +2439,7 @@ public com.google.cloud.talent.v4beta1.Skill.Builder addSkillsUsedBuilder() { * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -2546,8 +2452,7 @@ public com.google.cloud.talent.v4beta1.Skill.Builder addSkillsUsedBuilder(int in * * *
-     * Optional.
-     * The skills used in this patent.
+     * Optional. The skills used in this patent.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PatentOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PatentOrBuilder.java index afa687caea83..d84f011c7871 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PatentOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PatentOrBuilder.java @@ -12,8 +12,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * Name of the patent.
+   * Optional. Name of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -24,8 +23,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * Name of the patent.
+   * Optional. Name of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -37,8 +35,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * A list of inventors' names.
+   * Optional. A list of inventors' names.
    * Number of characters allowed for each is 100.
    * 
* @@ -49,8 +46,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * A list of inventors' names.
+   * Optional. A list of inventors' names.
    * Number of characters allowed for each is 100.
    * 
* @@ -61,8 +57,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * A list of inventors' names.
+   * Optional. A list of inventors' names.
    * Number of characters allowed for each is 100.
    * 
* @@ -73,8 +68,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * A list of inventors' names.
+   * Optional. A list of inventors' names.
    * Number of characters allowed for each is 100.
    * 
* @@ -86,8 +80,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The status of the patent.
+   * Optional. The status of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -98,8 +91,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The status of the patent.
+   * Optional. The status of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -111,8 +103,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The date the last time the status of the patent was checked.
+   * Optional. The date the last time the status of the patent was checked.
    * 
* * .google.type.Date patent_status_date = 4; @@ -122,8 +113,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The date the last time the status of the patent was checked.
+   * Optional. The date the last time the status of the patent was checked.
    * 
* * .google.type.Date patent_status_date = 4; @@ -133,8 +123,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The date the last time the status of the patent was checked.
+   * Optional. The date the last time the status of the patent was checked.
    * 
* * .google.type.Date patent_status_date = 4; @@ -145,8 +134,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The date that the patent was filed.
+   * Optional. The date that the patent was filed.
    * 
* * .google.type.Date patent_filing_date = 5; @@ -156,8 +144,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The date that the patent was filed.
+   * Optional. The date that the patent was filed.
    * 
* * .google.type.Date patent_filing_date = 5; @@ -167,8 +154,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The date that the patent was filed.
+   * Optional. The date that the patent was filed.
    * 
* * .google.type.Date patent_filing_date = 5; @@ -179,8 +165,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The name of the patent office.
+   * Optional. The name of the patent office.
    * Number of characters allowed is 100.
    * 
* @@ -191,8 +176,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The name of the patent office.
+   * Optional. The name of the patent office.
    * Number of characters allowed is 100.
    * 
* @@ -204,8 +188,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The number of the patent.
+   * Optional. The number of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -216,8 +199,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The number of the patent.
+   * Optional. The number of the patent.
    * Number of characters allowed is 100.
    * 
* @@ -229,8 +211,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The description of the patent.
+   * Optional. The description of the patent.
    * Number of characters allowed is 100,000.
    * 
* @@ -241,8 +222,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The description of the patent.
+   * Optional. The description of the patent.
    * Number of characters allowed is 100,000.
    * 
* @@ -254,8 +234,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The skills used in this patent.
+   * Optional. The skills used in this patent.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -265,8 +244,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The skills used in this patent.
+   * Optional. The skills used in this patent.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -276,8 +254,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The skills used in this patent.
+   * Optional. The skills used in this patent.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -287,8 +264,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The skills used in this patent.
+   * Optional. The skills used in this patent.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; @@ -299,8 +275,7 @@ public interface PatentOrBuilder * * *
-   * Optional.
-   * The skills used in this patent.
+   * Optional. The skills used in this patent.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills_used = 9; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonName.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonName.java index 0e9b2e963dc8..cdcd9aacc3ab 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonName.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonName.java @@ -128,8 +128,7 @@ public interface PersonStructuredNameOrBuilder * * *
-     * Optional.
-     * Given/first name.
+     * Optional. Given/first name.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -143,8 +142,7 @@ public interface PersonStructuredNameOrBuilder
      *
      *
      * 
-     * Optional.
-     * Given/first name.
+     * Optional. Given/first name.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -159,8 +157,7 @@ public interface PersonStructuredNameOrBuilder
      *
      *
      * 
-     * Optional.
-     * Preferred given/first name or nickname.
+     * Optional. Preferred given/first name or nickname.
      * Number of characters allowed is 100.
      * 
* @@ -171,8 +168,7 @@ public interface PersonStructuredNameOrBuilder * * *
-     * Optional.
-     * Preferred given/first name or nickname.
+     * Optional. Preferred given/first name or nickname.
      * Number of characters allowed is 100.
      * 
* @@ -184,8 +180,7 @@ public interface PersonStructuredNameOrBuilder * * *
-     * Optional.
-     * Middle initial.
+     * Optional. Middle initial.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -199,8 +194,7 @@ public interface PersonStructuredNameOrBuilder
      *
      *
      * 
-     * Optional.
-     * Middle initial.
+     * Optional. Middle initial.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -215,8 +209,7 @@ public interface PersonStructuredNameOrBuilder
      *
      *
      * 
-     * Optional.
-     * Family/last name.
+     * Optional. Family/last name.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -230,8 +223,7 @@ public interface PersonStructuredNameOrBuilder
      *
      *
      * 
-     * Optional.
-     * Family/last name.
+     * Optional. Family/last name.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -246,8 +238,7 @@ public interface PersonStructuredNameOrBuilder
      *
      *
      * 
-     * Optional.
-     * Suffixes.
+     * Optional. Suffixes.
      * Number of characters allowed is 20.
      * 
* @@ -258,8 +249,7 @@ public interface PersonStructuredNameOrBuilder * * *
-     * Optional.
-     * Suffixes.
+     * Optional. Suffixes.
      * Number of characters allowed is 20.
      * 
* @@ -270,8 +260,7 @@ public interface PersonStructuredNameOrBuilder * * *
-     * Optional.
-     * Suffixes.
+     * Optional. Suffixes.
      * Number of characters allowed is 20.
      * 
* @@ -282,8 +271,7 @@ public interface PersonStructuredNameOrBuilder * * *
-     * Optional.
-     * Suffixes.
+     * Optional. Suffixes.
      * Number of characters allowed is 20.
      * 
* @@ -295,8 +283,7 @@ public interface PersonStructuredNameOrBuilder * * *
-     * Optional.
-     * Prefixes.
+     * Optional. Prefixes.
      * Number of characters allowed is 20.
      * 
* @@ -307,8 +294,7 @@ public interface PersonStructuredNameOrBuilder * * *
-     * Optional.
-     * Prefixes.
+     * Optional. Prefixes.
      * Number of characters allowed is 20.
      * 
* @@ -319,8 +305,7 @@ public interface PersonStructuredNameOrBuilder * * *
-     * Optional.
-     * Prefixes.
+     * Optional. Prefixes.
      * Number of characters allowed is 20.
      * 
* @@ -331,8 +316,7 @@ public interface PersonStructuredNameOrBuilder * * *
-     * Optional.
-     * Prefixes.
+     * Optional. Prefixes.
      * Number of characters allowed is 20.
      * 
* @@ -487,8 +471,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-     * Optional.
-     * Given/first name.
+     * Optional. Given/first name.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -512,8 +495,7 @@ public java.lang.String getGivenName() {
      *
      *
      * 
-     * Optional.
-     * Given/first name.
+     * Optional. Given/first name.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -540,8 +522,7 @@ public com.google.protobuf.ByteString getGivenNameBytes() {
      *
      *
      * 
-     * Optional.
-     * Preferred given/first name or nickname.
+     * Optional. Preferred given/first name or nickname.
      * Number of characters allowed is 100.
      * 
* @@ -562,8 +543,7 @@ public java.lang.String getPreferredName() { * * *
-     * Optional.
-     * Preferred given/first name or nickname.
+     * Optional. Preferred given/first name or nickname.
      * Number of characters allowed is 100.
      * 
* @@ -587,8 +567,7 @@ public com.google.protobuf.ByteString getPreferredNameBytes() { * * *
-     * Optional.
-     * Middle initial.
+     * Optional. Middle initial.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -612,8 +591,7 @@ public java.lang.String getMiddleInitial() {
      *
      *
      * 
-     * Optional.
-     * Middle initial.
+     * Optional. Middle initial.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -640,8 +618,7 @@ public com.google.protobuf.ByteString getMiddleInitialBytes() {
      *
      *
      * 
-     * Optional.
-     * Family/last name.
+     * Optional. Family/last name.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -665,8 +642,7 @@ public java.lang.String getFamilyName() {
      *
      *
      * 
-     * Optional.
-     * Family/last name.
+     * Optional. Family/last name.
      * It's derived from
      * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
      * if not provided.
@@ -693,8 +669,7 @@ public com.google.protobuf.ByteString getFamilyNameBytes() {
      *
      *
      * 
-     * Optional.
-     * Suffixes.
+     * Optional. Suffixes.
      * Number of characters allowed is 20.
      * 
* @@ -707,8 +682,7 @@ public com.google.protobuf.ProtocolStringList getSuffixesList() { * * *
-     * Optional.
-     * Suffixes.
+     * Optional. Suffixes.
      * Number of characters allowed is 20.
      * 
* @@ -721,8 +695,7 @@ public int getSuffixesCount() { * * *
-     * Optional.
-     * Suffixes.
+     * Optional. Suffixes.
      * Number of characters allowed is 20.
      * 
* @@ -735,8 +708,7 @@ public java.lang.String getSuffixes(int index) { * * *
-     * Optional.
-     * Suffixes.
+     * Optional. Suffixes.
      * Number of characters allowed is 20.
      * 
* @@ -752,8 +724,7 @@ public com.google.protobuf.ByteString getSuffixesBytes(int index) { * * *
-     * Optional.
-     * Prefixes.
+     * Optional. Prefixes.
      * Number of characters allowed is 20.
      * 
* @@ -766,8 +737,7 @@ public com.google.protobuf.ProtocolStringList getPrefixesList() { * * *
-     * Optional.
-     * Prefixes.
+     * Optional. Prefixes.
      * Number of characters allowed is 20.
      * 
* @@ -780,8 +750,7 @@ public int getPrefixesCount() { * * *
-     * Optional.
-     * Prefixes.
+     * Optional. Prefixes.
      * Number of characters allowed is 20.
      * 
* @@ -794,8 +763,7 @@ public java.lang.String getPrefixes(int index) { * * *
-     * Optional.
-     * Prefixes.
+     * Optional. Prefixes.
      * Number of characters allowed is 20.
      * 
* @@ -1258,8 +1226,7 @@ public Builder mergeFrom( * * *
-       * Optional.
-       * Given/first name.
+       * Optional. Given/first name.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1283,8 +1250,7 @@ public java.lang.String getGivenName() {
        *
        *
        * 
-       * Optional.
-       * Given/first name.
+       * Optional. Given/first name.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1308,8 +1274,7 @@ public com.google.protobuf.ByteString getGivenNameBytes() {
        *
        *
        * 
-       * Optional.
-       * Given/first name.
+       * Optional. Given/first name.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1331,8 +1296,7 @@ public Builder setGivenName(java.lang.String value) {
        *
        *
        * 
-       * Optional.
-       * Given/first name.
+       * Optional. Given/first name.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1351,8 +1315,7 @@ public Builder clearGivenName() {
        *
        *
        * 
-       * Optional.
-       * Given/first name.
+       * Optional. Given/first name.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1377,8 +1340,7 @@ public Builder setGivenNameBytes(com.google.protobuf.ByteString value) {
        *
        *
        * 
-       * Optional.
-       * Preferred given/first name or nickname.
+       * Optional. Preferred given/first name or nickname.
        * Number of characters allowed is 100.
        * 
* @@ -1399,8 +1361,7 @@ public java.lang.String getPreferredName() { * * *
-       * Optional.
-       * Preferred given/first name or nickname.
+       * Optional. Preferred given/first name or nickname.
        * Number of characters allowed is 100.
        * 
* @@ -1421,8 +1382,7 @@ public com.google.protobuf.ByteString getPreferredNameBytes() { * * *
-       * Optional.
-       * Preferred given/first name or nickname.
+       * Optional. Preferred given/first name or nickname.
        * Number of characters allowed is 100.
        * 
* @@ -1441,8 +1401,7 @@ public Builder setPreferredName(java.lang.String value) { * * *
-       * Optional.
-       * Preferred given/first name or nickname.
+       * Optional. Preferred given/first name or nickname.
        * Number of characters allowed is 100.
        * 
* @@ -1458,8 +1417,7 @@ public Builder clearPreferredName() { * * *
-       * Optional.
-       * Preferred given/first name or nickname.
+       * Optional. Preferred given/first name or nickname.
        * Number of characters allowed is 100.
        * 
* @@ -1481,8 +1439,7 @@ public Builder setPreferredNameBytes(com.google.protobuf.ByteString value) { * * *
-       * Optional.
-       * Middle initial.
+       * Optional. Middle initial.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1506,8 +1463,7 @@ public java.lang.String getMiddleInitial() {
        *
        *
        * 
-       * Optional.
-       * Middle initial.
+       * Optional. Middle initial.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1531,8 +1487,7 @@ public com.google.protobuf.ByteString getMiddleInitialBytes() {
        *
        *
        * 
-       * Optional.
-       * Middle initial.
+       * Optional. Middle initial.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1554,8 +1509,7 @@ public Builder setMiddleInitial(java.lang.String value) {
        *
        *
        * 
-       * Optional.
-       * Middle initial.
+       * Optional. Middle initial.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1574,8 +1528,7 @@ public Builder clearMiddleInitial() {
        *
        *
        * 
-       * Optional.
-       * Middle initial.
+       * Optional. Middle initial.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1600,8 +1553,7 @@ public Builder setMiddleInitialBytes(com.google.protobuf.ByteString value) {
        *
        *
        * 
-       * Optional.
-       * Family/last name.
+       * Optional. Family/last name.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1625,8 +1577,7 @@ public java.lang.String getFamilyName() {
        *
        *
        * 
-       * Optional.
-       * Family/last name.
+       * Optional. Family/last name.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1650,8 +1601,7 @@ public com.google.protobuf.ByteString getFamilyNameBytes() {
        *
        *
        * 
-       * Optional.
-       * Family/last name.
+       * Optional. Family/last name.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1673,8 +1623,7 @@ public Builder setFamilyName(java.lang.String value) {
        *
        *
        * 
-       * Optional.
-       * Family/last name.
+       * Optional. Family/last name.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1693,8 +1642,7 @@ public Builder clearFamilyName() {
        *
        *
        * 
-       * Optional.
-       * Family/last name.
+       * Optional. Family/last name.
        * It's derived from
        * [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name]
        * if not provided.
@@ -1727,8 +1675,7 @@ private void ensureSuffixesIsMutable() {
        *
        *
        * 
-       * Optional.
-       * Suffixes.
+       * Optional. Suffixes.
        * Number of characters allowed is 20.
        * 
* @@ -1741,8 +1688,7 @@ public com.google.protobuf.ProtocolStringList getSuffixesList() { * * *
-       * Optional.
-       * Suffixes.
+       * Optional. Suffixes.
        * Number of characters allowed is 20.
        * 
* @@ -1755,8 +1701,7 @@ public int getSuffixesCount() { * * *
-       * Optional.
-       * Suffixes.
+       * Optional. Suffixes.
        * Number of characters allowed is 20.
        * 
* @@ -1769,8 +1714,7 @@ public java.lang.String getSuffixes(int index) { * * *
-       * Optional.
-       * Suffixes.
+       * Optional. Suffixes.
        * Number of characters allowed is 20.
        * 
* @@ -1783,8 +1727,7 @@ public com.google.protobuf.ByteString getSuffixesBytes(int index) { * * *
-       * Optional.
-       * Suffixes.
+       * Optional. Suffixes.
        * Number of characters allowed is 20.
        * 
* @@ -1803,8 +1746,7 @@ public Builder setSuffixes(int index, java.lang.String value) { * * *
-       * Optional.
-       * Suffixes.
+       * Optional. Suffixes.
        * Number of characters allowed is 20.
        * 
* @@ -1823,8 +1765,7 @@ public Builder addSuffixes(java.lang.String value) { * * *
-       * Optional.
-       * Suffixes.
+       * Optional. Suffixes.
        * Number of characters allowed is 20.
        * 
* @@ -1840,8 +1781,7 @@ public Builder addAllSuffixes(java.lang.Iterable values) { * * *
-       * Optional.
-       * Suffixes.
+       * Optional. Suffixes.
        * Number of characters allowed is 20.
        * 
* @@ -1857,8 +1797,7 @@ public Builder clearSuffixes() { * * *
-       * Optional.
-       * Suffixes.
+       * Optional. Suffixes.
        * Number of characters allowed is 20.
        * 
* @@ -1888,8 +1827,7 @@ private void ensurePrefixesIsMutable() { * * *
-       * Optional.
-       * Prefixes.
+       * Optional. Prefixes.
        * Number of characters allowed is 20.
        * 
* @@ -1902,8 +1840,7 @@ public com.google.protobuf.ProtocolStringList getPrefixesList() { * * *
-       * Optional.
-       * Prefixes.
+       * Optional. Prefixes.
        * Number of characters allowed is 20.
        * 
* @@ -1916,8 +1853,7 @@ public int getPrefixesCount() { * * *
-       * Optional.
-       * Prefixes.
+       * Optional. Prefixes.
        * Number of characters allowed is 20.
        * 
* @@ -1930,8 +1866,7 @@ public java.lang.String getPrefixes(int index) { * * *
-       * Optional.
-       * Prefixes.
+       * Optional. Prefixes.
        * Number of characters allowed is 20.
        * 
* @@ -1944,8 +1879,7 @@ public com.google.protobuf.ByteString getPrefixesBytes(int index) { * * *
-       * Optional.
-       * Prefixes.
+       * Optional. Prefixes.
        * Number of characters allowed is 20.
        * 
* @@ -1964,8 +1898,7 @@ public Builder setPrefixes(int index, java.lang.String value) { * * *
-       * Optional.
-       * Prefixes.
+       * Optional. Prefixes.
        * Number of characters allowed is 20.
        * 
* @@ -1984,8 +1917,7 @@ public Builder addPrefixes(java.lang.String value) { * * *
-       * Optional.
-       * Prefixes.
+       * Optional. Prefixes.
        * Number of characters allowed is 20.
        * 
* @@ -2001,8 +1933,7 @@ public Builder addAllPrefixes(java.lang.Iterable values) { * * *
-       * Optional.
-       * Prefixes.
+       * Optional. Prefixes.
        * Number of characters allowed is 20.
        * 
* @@ -2018,8 +1949,7 @@ public Builder clearPrefixes() { * * *
-       * Optional.
-       * Prefixes.
+       * Optional. Prefixes.
        * Number of characters allowed is 20.
        * 
* @@ -2136,8 +2066,8 @@ public PersonNameCase getPersonNameCase() { * * *
-   * Optional.
-   * A string represents a person's full name. For example, "Dr. John Smith".
+   * Optional. A string represents a person's full name. For example, "Dr.
+   * John Smith".
    * Number of characters allowed is 100.
    * 
* @@ -2163,8 +2093,8 @@ public java.lang.String getFormattedName() { * * *
-   * Optional.
-   * A string represents a person's full name. For example, "Dr. John Smith".
+   * Optional. A string represents a person's full name. For example, "Dr.
+   * John Smith".
    * Number of characters allowed is 100.
    * 
* @@ -2192,9 +2122,8 @@ public com.google.protobuf.ByteString getFormattedNameBytes() { * * *
-   * Optional.
-   * A person's name in a structured way (last name, first name, suffix, and
-   * so on.)
+   * Optional. A person's name in a structured way (last name, first name,
+   * suffix, and so on.)
    * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -2206,9 +2135,8 @@ public boolean hasStructuredName() { * * *
-   * Optional.
-   * A person's name in a structured way (last name, first name, suffix, and
-   * so on.)
+   * Optional. A person's name in a structured way (last name, first name,
+   * suffix, and so on.)
    * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -2223,9 +2151,8 @@ public com.google.cloud.talent.v4beta1.PersonName.PersonStructuredName getStruct * * *
-   * Optional.
-   * A person's name in a structured way (last name, first name, suffix, and
-   * so on.)
+   * Optional. A person's name in a structured way (last name, first name,
+   * suffix, and so on.)
    * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -2244,8 +2171,7 @@ public com.google.cloud.talent.v4beta1.PersonName.PersonStructuredName getStruct * * *
-   * Optional.
-   * Preferred name for the person. This field is ignored if
+   * Optional. Preferred name for the person. This field is ignored if
    * [structured_name][google.cloud.talent.v4beta1.PersonName.structured_name]
    * is provided.
    * Number of characters allowed is 100.
@@ -2268,8 +2194,7 @@ public java.lang.String getPreferredName() {
    *
    *
    * 
-   * Optional.
-   * Preferred name for the person. This field is ignored if
+   * Optional. Preferred name for the person. This field is ignored if
    * [structured_name][google.cloud.talent.v4beta1.PersonName.structured_name]
    * is provided.
    * Number of characters allowed is 100.
@@ -2692,8 +2617,8 @@ public Builder clearPersonName() {
      *
      *
      * 
-     * Optional.
-     * A string represents a person's full name. For example, "Dr. John Smith".
+     * Optional. A string represents a person's full name. For example, "Dr.
+     * John Smith".
      * Number of characters allowed is 100.
      * 
* @@ -2719,8 +2644,8 @@ public java.lang.String getFormattedName() { * * *
-     * Optional.
-     * A string represents a person's full name. For example, "Dr. John Smith".
+     * Optional. A string represents a person's full name. For example, "Dr.
+     * John Smith".
      * Number of characters allowed is 100.
      * 
* @@ -2746,8 +2671,8 @@ public com.google.protobuf.ByteString getFormattedNameBytes() { * * *
-     * Optional.
-     * A string represents a person's full name. For example, "Dr. John Smith".
+     * Optional. A string represents a person's full name. For example, "Dr.
+     * John Smith".
      * Number of characters allowed is 100.
      * 
* @@ -2766,8 +2691,8 @@ public Builder setFormattedName(java.lang.String value) { * * *
-     * Optional.
-     * A string represents a person's full name. For example, "Dr. John Smith".
+     * Optional. A string represents a person's full name. For example, "Dr.
+     * John Smith".
      * Number of characters allowed is 100.
      * 
* @@ -2785,8 +2710,8 @@ public Builder clearFormattedName() { * * *
-     * Optional.
-     * A string represents a person's full name. For example, "Dr. John Smith".
+     * Optional. A string represents a person's full name. For example, "Dr.
+     * John Smith".
      * Number of characters allowed is 100.
      * 
* @@ -2812,9 +2737,8 @@ public Builder setFormattedNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * A person's name in a structured way (last name, first name, suffix, and
-     * so on.)
+     * Optional. A person's name in a structured way (last name, first name,
+     * suffix, and so on.)
      * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -2827,9 +2751,8 @@ public boolean hasStructuredName() { * * *
-     * Optional.
-     * A person's name in a structured way (last name, first name, suffix, and
-     * so on.)
+     * Optional. A person's name in a structured way (last name, first name,
+     * suffix, and so on.)
      * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -2852,9 +2775,8 @@ public com.google.cloud.talent.v4beta1.PersonName.PersonStructuredName getStruct * * *
-     * Optional.
-     * A person's name in a structured way (last name, first name, suffix, and
-     * so on.)
+     * Optional. A person's name in a structured way (last name, first name,
+     * suffix, and so on.)
      * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -2878,9 +2800,8 @@ public Builder setStructuredName( * * *
-     * Optional.
-     * A person's name in a structured way (last name, first name, suffix, and
-     * so on.)
+     * Optional. A person's name in a structured way (last name, first name,
+     * suffix, and so on.)
      * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -2901,9 +2822,8 @@ public Builder setStructuredName( * * *
-     * Optional.
-     * A person's name in a structured way (last name, first name, suffix, and
-     * so on.)
+     * Optional. A person's name in a structured way (last name, first name,
+     * suffix, and so on.)
      * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -2938,9 +2858,8 @@ public Builder mergeStructuredName( * * *
-     * Optional.
-     * A person's name in a structured way (last name, first name, suffix, and
-     * so on.)
+     * Optional. A person's name in a structured way (last name, first name,
+     * suffix, and so on.)
      * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -2966,9 +2885,8 @@ public Builder clearStructuredName() { * * *
-     * Optional.
-     * A person's name in a structured way (last name, first name, suffix, and
-     * so on.)
+     * Optional. A person's name in a structured way (last name, first name,
+     * suffix, and so on.)
      * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -2982,9 +2900,8 @@ public Builder clearStructuredName() { * * *
-     * Optional.
-     * A person's name in a structured way (last name, first name, suffix, and
-     * so on.)
+     * Optional. A person's name in a structured way (last name, first name,
+     * suffix, and so on.)
      * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -3005,9 +2922,8 @@ public Builder clearStructuredName() { * * *
-     * Optional.
-     * A person's name in a structured way (last name, first name, suffix, and
-     * so on.)
+     * Optional. A person's name in a structured way (last name, first name,
+     * suffix, and so on.)
      * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -3044,8 +2960,7 @@ public Builder clearStructuredName() { * * *
-     * Optional.
-     * Preferred name for the person. This field is ignored if
+     * Optional. Preferred name for the person. This field is ignored if
      * [structured_name][google.cloud.talent.v4beta1.PersonName.structured_name]
      * is provided.
      * Number of characters allowed is 100.
@@ -3068,8 +2983,7 @@ public java.lang.String getPreferredName() {
      *
      *
      * 
-     * Optional.
-     * Preferred name for the person. This field is ignored if
+     * Optional. Preferred name for the person. This field is ignored if
      * [structured_name][google.cloud.talent.v4beta1.PersonName.structured_name]
      * is provided.
      * Number of characters allowed is 100.
@@ -3092,8 +3006,7 @@ public com.google.protobuf.ByteString getPreferredNameBytes() {
      *
      *
      * 
-     * Optional.
-     * Preferred name for the person. This field is ignored if
+     * Optional. Preferred name for the person. This field is ignored if
      * [structured_name][google.cloud.talent.v4beta1.PersonName.structured_name]
      * is provided.
      * Number of characters allowed is 100.
@@ -3114,8 +3027,7 @@ public Builder setPreferredName(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * Preferred name for the person. This field is ignored if
+     * Optional. Preferred name for the person. This field is ignored if
      * [structured_name][google.cloud.talent.v4beta1.PersonName.structured_name]
      * is provided.
      * Number of characters allowed is 100.
@@ -3133,8 +3045,7 @@ public Builder clearPreferredName() {
      *
      *
      * 
-     * Optional.
-     * Preferred name for the person. This field is ignored if
+     * Optional. Preferred name for the person. This field is ignored if
      * [structured_name][google.cloud.talent.v4beta1.PersonName.structured_name]
      * is provided.
      * Number of characters allowed is 100.
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonNameOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonNameOrBuilder.java
index 9e851a38a0c9..534bb8086fb2 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonNameOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonNameOrBuilder.java
@@ -12,8 +12,8 @@ public interface PersonNameOrBuilder
    *
    *
    * 
-   * Optional.
-   * A string represents a person's full name. For example, "Dr. John Smith".
+   * Optional. A string represents a person's full name. For example, "Dr.
+   * John Smith".
    * Number of characters allowed is 100.
    * 
* @@ -24,8 +24,8 @@ public interface PersonNameOrBuilder * * *
-   * Optional.
-   * A string represents a person's full name. For example, "Dr. John Smith".
+   * Optional. A string represents a person's full name. For example, "Dr.
+   * John Smith".
    * Number of characters allowed is 100.
    * 
* @@ -37,9 +37,8 @@ public interface PersonNameOrBuilder * * *
-   * Optional.
-   * A person's name in a structured way (last name, first name, suffix, and
-   * so on.)
+   * Optional. A person's name in a structured way (last name, first name,
+   * suffix, and so on.)
    * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -49,9 +48,8 @@ public interface PersonNameOrBuilder * * *
-   * Optional.
-   * A person's name in a structured way (last name, first name, suffix, and
-   * so on.)
+   * Optional. A person's name in a structured way (last name, first name,
+   * suffix, and so on.)
    * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -61,9 +59,8 @@ public interface PersonNameOrBuilder * * *
-   * Optional.
-   * A person's name in a structured way (last name, first name, suffix, and
-   * so on.)
+   * Optional. A person's name in a structured way (last name, first name,
+   * suffix, and so on.)
    * 
* * .google.cloud.talent.v4beta1.PersonName.PersonStructuredName structured_name = 2; @@ -75,8 +72,7 @@ public interface PersonNameOrBuilder * * *
-   * Optional.
-   * Preferred name for the person. This field is ignored if
+   * Optional. Preferred name for the person. This field is ignored if
    * [structured_name][google.cloud.talent.v4beta1.PersonName.structured_name]
    * is provided.
    * Number of characters allowed is 100.
@@ -89,8 +85,7 @@ public interface PersonNameOrBuilder
    *
    *
    * 
-   * Optional.
-   * Preferred name for the person. This field is ignored if
+   * Optional. Preferred name for the person. This field is ignored if
    * [structured_name][google.cloud.talent.v4beta1.PersonName.structured_name]
    * is provided.
    * Number of characters allowed is 100.
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonalUri.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonalUri.java
index 97cac641a894..5a3701eadce2 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonalUri.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonalUri.java
@@ -97,8 +97,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Optional.
-   * The personal URI.
+   * Optional. The personal URI.
    * Number of characters allowed is 4,000.
    * 
* @@ -119,8 +118,7 @@ public java.lang.String getUri() { * * *
-   * Optional.
-   * The personal URI.
+   * Optional. The personal URI.
    * Number of characters allowed is 4,000.
    * 
* @@ -459,8 +457,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * The personal URI.
+     * Optional. The personal URI.
      * Number of characters allowed is 4,000.
      * 
* @@ -481,8 +478,7 @@ public java.lang.String getUri() { * * *
-     * Optional.
-     * The personal URI.
+     * Optional. The personal URI.
      * Number of characters allowed is 4,000.
      * 
* @@ -503,8 +499,7 @@ public com.google.protobuf.ByteString getUriBytes() { * * *
-     * Optional.
-     * The personal URI.
+     * Optional. The personal URI.
      * Number of characters allowed is 4,000.
      * 
* @@ -523,8 +518,7 @@ public Builder setUri(java.lang.String value) { * * *
-     * Optional.
-     * The personal URI.
+     * Optional. The personal URI.
      * Number of characters allowed is 4,000.
      * 
* @@ -540,8 +534,7 @@ public Builder clearUri() { * * *
-     * Optional.
-     * The personal URI.
+     * Optional. The personal URI.
      * Number of characters allowed is 4,000.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonalUriOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonalUriOrBuilder.java index 7b2ade421ca1..19cdc85a9103 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonalUriOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PersonalUriOrBuilder.java @@ -12,8 +12,7 @@ public interface PersonalUriOrBuilder * * *
-   * Optional.
-   * The personal URI.
+   * Optional. The personal URI.
    * Number of characters allowed is 4,000.
    * 
* @@ -24,8 +23,7 @@ public interface PersonalUriOrBuilder * * *
-   * Optional.
-   * The personal URI.
+   * Optional. The personal URI.
    * Number of characters allowed is 4,000.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Phone.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Phone.java index 2240de3ea070..83b91bd54b9e 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Phone.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Phone.java @@ -434,8 +434,7 @@ private PhoneType(int value) { * * *
-   * Optional.
-   * The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -447,8 +446,7 @@ public int getUsageValue() { * * *
-   * Optional.
-   * The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -466,8 +464,7 @@ public com.google.cloud.talent.v4beta1.ContactInfoUsage getUsage() { * * *
-   * Optional.
-   * The phone type. For example, LANDLINE, MOBILE, FAX.
+   * Optional. The phone type. For example, LANDLINE, MOBILE, FAX.
    * 
* * .google.cloud.talent.v4beta1.Phone.PhoneType type = 2; @@ -479,8 +476,7 @@ public int getTypeValue() { * * *
-   * Optional.
-   * The phone type. For example, LANDLINE, MOBILE, FAX.
+   * Optional. The phone type. For example, LANDLINE, MOBILE, FAX.
    * 
* * .google.cloud.talent.v4beta1.Phone.PhoneType type = 2; @@ -498,8 +494,7 @@ public com.google.cloud.talent.v4beta1.Phone.PhoneType getType() { * * *
-   * Optional.
-   * Phone number.
+   * Optional. Phone number.
    * Any phone formats are supported and only exact matches are performed on
    * searches. For example, if a phone number in profile is provided in the
    * format of "(xxx)xxx-xxxx", in profile searches the same phone format
@@ -524,8 +519,7 @@ public java.lang.String getNumber() {
    *
    *
    * 
-   * Optional.
-   * Phone number.
+   * Optional. Phone number.
    * Any phone formats are supported and only exact matches are performed on
    * searches. For example, if a phone number in profile is provided in the
    * format of "(xxx)xxx-xxxx", in profile searches the same phone format
@@ -553,8 +547,8 @@ public com.google.protobuf.ByteString getNumberBytes() {
    *
    *
    * 
-   * Optional.
-   * When this number is available. Any descriptive string is expected.
+   * Optional. When this number is available. Any descriptive string is
+   * expected.
    * Number of characters allowed is 100.
    * 
* @@ -575,8 +569,8 @@ public java.lang.String getWhenAvailable() { * * *
-   * Optional.
-   * When this number is available. Any descriptive string is expected.
+   * Optional. When this number is available. Any descriptive string is
+   * expected.
    * Number of characters allowed is 100.
    * 
* @@ -965,8 +959,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -978,8 +971,7 @@ public int getUsageValue() { * * *
-     * Optional.
-     * The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -993,8 +985,7 @@ public Builder setUsageValue(int value) { * * *
-     * Optional.
-     * The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -1011,8 +1002,7 @@ public com.google.cloud.talent.v4beta1.ContactInfoUsage getUsage() { * * *
-     * Optional.
-     * The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -1030,8 +1020,7 @@ public Builder setUsage(com.google.cloud.talent.v4beta1.ContactInfoUsage value) * * *
-     * Optional.
-     * The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
+     * Optional. The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
      * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -1048,8 +1037,7 @@ public Builder clearUsage() { * * *
-     * Optional.
-     * The phone type. For example, LANDLINE, MOBILE, FAX.
+     * Optional. The phone type. For example, LANDLINE, MOBILE, FAX.
      * 
* * .google.cloud.talent.v4beta1.Phone.PhoneType type = 2; @@ -1061,8 +1049,7 @@ public int getTypeValue() { * * *
-     * Optional.
-     * The phone type. For example, LANDLINE, MOBILE, FAX.
+     * Optional. The phone type. For example, LANDLINE, MOBILE, FAX.
      * 
* * .google.cloud.talent.v4beta1.Phone.PhoneType type = 2; @@ -1076,8 +1063,7 @@ public Builder setTypeValue(int value) { * * *
-     * Optional.
-     * The phone type. For example, LANDLINE, MOBILE, FAX.
+     * Optional. The phone type. For example, LANDLINE, MOBILE, FAX.
      * 
* * .google.cloud.talent.v4beta1.Phone.PhoneType type = 2; @@ -1092,8 +1078,7 @@ public com.google.cloud.talent.v4beta1.Phone.PhoneType getType() { * * *
-     * Optional.
-     * The phone type. For example, LANDLINE, MOBILE, FAX.
+     * Optional. The phone type. For example, LANDLINE, MOBILE, FAX.
      * 
* * .google.cloud.talent.v4beta1.Phone.PhoneType type = 2; @@ -1111,8 +1096,7 @@ public Builder setType(com.google.cloud.talent.v4beta1.Phone.PhoneType value) { * * *
-     * Optional.
-     * The phone type. For example, LANDLINE, MOBILE, FAX.
+     * Optional. The phone type. For example, LANDLINE, MOBILE, FAX.
      * 
* * .google.cloud.talent.v4beta1.Phone.PhoneType type = 2; @@ -1129,8 +1113,7 @@ public Builder clearType() { * * *
-     * Optional.
-     * Phone number.
+     * Optional. Phone number.
      * Any phone formats are supported and only exact matches are performed on
      * searches. For example, if a phone number in profile is provided in the
      * format of "(xxx)xxx-xxxx", in profile searches the same phone format
@@ -1155,8 +1138,7 @@ public java.lang.String getNumber() {
      *
      *
      * 
-     * Optional.
-     * Phone number.
+     * Optional. Phone number.
      * Any phone formats are supported and only exact matches are performed on
      * searches. For example, if a phone number in profile is provided in the
      * format of "(xxx)xxx-xxxx", in profile searches the same phone format
@@ -1181,8 +1163,7 @@ public com.google.protobuf.ByteString getNumberBytes() {
      *
      *
      * 
-     * Optional.
-     * Phone number.
+     * Optional. Phone number.
      * Any phone formats are supported and only exact matches are performed on
      * searches. For example, if a phone number in profile is provided in the
      * format of "(xxx)xxx-xxxx", in profile searches the same phone format
@@ -1205,8 +1186,7 @@ public Builder setNumber(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * Phone number.
+     * Optional. Phone number.
      * Any phone formats are supported and only exact matches are performed on
      * searches. For example, if a phone number in profile is provided in the
      * format of "(xxx)xxx-xxxx", in profile searches the same phone format
@@ -1226,8 +1206,7 @@ public Builder clearNumber() {
      *
      *
      * 
-     * Optional.
-     * Phone number.
+     * Optional. Phone number.
      * Any phone formats are supported and only exact matches are performed on
      * searches. For example, if a phone number in profile is provided in the
      * format of "(xxx)xxx-xxxx", in profile searches the same phone format
@@ -1253,8 +1232,8 @@ public Builder setNumberBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * When this number is available. Any descriptive string is expected.
+     * Optional. When this number is available. Any descriptive string is
+     * expected.
      * Number of characters allowed is 100.
      * 
* @@ -1275,8 +1254,8 @@ public java.lang.String getWhenAvailable() { * * *
-     * Optional.
-     * When this number is available. Any descriptive string is expected.
+     * Optional. When this number is available. Any descriptive string is
+     * expected.
      * Number of characters allowed is 100.
      * 
* @@ -1297,8 +1276,8 @@ public com.google.protobuf.ByteString getWhenAvailableBytes() { * * *
-     * Optional.
-     * When this number is available. Any descriptive string is expected.
+     * Optional. When this number is available. Any descriptive string is
+     * expected.
      * Number of characters allowed is 100.
      * 
* @@ -1317,8 +1296,8 @@ public Builder setWhenAvailable(java.lang.String value) { * * *
-     * Optional.
-     * When this number is available. Any descriptive string is expected.
+     * Optional. When this number is available. Any descriptive string is
+     * expected.
      * Number of characters allowed is 100.
      * 
* @@ -1334,8 +1313,8 @@ public Builder clearWhenAvailable() { * * *
-     * Optional.
-     * When this number is available. Any descriptive string is expected.
+     * Optional. When this number is available. Any descriptive string is
+     * expected.
      * Number of characters allowed is 100.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PhoneOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PhoneOrBuilder.java index 958d7d253301..a68c5a253984 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PhoneOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PhoneOrBuilder.java @@ -12,8 +12,7 @@ public interface PhoneOrBuilder * * *
-   * Optional.
-   * The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -23,8 +22,7 @@ public interface PhoneOrBuilder * * *
-   * Optional.
-   * The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
+   * Optional. The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
    * 
* * .google.cloud.talent.v4beta1.ContactInfoUsage usage = 1; @@ -35,8 +33,7 @@ public interface PhoneOrBuilder * * *
-   * Optional.
-   * The phone type. For example, LANDLINE, MOBILE, FAX.
+   * Optional. The phone type. For example, LANDLINE, MOBILE, FAX.
    * 
* * .google.cloud.talent.v4beta1.Phone.PhoneType type = 2; @@ -46,8 +43,7 @@ public interface PhoneOrBuilder * * *
-   * Optional.
-   * The phone type. For example, LANDLINE, MOBILE, FAX.
+   * Optional. The phone type. For example, LANDLINE, MOBILE, FAX.
    * 
* * .google.cloud.talent.v4beta1.Phone.PhoneType type = 2; @@ -58,8 +54,7 @@ public interface PhoneOrBuilder * * *
-   * Optional.
-   * Phone number.
+   * Optional. Phone number.
    * Any phone formats are supported and only exact matches are performed on
    * searches. For example, if a phone number in profile is provided in the
    * format of "(xxx)xxx-xxxx", in profile searches the same phone format
@@ -74,8 +69,7 @@ public interface PhoneOrBuilder
    *
    *
    * 
-   * Optional.
-   * Phone number.
+   * Optional. Phone number.
    * Any phone formats are supported and only exact matches are performed on
    * searches. For example, if a phone number in profile is provided in the
    * format of "(xxx)xxx-xxxx", in profile searches the same phone format
@@ -91,8 +85,8 @@ public interface PhoneOrBuilder
    *
    *
    * 
-   * Optional.
-   * When this number is available. Any descriptive string is expected.
+   * Optional. When this number is available. Any descriptive string is
+   * expected.
    * Number of characters allowed is 100.
    * 
* @@ -103,8 +97,8 @@ public interface PhoneOrBuilder * * *
-   * Optional.
-   * When this number is available. Any descriptive string is expected.
+   * Optional. When this number is available. Any descriptive string is
+   * expected.
    * Number of characters allowed is 100.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Profile.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Profile.java index fc1816af717e..281ef23fee41 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Profile.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Profile.java @@ -8,9 +8,7 @@ * *
  * A resource that represents the profile for a job candidate (also referred to
- * as a "single-source profile"). A profile belongs to a
- * [Company][google.cloud.talent.v4beta1.Company], which is the
- * company/organization that owns the profile.
+ * as a "single-source profile").
  * 
* * Protobuf type {@code google.cloud.talent.v4beta1.Profile} @@ -521,8 +519,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-   * Optional.
-   * Profile's id in client system if available.
+   * Optional. Profile's id in client system if available.
    * The maximum number of bytes allowed is 100.
    * 
* @@ -543,8 +540,7 @@ public java.lang.String getExternalId() { * * *
-   * Optional.
-   * Profile's id in client system if available.
+   * Optional. Profile's id in client system if available.
    * The maximum number of bytes allowed is 100.
    * 
* @@ -568,8 +564,7 @@ public com.google.protobuf.ByteString getExternalIdBytes() { * * *
-   * Optional.
-   * The source description indicating where the profile is acquired.
+   * Optional. The source description indicating where the profile is acquired.
    * For example, if a candidate profile is acquired from a resume, the user can
    * input "resume" here to indicate the source.
    * The maximum number of bytes allowed is 100.
@@ -592,8 +587,7 @@ public java.lang.String getSource() {
    *
    *
    * 
-   * Optional.
-   * The source description indicating where the profile is acquired.
+   * Optional. The source description indicating where the profile is acquired.
    * For example, if a candidate profile is acquired from a resume, the user can
    * input "resume" here to indicate the source.
    * The maximum number of bytes allowed is 100.
@@ -619,8 +613,8 @@ public com.google.protobuf.ByteString getSourceBytes() {
    *
    *
    * 
-   * Optional.
-   * The URI set by clients that links to this profile's client-side copy.
+   * Optional. The URI set by clients that links to this profile's client-side
+   * copy.
    * The maximum number of bytes allowed is 4000.
    * 
* @@ -641,8 +635,8 @@ public java.lang.String getUri() { * * *
-   * Optional.
-   * The URI set by clients that links to this profile's client-side copy.
+   * Optional. The URI set by clients that links to this profile's client-side
+   * copy.
    * The maximum number of bytes allowed is 4000.
    * 
* @@ -666,11 +660,10 @@ public com.google.protobuf.ByteString getUriBytes() { * * *
-   * Optional.
-   * The cluster id of the profile to associate with other profile(s) for the
-   * same candidate.
+   * Optional. The cluster id of the profile to associate with other profile(s)
+   * for the same candidate.
    * This field should be generated by the customer. If a value is not provided,
-   * a random UUI is assigned to this field of the profile.
+   * a random UUID is assigned to this field of the profile.
    * This is used to link multiple profiles to the same candidate. For example,
    * a client has a candidate with two profiles, where one was created recently
    * and the other one was created 5 years ago. These two profiles may be very
@@ -697,11 +690,10 @@ public java.lang.String getGroupId() {
    *
    *
    * 
-   * Optional.
-   * The cluster id of the profile to associate with other profile(s) for the
-   * same candidate.
+   * Optional. The cluster id of the profile to associate with other profile(s)
+   * for the same candidate.
    * This field should be generated by the customer. If a value is not provided,
-   * a random UUI is assigned to this field of the profile.
+   * a random UUID is assigned to this field of the profile.
    * This is used to link multiple profiles to the same candidate. For example,
    * a client has a candidate with two profiles, where one was created recently
    * and the other one was created 5 years ago. These two profiles may be very
@@ -731,8 +723,7 @@ public com.google.protobuf.ByteString getGroupIdBytes() {
    *
    *
    * 
-   * Optional.
-   * Indicates the hirable status of the candidate.
+   * Optional. Indicates the hirable status of the candidate.
    * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -744,8 +735,7 @@ public boolean hasIsHirable() { * * *
-   * Optional.
-   * Indicates the hirable status of the candidate.
+   * Optional. Indicates the hirable status of the candidate.
    * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -757,8 +747,7 @@ public com.google.protobuf.BoolValue getIsHirable() { * * *
-   * Optional.
-   * Indicates the hirable status of the candidate.
+   * Optional. Indicates the hirable status of the candidate.
    * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -773,8 +762,7 @@ public com.google.protobuf.BoolValueOrBuilder getIsHirableOrBuilder() { * * *
-   * Optional.
-   * The timestamp when the profile was first created at this source.
+   * Optional. The timestamp when the profile was first created at this source.
    * 
* * .google.protobuf.Timestamp create_time = 7; @@ -786,8 +774,7 @@ public boolean hasCreateTime() { * * *
-   * Optional.
-   * The timestamp when the profile was first created at this source.
+   * Optional. The timestamp when the profile was first created at this source.
    * 
* * .google.protobuf.Timestamp create_time = 7; @@ -799,8 +786,7 @@ public com.google.protobuf.Timestamp getCreateTime() { * * *
-   * Optional.
-   * The timestamp when the profile was first created at this source.
+   * Optional. The timestamp when the profile was first created at this source.
    * 
* * .google.protobuf.Timestamp create_time = 7; @@ -815,8 +801,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() { * * *
-   * Optional.
-   * The timestamp when the profile was last updated at this source.
+   * Optional. The timestamp when the profile was last updated at this source.
    * 
* * .google.protobuf.Timestamp update_time = 8; @@ -828,8 +813,7 @@ public boolean hasUpdateTime() { * * *
-   * Optional.
-   * The timestamp when the profile was last updated at this source.
+   * Optional. The timestamp when the profile was last updated at this source.
    * 
* * .google.protobuf.Timestamp update_time = 8; @@ -841,8 +825,7 @@ public com.google.protobuf.Timestamp getUpdateTime() { * * *
-   * Optional.
-   * The timestamp when the profile was last updated at this source.
+   * Optional. The timestamp when the profile was last updated at this source.
    * 
* * .google.protobuf.Timestamp update_time = 8; @@ -857,8 +840,7 @@ public com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder() { * * *
-   * Optional.
-   * The resume representing this profile.
+   * Optional. The resume representing this profile.
    * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -870,8 +852,7 @@ public boolean hasResume() { * * *
-   * Optional.
-   * The resume representing this profile.
+   * Optional. The resume representing this profile.
    * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -883,8 +864,7 @@ public com.google.cloud.talent.v4beta1.Resume getResume() { * * *
-   * Optional.
-   * The resume representing this profile.
+   * Optional. The resume representing this profile.
    * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -899,8 +879,7 @@ public com.google.cloud.talent.v4beta1.ResumeOrBuilder getResumeOrBuilder() { * * *
-   * Optional.
-   * The names of the candidate this profile references.
+   * Optional. The names of the candidate this profile references.
    * Currently only one person name is supported.
    * 
* @@ -913,8 +892,7 @@ public java.util.List getPersonNames * * *
-   * Optional.
-   * The names of the candidate this profile references.
+   * Optional. The names of the candidate this profile references.
    * Currently only one person name is supported.
    * 
* @@ -928,8 +906,7 @@ public java.util.List getPersonNames * * *
-   * Optional.
-   * The names of the candidate this profile references.
+   * Optional. The names of the candidate this profile references.
    * Currently only one person name is supported.
    * 
* @@ -942,8 +919,7 @@ public int getPersonNamesCount() { * * *
-   * Optional.
-   * The names of the candidate this profile references.
+   * Optional. The names of the candidate this profile references.
    * Currently only one person name is supported.
    * 
* @@ -956,8 +932,7 @@ public com.google.cloud.talent.v4beta1.PersonName getPersonNames(int index) { * * *
-   * Optional.
-   * The names of the candidate this profile references.
+   * Optional. The names of the candidate this profile references.
    * Currently only one person name is supported.
    * 
* @@ -973,8 +948,7 @@ public com.google.cloud.talent.v4beta1.PersonNameOrBuilder getPersonNamesOrBuild * * *
-   * Optional.
-   * The candidate's postal addresses.
+   * Optional. The candidate's postal addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -986,8 +960,7 @@ public java.util.List getAddressesList( * * *
-   * Optional.
-   * The candidate's postal addresses.
+   * Optional. The candidate's postal addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -1000,8 +973,7 @@ public java.util.List getAddressesList( * * *
-   * Optional.
-   * The candidate's postal addresses.
+   * Optional. The candidate's postal addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -1013,8 +985,7 @@ public int getAddressesCount() { * * *
-   * Optional.
-   * The candidate's postal addresses.
+   * Optional. The candidate's postal addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -1026,8 +997,7 @@ public com.google.cloud.talent.v4beta1.Address getAddresses(int index) { * * *
-   * Optional.
-   * The candidate's postal addresses.
+   * Optional. The candidate's postal addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -1042,8 +1012,7 @@ public com.google.cloud.talent.v4beta1.AddressOrBuilder getAddressesOrBuilder(in * * *
-   * Optional.
-   * The candidate's email addresses.
+   * Optional. The candidate's email addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -1055,8 +1024,7 @@ public java.util.List getEmailAddressesLi * * *
-   * Optional.
-   * The candidate's email addresses.
+   * Optional. The candidate's email addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -1069,8 +1037,7 @@ public java.util.List getEmailAddressesLi * * *
-   * Optional.
-   * The candidate's email addresses.
+   * Optional. The candidate's email addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -1082,8 +1049,7 @@ public int getEmailAddressesCount() { * * *
-   * Optional.
-   * The candidate's email addresses.
+   * Optional. The candidate's email addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -1095,8 +1061,7 @@ public com.google.cloud.talent.v4beta1.Email getEmailAddresses(int index) { * * *
-   * Optional.
-   * The candidate's email addresses.
+   * Optional. The candidate's email addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -1111,8 +1076,7 @@ public com.google.cloud.talent.v4beta1.EmailOrBuilder getEmailAddressesOrBuilder * * *
-   * Optional.
-   * The candidate's phone number(s).
+   * Optional. The candidate's phone number(s).
    * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -1124,8 +1088,7 @@ public java.util.List getPhoneNumbersList * * *
-   * Optional.
-   * The candidate's phone number(s).
+   * Optional. The candidate's phone number(s).
    * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -1138,8 +1101,7 @@ public java.util.List getPhoneNumbersList * * *
-   * Optional.
-   * The candidate's phone number(s).
+   * Optional. The candidate's phone number(s).
    * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -1151,8 +1113,7 @@ public int getPhoneNumbersCount() { * * *
-   * Optional.
-   * The candidate's phone number(s).
+   * Optional. The candidate's phone number(s).
    * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -1164,8 +1125,7 @@ public com.google.cloud.talent.v4beta1.Phone getPhoneNumbers(int index) { * * *
-   * Optional.
-   * The candidate's phone number(s).
+   * Optional. The candidate's phone number(s).
    * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -1180,8 +1140,7 @@ public com.google.cloud.talent.v4beta1.PhoneOrBuilder getPhoneNumbersOrBuilder(i * * *
-   * Optional.
-   * The candidate's personal URIs.
+   * Optional. The candidate's personal URIs.
    * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -1193,8 +1152,7 @@ public java.util.List getPersonalUr * * *
-   * Optional.
-   * The candidate's personal URIs.
+   * Optional. The candidate's personal URIs.
    * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -1207,8 +1165,7 @@ public java.util.List getPersonalUr * * *
-   * Optional.
-   * The candidate's personal URIs.
+   * Optional. The candidate's personal URIs.
    * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -1220,8 +1177,7 @@ public int getPersonalUrisCount() { * * *
-   * Optional.
-   * The candidate's personal URIs.
+   * Optional. The candidate's personal URIs.
    * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -1233,8 +1189,7 @@ public com.google.cloud.talent.v4beta1.PersonalUri getPersonalUris(int index) { * * *
-   * Optional.
-   * The candidate's personal URIs.
+   * Optional. The candidate's personal URIs.
    * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -1250,8 +1205,7 @@ public com.google.cloud.talent.v4beta1.PersonalUriOrBuilder getPersonalUrisOrBui * * *
-   * Optional.
-   * Available contact information besides
+   * Optional. Available contact information besides
    * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
    * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
    * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -1270,8 +1224,7 @@ public com.google.cloud.talent.v4beta1.PersonalUriOrBuilder getPersonalUrisOrBui
    *
    *
    * 
-   * Optional.
-   * Available contact information besides
+   * Optional. Available contact information besides
    * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
    * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
    * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -1290,8 +1243,7 @@ public com.google.cloud.talent.v4beta1.PersonalUriOrBuilder getPersonalUrisOrBui
    *
    *
    * 
-   * Optional.
-   * Available contact information besides
+   * Optional. Available contact information besides
    * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
    * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
    * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -1309,8 +1261,7 @@ public int getAdditionalContactInfoCount() {
    *
    *
    * 
-   * Optional.
-   * Available contact information besides
+   * Optional. Available contact information besides
    * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
    * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
    * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -1328,8 +1279,7 @@ public com.google.cloud.talent.v4beta1.AdditionalContactInfo getAdditionalContac
    *
    *
    * 
-   * Optional.
-   * Available contact information besides
+   * Optional. Available contact information besides
    * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
    * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
    * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -1351,10 +1301,9 @@ public com.google.cloud.talent.v4beta1.AdditionalContactInfo getAdditionalContac
    *
    *
    * 
-   * Optional.
-   * The employment history records of the candidate. It's highly recommended
-   * to input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The employment history records of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the employment records.
    * * List different employment types separately, no matter how minor the
    * change is.
@@ -1376,10 +1325,9 @@ public com.google.cloud.talent.v4beta1.AdditionalContactInfo getAdditionalContac
    *
    *
    * 
-   * Optional.
-   * The employment history records of the candidate. It's highly recommended
-   * to input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The employment history records of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the employment records.
    * * List different employment types separately, no matter how minor the
    * change is.
@@ -1401,10 +1349,9 @@ public com.google.cloud.talent.v4beta1.AdditionalContactInfo getAdditionalContac
    *
    *
    * 
-   * Optional.
-   * The employment history records of the candidate. It's highly recommended
-   * to input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The employment history records of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the employment records.
    * * List different employment types separately, no matter how minor the
    * change is.
@@ -1425,10 +1372,9 @@ public int getEmploymentRecordsCount() {
    *
    *
    * 
-   * Optional.
-   * The employment history records of the candidate. It's highly recommended
-   * to input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The employment history records of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the employment records.
    * * List different employment types separately, no matter how minor the
    * change is.
@@ -1449,10 +1395,9 @@ public com.google.cloud.talent.v4beta1.EmploymentRecord getEmploymentRecords(int
    *
    *
    * 
-   * Optional.
-   * The employment history records of the candidate. It's highly recommended
-   * to input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The employment history records of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the employment records.
    * * List different employment types separately, no matter how minor the
    * change is.
@@ -1477,10 +1422,9 @@ public com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRe
    *
    *
    * 
-   * Optional.
-   * The education history record of the candidate. It's highly recommended to
-   * input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The education history record of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the education records.
    * * List each education type separately, no matter how minor the change is.
    * For example, the profile contains the education experience from the same
@@ -1500,10 +1444,9 @@ public java.util.List getEducat
    *
    *
    * 
-   * Optional.
-   * The education history record of the candidate. It's highly recommended to
-   * input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The education history record of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the education records.
    * * List each education type separately, no matter how minor the change is.
    * For example, the profile contains the education experience from the same
@@ -1524,10 +1467,9 @@ public java.util.List getEducat
    *
    *
    * 
-   * Optional.
-   * The education history record of the candidate. It's highly recommended to
-   * input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The education history record of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the education records.
    * * List each education type separately, no matter how minor the change is.
    * For example, the profile contains the education experience from the same
@@ -1547,10 +1489,9 @@ public int getEducationRecordsCount() {
    *
    *
    * 
-   * Optional.
-   * The education history record of the candidate. It's highly recommended to
-   * input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The education history record of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the education records.
    * * List each education type separately, no matter how minor the change is.
    * For example, the profile contains the education experience from the same
@@ -1570,10 +1511,9 @@ public com.google.cloud.talent.v4beta1.EducationRecord getEducationRecords(int i
    *
    *
    * 
-   * Optional.
-   * The education history record of the candidate. It's highly recommended to
-   * input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The education history record of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the education records.
    * * List each education type separately, no matter how minor the change is.
    * For example, the profile contains the education experience from the same
@@ -1597,9 +1537,8 @@ public com.google.cloud.talent.v4beta1.EducationRecordOrBuilder getEducationReco
    *
    *
    * 
-   * Optional.
-   * The skill set of the candidate. It's highly recommended to provide as
-   * much information as possible to help improve the search quality.
+   * Optional. The skill set of the candidate. It's highly recommended to
+   * provide as much information as possible to help improve the search quality.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -1611,9 +1550,8 @@ public java.util.List getSkillsList() { * * *
-   * Optional.
-   * The skill set of the candidate. It's highly recommended to provide as
-   * much information as possible to help improve the search quality.
+   * Optional. The skill set of the candidate. It's highly recommended to
+   * provide as much information as possible to help improve the search quality.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -1626,9 +1564,8 @@ public java.util.List getSkillsList() { * * *
-   * Optional.
-   * The skill set of the candidate. It's highly recommended to provide as
-   * much information as possible to help improve the search quality.
+   * Optional. The skill set of the candidate. It's highly recommended to
+   * provide as much information as possible to help improve the search quality.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -1640,9 +1577,8 @@ public int getSkillsCount() { * * *
-   * Optional.
-   * The skill set of the candidate. It's highly recommended to provide as
-   * much information as possible to help improve the search quality.
+   * Optional. The skill set of the candidate. It's highly recommended to
+   * provide as much information as possible to help improve the search quality.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -1654,9 +1590,8 @@ public com.google.cloud.talent.v4beta1.Skill getSkills(int index) { * * *
-   * Optional.
-   * The skill set of the candidate. It's highly recommended to provide as
-   * much information as possible to help improve the search quality.
+   * Optional. The skill set of the candidate. It's highly recommended to
+   * provide as much information as possible to help improve the search quality.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -1671,10 +1606,9 @@ public com.google.cloud.talent.v4beta1.SkillOrBuilder getSkillsOrBuilder(int ind * * *
-   * Optional.
-   * The individual or collaborative activities which the candidate has
-   * participated in, for example, open-source projects, class assignments that
-   * aren't listed in
+   * Optional. The individual or collaborative activities which the candidate
+   * has participated in, for example, open-source projects, class assignments
+   * that aren't listed in
    * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
    * 
* @@ -1687,10 +1621,9 @@ public java.util.List getActivitiesLis * * *
-   * Optional.
-   * The individual or collaborative activities which the candidate has
-   * participated in, for example, open-source projects, class assignments that
-   * aren't listed in
+   * Optional. The individual or collaborative activities which the candidate
+   * has participated in, for example, open-source projects, class assignments
+   * that aren't listed in
    * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
    * 
* @@ -1704,10 +1637,9 @@ public java.util.List getActivitiesLis * * *
-   * Optional.
-   * The individual or collaborative activities which the candidate has
-   * participated in, for example, open-source projects, class assignments that
-   * aren't listed in
+   * Optional. The individual or collaborative activities which the candidate
+   * has participated in, for example, open-source projects, class assignments
+   * that aren't listed in
    * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
    * 
* @@ -1720,10 +1652,9 @@ public int getActivitiesCount() { * * *
-   * Optional.
-   * The individual or collaborative activities which the candidate has
-   * participated in, for example, open-source projects, class assignments that
-   * aren't listed in
+   * Optional. The individual or collaborative activities which the candidate
+   * has participated in, for example, open-source projects, class assignments
+   * that aren't listed in
    * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
    * 
* @@ -1736,10 +1667,9 @@ public com.google.cloud.talent.v4beta1.Activity getActivities(int index) { * * *
-   * Optional.
-   * The individual or collaborative activities which the candidate has
-   * participated in, for example, open-source projects, class assignments that
-   * aren't listed in
+   * Optional. The individual or collaborative activities which the candidate
+   * has participated in, for example, open-source projects, class assignments
+   * that aren't listed in
    * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
    * 
* @@ -1755,8 +1685,7 @@ public com.google.cloud.talent.v4beta1.ActivityOrBuilder getActivitiesOrBuilder( * * *
-   * Optional.
-   * The publications published by the candidate.
+   * Optional. The publications published by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -1768,8 +1697,7 @@ public java.util.List getPublicatio * * *
-   * Optional.
-   * The publications published by the candidate.
+   * Optional. The publications published by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -1782,8 +1710,7 @@ public java.util.List getPublicatio * * *
-   * Optional.
-   * The publications published by the candidate.
+   * Optional. The publications published by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -1795,8 +1722,7 @@ public int getPublicationsCount() { * * *
-   * Optional.
-   * The publications published by the candidate.
+   * Optional. The publications published by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -1808,8 +1734,7 @@ public com.google.cloud.talent.v4beta1.Publication getPublications(int index) { * * *
-   * Optional.
-   * The publications published by the candidate.
+   * Optional. The publications published by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -1824,8 +1749,7 @@ public com.google.cloud.talent.v4beta1.PublicationOrBuilder getPublicationsOrBui * * *
-   * Optional.
-   * The patents acquired by the candidate.
+   * Optional. The patents acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -1837,8 +1761,7 @@ public java.util.List getPatentsList() { * * *
-   * Optional.
-   * The patents acquired by the candidate.
+   * Optional. The patents acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -1851,8 +1774,7 @@ public java.util.List getPatentsList() { * * *
-   * Optional.
-   * The patents acquired by the candidate.
+   * Optional. The patents acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -1864,8 +1786,7 @@ public int getPatentsCount() { * * *
-   * Optional.
-   * The patents acquired by the candidate.
+   * Optional. The patents acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -1877,8 +1798,7 @@ public com.google.cloud.talent.v4beta1.Patent getPatents(int index) { * * *
-   * Optional.
-   * The patents acquired by the candidate.
+   * Optional. The patents acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -1893,8 +1813,7 @@ public com.google.cloud.talent.v4beta1.PatentOrBuilder getPatentsOrBuilder(int i * * *
-   * Optional.
-   * The certifications acquired by the candidate.
+   * Optional. The certifications acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -1906,8 +1825,7 @@ public java.util.List getCertific * * *
-   * Optional.
-   * The certifications acquired by the candidate.
+   * Optional. The certifications acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -1920,8 +1838,7 @@ public java.util.List getCertific * * *
-   * Optional.
-   * The certifications acquired by the candidate.
+   * Optional. The certifications acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -1933,8 +1850,7 @@ public int getCertificationsCount() { * * *
-   * Optional.
-   * The certifications acquired by the candidate.
+   * Optional. The certifications acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -1946,8 +1862,7 @@ public com.google.cloud.talent.v4beta1.Certification getCertifications(int index * * *
-   * Optional.
-   * The certifications acquired by the candidate.
+   * Optional. The certifications acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -2097,10 +2012,9 @@ public int getCustomAttributesCount() { * * *
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom profile
-   * attributes that aren't covered by the provided structured fields. See
-   * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * profile attributes that aren't covered by the provided structured fields.
+   * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
    * details.
    * At most 100 filterable and at most 100 unfilterable keys are supported. If
    * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -2135,10 +2049,9 @@ public boolean containsCustomAttributes(java.lang.String key) {
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom profile
-   * attributes that aren't covered by the provided structured fields. See
-   * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * profile attributes that aren't covered by the provided structured fields.
+   * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
    * details.
    * At most 100 filterable and at most 100 unfilterable keys are supported. If
    * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -2165,10 +2078,9 @@ public boolean containsCustomAttributes(java.lang.String key) {
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom profile
-   * attributes that aren't covered by the provided structured fields. See
-   * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * profile attributes that aren't covered by the provided structured fields.
+   * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
    * details.
    * At most 100 filterable and at most 100 unfilterable keys are supported. If
    * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -2200,10 +2112,9 @@ public com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefa
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom profile
-   * attributes that aren't covered by the provided structured fields. See
-   * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * profile attributes that aren't covered by the provided structured fields.
+   * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
    * details.
    * At most 100 filterable and at most 100 unfilterable keys are supported. If
    * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -2241,7 +2152,9 @@ public com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrThro
    *
    *
    * 
-   * Output only. Indicates if the profile is fully processed and searchable.
+   * Output only. Indicates if a summarized profile was created as part of the
+   * profile creation API call. This flag does not indicate whether a profile is
+   * searchable or not.
    * 
* * bool processed = 27; @@ -2768,9 +2681,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build * *
    * A resource that represents the profile for a job candidate (also referred to
-   * as a "single-source profile"). A profile belongs to a
-   * [Company][google.cloud.talent.v4beta1.Company], which is the
-   * company/organization that owns the profile.
+   * as a "single-source profile").
    * 
* * Protobuf type {@code google.cloud.talent.v4beta1.Profile} @@ -3762,8 +3673,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Profile's id in client system if available.
+     * Optional. Profile's id in client system if available.
      * The maximum number of bytes allowed is 100.
      * 
* @@ -3784,8 +3694,7 @@ public java.lang.String getExternalId() { * * *
-     * Optional.
-     * Profile's id in client system if available.
+     * Optional. Profile's id in client system if available.
      * The maximum number of bytes allowed is 100.
      * 
* @@ -3806,8 +3715,7 @@ public com.google.protobuf.ByteString getExternalIdBytes() { * * *
-     * Optional.
-     * Profile's id in client system if available.
+     * Optional. Profile's id in client system if available.
      * The maximum number of bytes allowed is 100.
      * 
* @@ -3826,8 +3734,7 @@ public Builder setExternalId(java.lang.String value) { * * *
-     * Optional.
-     * Profile's id in client system if available.
+     * Optional. Profile's id in client system if available.
      * The maximum number of bytes allowed is 100.
      * 
* @@ -3843,8 +3750,7 @@ public Builder clearExternalId() { * * *
-     * Optional.
-     * Profile's id in client system if available.
+     * Optional. Profile's id in client system if available.
      * The maximum number of bytes allowed is 100.
      * 
* @@ -3866,8 +3772,7 @@ public Builder setExternalIdBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The source description indicating where the profile is acquired.
+     * Optional. The source description indicating where the profile is acquired.
      * For example, if a candidate profile is acquired from a resume, the user can
      * input "resume" here to indicate the source.
      * The maximum number of bytes allowed is 100.
@@ -3890,8 +3795,7 @@ public java.lang.String getSource() {
      *
      *
      * 
-     * Optional.
-     * The source description indicating where the profile is acquired.
+     * Optional. The source description indicating where the profile is acquired.
      * For example, if a candidate profile is acquired from a resume, the user can
      * input "resume" here to indicate the source.
      * The maximum number of bytes allowed is 100.
@@ -3914,8 +3818,7 @@ public com.google.protobuf.ByteString getSourceBytes() {
      *
      *
      * 
-     * Optional.
-     * The source description indicating where the profile is acquired.
+     * Optional. The source description indicating where the profile is acquired.
      * For example, if a candidate profile is acquired from a resume, the user can
      * input "resume" here to indicate the source.
      * The maximum number of bytes allowed is 100.
@@ -3936,8 +3839,7 @@ public Builder setSource(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The source description indicating where the profile is acquired.
+     * Optional. The source description indicating where the profile is acquired.
      * For example, if a candidate profile is acquired from a resume, the user can
      * input "resume" here to indicate the source.
      * The maximum number of bytes allowed is 100.
@@ -3955,8 +3857,7 @@ public Builder clearSource() {
      *
      *
      * 
-     * Optional.
-     * The source description indicating where the profile is acquired.
+     * Optional. The source description indicating where the profile is acquired.
      * For example, if a candidate profile is acquired from a resume, the user can
      * input "resume" here to indicate the source.
      * The maximum number of bytes allowed is 100.
@@ -3980,8 +3881,8 @@ public Builder setSourceBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * The URI set by clients that links to this profile's client-side copy.
+     * Optional. The URI set by clients that links to this profile's client-side
+     * copy.
      * The maximum number of bytes allowed is 4000.
      * 
* @@ -4002,8 +3903,8 @@ public java.lang.String getUri() { * * *
-     * Optional.
-     * The URI set by clients that links to this profile's client-side copy.
+     * Optional. The URI set by clients that links to this profile's client-side
+     * copy.
      * The maximum number of bytes allowed is 4000.
      * 
* @@ -4024,8 +3925,8 @@ public com.google.protobuf.ByteString getUriBytes() { * * *
-     * Optional.
-     * The URI set by clients that links to this profile's client-side copy.
+     * Optional. The URI set by clients that links to this profile's client-side
+     * copy.
      * The maximum number of bytes allowed is 4000.
      * 
* @@ -4044,8 +3945,8 @@ public Builder setUri(java.lang.String value) { * * *
-     * Optional.
-     * The URI set by clients that links to this profile's client-side copy.
+     * Optional. The URI set by clients that links to this profile's client-side
+     * copy.
      * The maximum number of bytes allowed is 4000.
      * 
* @@ -4061,8 +3962,8 @@ public Builder clearUri() { * * *
-     * Optional.
-     * The URI set by clients that links to this profile's client-side copy.
+     * Optional. The URI set by clients that links to this profile's client-side
+     * copy.
      * The maximum number of bytes allowed is 4000.
      * 
* @@ -4084,11 +3985,10 @@ public Builder setUriBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The cluster id of the profile to associate with other profile(s) for the
-     * same candidate.
+     * Optional. The cluster id of the profile to associate with other profile(s)
+     * for the same candidate.
      * This field should be generated by the customer. If a value is not provided,
-     * a random UUI is assigned to this field of the profile.
+     * a random UUID is assigned to this field of the profile.
      * This is used to link multiple profiles to the same candidate. For example,
      * a client has a candidate with two profiles, where one was created recently
      * and the other one was created 5 years ago. These two profiles may be very
@@ -4115,11 +4015,10 @@ public java.lang.String getGroupId() {
      *
      *
      * 
-     * Optional.
-     * The cluster id of the profile to associate with other profile(s) for the
-     * same candidate.
+     * Optional. The cluster id of the profile to associate with other profile(s)
+     * for the same candidate.
      * This field should be generated by the customer. If a value is not provided,
-     * a random UUI is assigned to this field of the profile.
+     * a random UUID is assigned to this field of the profile.
      * This is used to link multiple profiles to the same candidate. For example,
      * a client has a candidate with two profiles, where one was created recently
      * and the other one was created 5 years ago. These two profiles may be very
@@ -4146,11 +4045,10 @@ public com.google.protobuf.ByteString getGroupIdBytes() {
      *
      *
      * 
-     * Optional.
-     * The cluster id of the profile to associate with other profile(s) for the
-     * same candidate.
+     * Optional. The cluster id of the profile to associate with other profile(s)
+     * for the same candidate.
      * This field should be generated by the customer. If a value is not provided,
-     * a random UUI is assigned to this field of the profile.
+     * a random UUID is assigned to this field of the profile.
      * This is used to link multiple profiles to the same candidate. For example,
      * a client has a candidate with two profiles, where one was created recently
      * and the other one was created 5 years ago. These two profiles may be very
@@ -4175,11 +4073,10 @@ public Builder setGroupId(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The cluster id of the profile to associate with other profile(s) for the
-     * same candidate.
+     * Optional. The cluster id of the profile to associate with other profile(s)
+     * for the same candidate.
      * This field should be generated by the customer. If a value is not provided,
-     * a random UUI is assigned to this field of the profile.
+     * a random UUID is assigned to this field of the profile.
      * This is used to link multiple profiles to the same candidate. For example,
      * a client has a candidate with two profiles, where one was created recently
      * and the other one was created 5 years ago. These two profiles may be very
@@ -4201,11 +4098,10 @@ public Builder clearGroupId() {
      *
      *
      * 
-     * Optional.
-     * The cluster id of the profile to associate with other profile(s) for the
-     * same candidate.
+     * Optional. The cluster id of the profile to associate with other profile(s)
+     * for the same candidate.
      * This field should be generated by the customer. If a value is not provided,
-     * a random UUI is assigned to this field of the profile.
+     * a random UUID is assigned to this field of the profile.
      * This is used to link multiple profiles to the same candidate. For example,
      * a client has a candidate with two profiles, where one was created recently
      * and the other one was created 5 years ago. These two profiles may be very
@@ -4238,8 +4134,7 @@ public Builder setGroupIdBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * Indicates the hirable status of the candidate.
+     * Optional. Indicates the hirable status of the candidate.
      * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -4251,8 +4146,7 @@ public boolean hasIsHirable() { * * *
-     * Optional.
-     * Indicates the hirable status of the candidate.
+     * Optional. Indicates the hirable status of the candidate.
      * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -4268,8 +4162,7 @@ public com.google.protobuf.BoolValue getIsHirable() { * * *
-     * Optional.
-     * Indicates the hirable status of the candidate.
+     * Optional. Indicates the hirable status of the candidate.
      * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -4291,8 +4184,7 @@ public Builder setIsHirable(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * Indicates the hirable status of the candidate.
+     * Optional. Indicates the hirable status of the candidate.
      * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -4311,8 +4203,7 @@ public Builder setIsHirable(com.google.protobuf.BoolValue.Builder builderForValu * * *
-     * Optional.
-     * Indicates the hirable status of the candidate.
+     * Optional. Indicates the hirable status of the candidate.
      * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -4336,8 +4227,7 @@ public Builder mergeIsHirable(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * Indicates the hirable status of the candidate.
+     * Optional. Indicates the hirable status of the candidate.
      * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -4357,8 +4247,7 @@ public Builder clearIsHirable() { * * *
-     * Optional.
-     * Indicates the hirable status of the candidate.
+     * Optional. Indicates the hirable status of the candidate.
      * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -4372,8 +4261,7 @@ public com.google.protobuf.BoolValue.Builder getIsHirableBuilder() { * * *
-     * Optional.
-     * Indicates the hirable status of the candidate.
+     * Optional. Indicates the hirable status of the candidate.
      * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -4389,8 +4277,7 @@ public com.google.protobuf.BoolValueOrBuilder getIsHirableOrBuilder() { * * *
-     * Optional.
-     * Indicates the hirable status of the candidate.
+     * Optional. Indicates the hirable status of the candidate.
      * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -4422,8 +4309,7 @@ public com.google.protobuf.BoolValueOrBuilder getIsHirableOrBuilder() { * * *
-     * Optional.
-     * The timestamp when the profile was first created at this source.
+     * Optional. The timestamp when the profile was first created at this source.
      * 
* * .google.protobuf.Timestamp create_time = 7; @@ -4435,8 +4321,7 @@ public boolean hasCreateTime() { * * *
-     * Optional.
-     * The timestamp when the profile was first created at this source.
+     * Optional. The timestamp when the profile was first created at this source.
      * 
* * .google.protobuf.Timestamp create_time = 7; @@ -4454,8 +4339,7 @@ public com.google.protobuf.Timestamp getCreateTime() { * * *
-     * Optional.
-     * The timestamp when the profile was first created at this source.
+     * Optional. The timestamp when the profile was first created at this source.
      * 
* * .google.protobuf.Timestamp create_time = 7; @@ -4477,8 +4361,7 @@ public Builder setCreateTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The timestamp when the profile was first created at this source.
+     * Optional. The timestamp when the profile was first created at this source.
      * 
* * .google.protobuf.Timestamp create_time = 7; @@ -4497,8 +4380,7 @@ public Builder setCreateTime(com.google.protobuf.Timestamp.Builder builderForVal * * *
-     * Optional.
-     * The timestamp when the profile was first created at this source.
+     * Optional. The timestamp when the profile was first created at this source.
      * 
* * .google.protobuf.Timestamp create_time = 7; @@ -4522,8 +4404,7 @@ public Builder mergeCreateTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The timestamp when the profile was first created at this source.
+     * Optional. The timestamp when the profile was first created at this source.
      * 
* * .google.protobuf.Timestamp create_time = 7; @@ -4543,8 +4424,7 @@ public Builder clearCreateTime() { * * *
-     * Optional.
-     * The timestamp when the profile was first created at this source.
+     * Optional. The timestamp when the profile was first created at this source.
      * 
* * .google.protobuf.Timestamp create_time = 7; @@ -4558,8 +4438,7 @@ public com.google.protobuf.Timestamp.Builder getCreateTimeBuilder() { * * *
-     * Optional.
-     * The timestamp when the profile was first created at this source.
+     * Optional. The timestamp when the profile was first created at this source.
      * 
* * .google.protobuf.Timestamp create_time = 7; @@ -4577,8 +4456,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() { * * *
-     * Optional.
-     * The timestamp when the profile was first created at this source.
+     * Optional. The timestamp when the profile was first created at this source.
      * 
* * .google.protobuf.Timestamp create_time = 7; @@ -4610,8 +4488,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() { * * *
-     * Optional.
-     * The timestamp when the profile was last updated at this source.
+     * Optional. The timestamp when the profile was last updated at this source.
      * 
* * .google.protobuf.Timestamp update_time = 8; @@ -4623,8 +4500,7 @@ public boolean hasUpdateTime() { * * *
-     * Optional.
-     * The timestamp when the profile was last updated at this source.
+     * Optional. The timestamp when the profile was last updated at this source.
      * 
* * .google.protobuf.Timestamp update_time = 8; @@ -4642,8 +4518,7 @@ public com.google.protobuf.Timestamp getUpdateTime() { * * *
-     * Optional.
-     * The timestamp when the profile was last updated at this source.
+     * Optional. The timestamp when the profile was last updated at this source.
      * 
* * .google.protobuf.Timestamp update_time = 8; @@ -4665,8 +4540,7 @@ public Builder setUpdateTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The timestamp when the profile was last updated at this source.
+     * Optional. The timestamp when the profile was last updated at this source.
      * 
* * .google.protobuf.Timestamp update_time = 8; @@ -4685,8 +4559,7 @@ public Builder setUpdateTime(com.google.protobuf.Timestamp.Builder builderForVal * * *
-     * Optional.
-     * The timestamp when the profile was last updated at this source.
+     * Optional. The timestamp when the profile was last updated at this source.
      * 
* * .google.protobuf.Timestamp update_time = 8; @@ -4710,8 +4583,7 @@ public Builder mergeUpdateTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * The timestamp when the profile was last updated at this source.
+     * Optional. The timestamp when the profile was last updated at this source.
      * 
* * .google.protobuf.Timestamp update_time = 8; @@ -4731,8 +4603,7 @@ public Builder clearUpdateTime() { * * *
-     * Optional.
-     * The timestamp when the profile was last updated at this source.
+     * Optional. The timestamp when the profile was last updated at this source.
      * 
* * .google.protobuf.Timestamp update_time = 8; @@ -4746,8 +4617,7 @@ public com.google.protobuf.Timestamp.Builder getUpdateTimeBuilder() { * * *
-     * Optional.
-     * The timestamp when the profile was last updated at this source.
+     * Optional. The timestamp when the profile was last updated at this source.
      * 
* * .google.protobuf.Timestamp update_time = 8; @@ -4765,8 +4635,7 @@ public com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder() { * * *
-     * Optional.
-     * The timestamp when the profile was last updated at this source.
+     * Optional. The timestamp when the profile was last updated at this source.
      * 
* * .google.protobuf.Timestamp update_time = 8; @@ -4798,8 +4667,7 @@ public com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder() { * * *
-     * Optional.
-     * The resume representing this profile.
+     * Optional. The resume representing this profile.
      * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -4811,8 +4679,7 @@ public boolean hasResume() { * * *
-     * Optional.
-     * The resume representing this profile.
+     * Optional. The resume representing this profile.
      * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -4830,8 +4697,7 @@ public com.google.cloud.talent.v4beta1.Resume getResume() { * * *
-     * Optional.
-     * The resume representing this profile.
+     * Optional. The resume representing this profile.
      * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -4853,8 +4719,7 @@ public Builder setResume(com.google.cloud.talent.v4beta1.Resume value) { * * *
-     * Optional.
-     * The resume representing this profile.
+     * Optional. The resume representing this profile.
      * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -4873,8 +4738,7 @@ public Builder setResume(com.google.cloud.talent.v4beta1.Resume.Builder builderF * * *
-     * Optional.
-     * The resume representing this profile.
+     * Optional. The resume representing this profile.
      * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -4900,8 +4764,7 @@ public Builder mergeResume(com.google.cloud.talent.v4beta1.Resume value) { * * *
-     * Optional.
-     * The resume representing this profile.
+     * Optional. The resume representing this profile.
      * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -4921,8 +4784,7 @@ public Builder clearResume() { * * *
-     * Optional.
-     * The resume representing this profile.
+     * Optional. The resume representing this profile.
      * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -4936,8 +4798,7 @@ public com.google.cloud.talent.v4beta1.Resume.Builder getResumeBuilder() { * * *
-     * Optional.
-     * The resume representing this profile.
+     * Optional. The resume representing this profile.
      * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -4955,8 +4816,7 @@ public com.google.cloud.talent.v4beta1.ResumeOrBuilder getResumeOrBuilder() { * * *
-     * Optional.
-     * The resume representing this profile.
+     * Optional. The resume representing this profile.
      * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -4999,8 +4859,7 @@ private void ensurePersonNamesIsMutable() { * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5017,8 +4876,7 @@ public java.util.List getPersonNames * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5035,8 +4893,7 @@ public int getPersonNamesCount() { * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5053,8 +4910,7 @@ public com.google.cloud.talent.v4beta1.PersonName getPersonNames(int index) { * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5077,8 +4933,7 @@ public Builder setPersonNames(int index, com.google.cloud.talent.v4beta1.PersonN * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5099,8 +4954,7 @@ public Builder setPersonNames( * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5123,8 +4977,7 @@ public Builder addPersonNames(com.google.cloud.talent.v4beta1.PersonName value) * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5147,8 +5000,7 @@ public Builder addPersonNames(int index, com.google.cloud.talent.v4beta1.PersonN * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5169,8 +5021,7 @@ public Builder addPersonNames( * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5191,8 +5042,7 @@ public Builder addPersonNames( * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5213,8 +5063,7 @@ public Builder addAllPersonNames( * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5234,8 +5083,7 @@ public Builder clearPersonNames() { * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5255,8 +5103,7 @@ public Builder removePersonNames(int index) { * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5269,8 +5116,7 @@ public com.google.cloud.talent.v4beta1.PersonName.Builder getPersonNamesBuilder( * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5287,8 +5133,7 @@ public com.google.cloud.talent.v4beta1.PersonNameOrBuilder getPersonNamesOrBuild * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5306,8 +5151,7 @@ public com.google.cloud.talent.v4beta1.PersonNameOrBuilder getPersonNamesOrBuild * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5321,8 +5165,7 @@ public com.google.cloud.talent.v4beta1.PersonName.Builder addPersonNamesBuilder( * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5336,8 +5179,7 @@ public com.google.cloud.talent.v4beta1.PersonName.Builder addPersonNamesBuilder( * * *
-     * Optional.
-     * The names of the candidate this profile references.
+     * Optional. The names of the candidate this profile references.
      * Currently only one person name is supported.
      * 
* @@ -5385,8 +5227,7 @@ private void ensureAddressesIsMutable() { * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5402,8 +5243,7 @@ public java.util.List getAddressesList( * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5419,8 +5259,7 @@ public int getAddressesCount() { * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5436,8 +5275,7 @@ public com.google.cloud.talent.v4beta1.Address getAddresses(int index) { * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5459,8 +5297,7 @@ public Builder setAddresses(int index, com.google.cloud.talent.v4beta1.Address v * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5480,8 +5317,7 @@ public Builder setAddresses( * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5503,8 +5339,7 @@ public Builder addAddresses(com.google.cloud.talent.v4beta1.Address value) { * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5526,8 +5361,7 @@ public Builder addAddresses(int index, com.google.cloud.talent.v4beta1.Address v * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5546,8 +5380,7 @@ public Builder addAddresses(com.google.cloud.talent.v4beta1.Address.Builder buil * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5567,8 +5400,7 @@ public Builder addAddresses( * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5588,8 +5420,7 @@ public Builder addAllAddresses( * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5608,8 +5439,7 @@ public Builder clearAddresses() { * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5628,8 +5458,7 @@ public Builder removeAddresses(int index) { * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5641,8 +5470,7 @@ public com.google.cloud.talent.v4beta1.Address.Builder getAddressesBuilder(int i * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5658,8 +5486,7 @@ public com.google.cloud.talent.v4beta1.AddressOrBuilder getAddressesOrBuilder(in * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5676,8 +5503,7 @@ public com.google.cloud.talent.v4beta1.AddressOrBuilder getAddressesOrBuilder(in * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5690,8 +5516,7 @@ public com.google.cloud.talent.v4beta1.Address.Builder addAddressesBuilder() { * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5704,8 +5529,7 @@ public com.google.cloud.talent.v4beta1.Address.Builder addAddressesBuilder(int i * * *
-     * Optional.
-     * The candidate's postal addresses.
+     * Optional. The candidate's postal addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -5753,8 +5577,7 @@ private void ensureEmailAddressesIsMutable() { * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5770,8 +5593,7 @@ public java.util.List getEmailAddressesLi * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5787,8 +5609,7 @@ public int getEmailAddressesCount() { * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5804,8 +5625,7 @@ public com.google.cloud.talent.v4beta1.Email getEmailAddresses(int index) { * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5827,8 +5647,7 @@ public Builder setEmailAddresses(int index, com.google.cloud.talent.v4beta1.Emai * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5848,8 +5667,7 @@ public Builder setEmailAddresses( * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5871,8 +5689,7 @@ public Builder addEmailAddresses(com.google.cloud.talent.v4beta1.Email value) { * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5894,8 +5711,7 @@ public Builder addEmailAddresses(int index, com.google.cloud.talent.v4beta1.Emai * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5915,8 +5731,7 @@ public Builder addEmailAddresses( * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5936,8 +5751,7 @@ public Builder addEmailAddresses( * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5957,8 +5771,7 @@ public Builder addAllEmailAddresses( * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5977,8 +5790,7 @@ public Builder clearEmailAddresses() { * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -5997,8 +5809,7 @@ public Builder removeEmailAddresses(int index) { * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -6010,8 +5821,7 @@ public com.google.cloud.talent.v4beta1.Email.Builder getEmailAddressesBuilder(in * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -6027,8 +5837,7 @@ public com.google.cloud.talent.v4beta1.EmailOrBuilder getEmailAddressesOrBuilder * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -6045,8 +5854,7 @@ public com.google.cloud.talent.v4beta1.EmailOrBuilder getEmailAddressesOrBuilder * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -6059,8 +5867,7 @@ public com.google.cloud.talent.v4beta1.Email.Builder addEmailAddressesBuilder() * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -6073,8 +5880,7 @@ public com.google.cloud.talent.v4beta1.Email.Builder addEmailAddressesBuilder(in * * *
-     * Optional.
-     * The candidate's email addresses.
+     * Optional. The candidate's email addresses.
      * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -6125,8 +5931,7 @@ private void ensurePhoneNumbersIsMutable() { * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6142,8 +5947,7 @@ public java.util.List getPhoneNumbersList * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6159,8 +5963,7 @@ public int getPhoneNumbersCount() { * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6176,8 +5979,7 @@ public com.google.cloud.talent.v4beta1.Phone getPhoneNumbers(int index) { * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6199,8 +6001,7 @@ public Builder setPhoneNumbers(int index, com.google.cloud.talent.v4beta1.Phone * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6220,8 +6021,7 @@ public Builder setPhoneNumbers( * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6243,8 +6043,7 @@ public Builder addPhoneNumbers(com.google.cloud.talent.v4beta1.Phone value) { * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6266,8 +6065,7 @@ public Builder addPhoneNumbers(int index, com.google.cloud.talent.v4beta1.Phone * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6286,8 +6084,7 @@ public Builder addPhoneNumbers(com.google.cloud.talent.v4beta1.Phone.Builder bui * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6307,8 +6104,7 @@ public Builder addPhoneNumbers( * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6328,8 +6124,7 @@ public Builder addAllPhoneNumbers( * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6348,8 +6143,7 @@ public Builder clearPhoneNumbers() { * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6368,8 +6162,7 @@ public Builder removePhoneNumbers(int index) { * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6381,8 +6174,7 @@ public com.google.cloud.talent.v4beta1.Phone.Builder getPhoneNumbersBuilder(int * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6398,8 +6190,7 @@ public com.google.cloud.talent.v4beta1.PhoneOrBuilder getPhoneNumbersOrBuilder(i * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6416,8 +6207,7 @@ public com.google.cloud.talent.v4beta1.PhoneOrBuilder getPhoneNumbersOrBuilder(i * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6430,8 +6220,7 @@ public com.google.cloud.talent.v4beta1.Phone.Builder addPhoneNumbersBuilder() { * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6444,8 +6233,7 @@ public com.google.cloud.talent.v4beta1.Phone.Builder addPhoneNumbersBuilder(int * * *
-     * Optional.
-     * The candidate's phone number(s).
+     * Optional. The candidate's phone number(s).
      * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -6493,8 +6281,7 @@ private void ensurePersonalUrisIsMutable() { * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6510,8 +6297,7 @@ public java.util.List getPersonalUr * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6527,8 +6313,7 @@ public int getPersonalUrisCount() { * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6544,8 +6329,7 @@ public com.google.cloud.talent.v4beta1.PersonalUri getPersonalUris(int index) { * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6567,8 +6351,7 @@ public Builder setPersonalUris(int index, com.google.cloud.talent.v4beta1.Person * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6588,8 +6371,7 @@ public Builder setPersonalUris( * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6611,8 +6393,7 @@ public Builder addPersonalUris(com.google.cloud.talent.v4beta1.PersonalUri value * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6634,8 +6415,7 @@ public Builder addPersonalUris(int index, com.google.cloud.talent.v4beta1.Person * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6655,8 +6435,7 @@ public Builder addPersonalUris( * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6676,8 +6455,7 @@ public Builder addPersonalUris( * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6697,8 +6475,7 @@ public Builder addAllPersonalUris( * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6717,8 +6494,7 @@ public Builder clearPersonalUris() { * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6737,8 +6513,7 @@ public Builder removePersonalUris(int index) { * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6750,8 +6525,7 @@ public com.google.cloud.talent.v4beta1.PersonalUri.Builder getPersonalUrisBuilde * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6768,8 +6542,7 @@ public com.google.cloud.talent.v4beta1.PersonalUriOrBuilder getPersonalUrisOrBui * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6786,8 +6559,7 @@ public com.google.cloud.talent.v4beta1.PersonalUriOrBuilder getPersonalUrisOrBui * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6800,8 +6572,7 @@ public com.google.cloud.talent.v4beta1.PersonalUri.Builder addPersonalUrisBuilde * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6814,8 +6585,7 @@ public com.google.cloud.talent.v4beta1.PersonalUri.Builder addPersonalUrisBuilde * * *
-     * Optional.
-     * The candidate's personal URIs.
+     * Optional. The candidate's personal URIs.
      * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -6864,8 +6634,7 @@ private void ensureAdditionalContactInfoIsMutable() { * * *
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -6889,8 +6658,7 @@ private void ensureAdditionalContactInfoIsMutable() {
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -6913,8 +6681,7 @@ public int getAdditionalContactInfoCount() {
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -6938,8 +6705,7 @@ public com.google.cloud.talent.v4beta1.AdditionalContactInfo getAdditionalContac
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -6969,8 +6735,7 @@ public Builder setAdditionalContactInfo(
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -6997,8 +6762,7 @@ public Builder setAdditionalContactInfo(
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7028,8 +6792,7 @@ public Builder addAdditionalContactInfo(
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7059,8 +6822,7 @@ public Builder addAdditionalContactInfo(
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7087,8 +6849,7 @@ public Builder addAdditionalContactInfo(
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7115,8 +6876,7 @@ public Builder addAdditionalContactInfo(
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7144,8 +6904,7 @@ public Builder addAllAdditionalContactInfo(
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7171,8 +6930,7 @@ public Builder clearAdditionalContactInfo() {
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7198,8 +6956,7 @@ public Builder removeAdditionalContactInfo(int index) {
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7219,8 +6976,7 @@ public Builder removeAdditionalContactInfo(int index) {
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7244,8 +7000,7 @@ public Builder removeAdditionalContactInfo(int index) {
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7269,8 +7024,7 @@ public Builder removeAdditionalContactInfo(int index) {
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7291,8 +7045,7 @@ public Builder removeAdditionalContactInfo(int index) {
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7314,8 +7067,7 @@ public Builder removeAdditionalContactInfo(int index) {
      *
      *
      * 
-     * Optional.
-     * Available contact information besides
+     * Optional. Available contact information besides
      * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
      * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
      * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -7374,10 +7126,9 @@ private void ensureEmploymentRecordsIsMutable() {
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7403,10 +7154,9 @@ private void ensureEmploymentRecordsIsMutable() {
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7431,10 +7181,9 @@ public int getEmploymentRecordsCount() {
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7459,10 +7208,9 @@ public com.google.cloud.talent.v4beta1.EmploymentRecord getEmploymentRecords(int
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7494,10 +7242,9 @@ public Builder setEmploymentRecords(
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7526,10 +7273,9 @@ public Builder setEmploymentRecords(
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7560,10 +7306,9 @@ public Builder addEmploymentRecords(com.google.cloud.talent.v4beta1.EmploymentRe
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7595,10 +7340,9 @@ public Builder addEmploymentRecords(
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7627,10 +7371,9 @@ public Builder addEmploymentRecords(
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7659,10 +7402,9 @@ public Builder addEmploymentRecords(
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7691,10 +7433,9 @@ public Builder addAllEmploymentRecords(
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7722,10 +7463,9 @@ public Builder clearEmploymentRecords() {
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7753,10 +7493,9 @@ public Builder removeEmploymentRecords(int index) {
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7778,10 +7517,9 @@ public com.google.cloud.talent.v4beta1.EmploymentRecord.Builder getEmploymentRec
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7807,10 +7545,9 @@ public com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRe
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7836,10 +7573,9 @@ public com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRe
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7861,10 +7597,9 @@ public com.google.cloud.talent.v4beta1.EmploymentRecord.Builder addEmploymentRec
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7887,10 +7622,9 @@ public com.google.cloud.talent.v4beta1.EmploymentRecord.Builder addEmploymentRec
      *
      *
      * 
-     * Optional.
-     * The employment history records of the candidate. It's highly recommended
-     * to input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The employment history records of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the employment records.
      * * List different employment types separately, no matter how minor the
      * change is.
@@ -7951,10 +7685,9 @@ private void ensureEducationRecordsIsMutable() {
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -7979,10 +7712,9 @@ private void ensureEducationRecordsIsMutable() {
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8006,10 +7738,9 @@ public int getEducationRecordsCount() {
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8033,10 +7764,9 @@ public com.google.cloud.talent.v4beta1.EducationRecord getEducationRecords(int i
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8067,10 +7797,9 @@ public Builder setEducationRecords(
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8098,10 +7827,9 @@ public Builder setEducationRecords(
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8131,10 +7859,9 @@ public Builder addEducationRecords(com.google.cloud.talent.v4beta1.EducationReco
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8165,10 +7892,9 @@ public Builder addEducationRecords(
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8196,10 +7922,9 @@ public Builder addEducationRecords(
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8227,10 +7952,9 @@ public Builder addEducationRecords(
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8258,10 +7982,9 @@ public Builder addAllEducationRecords(
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8288,10 +8011,9 @@ public Builder clearEducationRecords() {
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8318,10 +8040,9 @@ public Builder removeEducationRecords(int index) {
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8342,10 +8063,9 @@ public com.google.cloud.talent.v4beta1.EducationRecord.Builder getEducationRecor
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8370,10 +8090,9 @@ public com.google.cloud.talent.v4beta1.EducationRecordOrBuilder getEducationReco
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8398,10 +8117,9 @@ public com.google.cloud.talent.v4beta1.EducationRecordOrBuilder getEducationReco
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8422,10 +8140,9 @@ public com.google.cloud.talent.v4beta1.EducationRecord.Builder addEducationRecor
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8447,10 +8164,9 @@ public com.google.cloud.talent.v4beta1.EducationRecord.Builder addEducationRecor
      *
      *
      * 
-     * Optional.
-     * The education history record of the candidate. It's highly recommended to
-     * input this information as accurately as possible to help improve search
-     * quality. Here are some recommendations:
+     * Optional. The education history record of the candidate. It's highly
+     * recommended to input this information as accurately as possible to help
+     * improve search quality. Here are some recommendations:
      * * Specify the start and end dates of the education records.
      * * List each education type separately, no matter how minor the change is.
      * For example, the profile contains the education experience from the same
@@ -8508,9 +8224,8 @@ private void ensureSkillsIsMutable() {
      *
      *
      * 
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8526,9 +8241,8 @@ public java.util.List getSkillsList() { * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8544,9 +8258,8 @@ public int getSkillsCount() { * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8562,9 +8275,8 @@ public com.google.cloud.talent.v4beta1.Skill getSkills(int index) { * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8586,9 +8298,8 @@ public Builder setSkills(int index, com.google.cloud.talent.v4beta1.Skill value) * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8608,9 +8319,8 @@ public Builder setSkills( * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8632,9 +8342,8 @@ public Builder addSkills(com.google.cloud.talent.v4beta1.Skill value) { * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8656,9 +8365,8 @@ public Builder addSkills(int index, com.google.cloud.talent.v4beta1.Skill value) * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8677,9 +8385,8 @@ public Builder addSkills(com.google.cloud.talent.v4beta1.Skill.Builder builderFo * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8699,9 +8406,8 @@ public Builder addSkills( * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8721,9 +8427,8 @@ public Builder addAllSkills( * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8742,9 +8447,8 @@ public Builder clearSkills() { * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8763,9 +8467,8 @@ public Builder removeSkills(int index) { * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8777,9 +8480,8 @@ public com.google.cloud.talent.v4beta1.Skill.Builder getSkillsBuilder(int index) * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8795,9 +8497,8 @@ public com.google.cloud.talent.v4beta1.SkillOrBuilder getSkillsOrBuilder(int ind * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8814,9 +8515,8 @@ public com.google.cloud.talent.v4beta1.SkillOrBuilder getSkillsOrBuilder(int ind * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8829,9 +8529,8 @@ public com.google.cloud.talent.v4beta1.Skill.Builder addSkillsBuilder() { * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8844,9 +8543,8 @@ public com.google.cloud.talent.v4beta1.Skill.Builder addSkillsBuilder(int index) * * *
-     * Optional.
-     * The skill set of the candidate. It's highly recommended to provide as
-     * much information as possible to help improve the search quality.
+     * Optional. The skill set of the candidate. It's highly recommended to
+     * provide as much information as possible to help improve the search quality.
      * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -8893,10 +8591,9 @@ private void ensureActivitiesIsMutable() { * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -8913,10 +8610,9 @@ public java.util.List getActivitiesLis * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -8933,10 +8629,9 @@ public int getActivitiesCount() { * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -8953,10 +8648,9 @@ public com.google.cloud.talent.v4beta1.Activity getActivities(int index) { * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -8979,10 +8673,9 @@ public Builder setActivities(int index, com.google.cloud.talent.v4beta1.Activity * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9003,10 +8696,9 @@ public Builder setActivities( * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9029,10 +8721,9 @@ public Builder addActivities(com.google.cloud.talent.v4beta1.Activity value) { * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9055,10 +8746,9 @@ public Builder addActivities(int index, com.google.cloud.talent.v4beta1.Activity * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9078,10 +8768,9 @@ public Builder addActivities(com.google.cloud.talent.v4beta1.Activity.Builder bu * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9102,10 +8791,9 @@ public Builder addActivities( * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9126,10 +8814,9 @@ public Builder addAllActivities( * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9149,10 +8836,9 @@ public Builder clearActivities() { * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9172,10 +8858,9 @@ public Builder removeActivities(int index) { * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9188,10 +8873,9 @@ public com.google.cloud.talent.v4beta1.Activity.Builder getActivitiesBuilder(int * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9208,10 +8892,9 @@ public com.google.cloud.talent.v4beta1.ActivityOrBuilder getActivitiesOrBuilder( * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9229,10 +8912,9 @@ public com.google.cloud.talent.v4beta1.ActivityOrBuilder getActivitiesOrBuilder( * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9246,10 +8928,9 @@ public com.google.cloud.talent.v4beta1.Activity.Builder addActivitiesBuilder() { * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9263,10 +8944,9 @@ public com.google.cloud.talent.v4beta1.Activity.Builder addActivitiesBuilder(int * * *
-     * Optional.
-     * The individual or collaborative activities which the candidate has
-     * participated in, for example, open-source projects, class assignments that
-     * aren't listed in
+     * Optional. The individual or collaborative activities which the candidate
+     * has participated in, for example, open-source projects, class assignments
+     * that aren't listed in
      * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
      * 
* @@ -9315,8 +8995,7 @@ private void ensurePublicationsIsMutable() { * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9332,8 +9011,7 @@ public java.util.List getPublicatio * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9349,8 +9027,7 @@ public int getPublicationsCount() { * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9366,8 +9043,7 @@ public com.google.cloud.talent.v4beta1.Publication getPublications(int index) { * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9389,8 +9065,7 @@ public Builder setPublications(int index, com.google.cloud.talent.v4beta1.Public * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9410,8 +9085,7 @@ public Builder setPublications( * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9433,8 +9107,7 @@ public Builder addPublications(com.google.cloud.talent.v4beta1.Publication value * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9456,8 +9129,7 @@ public Builder addPublications(int index, com.google.cloud.talent.v4beta1.Public * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9477,8 +9149,7 @@ public Builder addPublications( * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9498,8 +9169,7 @@ public Builder addPublications( * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9519,8 +9189,7 @@ public Builder addAllPublications( * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9539,8 +9208,7 @@ public Builder clearPublications() { * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9559,8 +9227,7 @@ public Builder removePublications(int index) { * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9572,8 +9239,7 @@ public com.google.cloud.talent.v4beta1.Publication.Builder getPublicationsBuilde * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9590,8 +9256,7 @@ public com.google.cloud.talent.v4beta1.PublicationOrBuilder getPublicationsOrBui * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9608,8 +9273,7 @@ public com.google.cloud.talent.v4beta1.PublicationOrBuilder getPublicationsOrBui * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9622,8 +9286,7 @@ public com.google.cloud.talent.v4beta1.Publication.Builder addPublicationsBuilde * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9636,8 +9299,7 @@ public com.google.cloud.talent.v4beta1.Publication.Builder addPublicationsBuilde * * *
-     * Optional.
-     * The publications published by the candidate.
+     * Optional. The publications published by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -9684,8 +9346,7 @@ private void ensurePatentsIsMutable() { * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9701,8 +9362,7 @@ public java.util.List getPatentsList() { * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9718,8 +9378,7 @@ public int getPatentsCount() { * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9735,8 +9394,7 @@ public com.google.cloud.talent.v4beta1.Patent getPatents(int index) { * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9758,8 +9416,7 @@ public Builder setPatents(int index, com.google.cloud.talent.v4beta1.Patent valu * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9779,8 +9436,7 @@ public Builder setPatents( * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9802,8 +9458,7 @@ public Builder addPatents(com.google.cloud.talent.v4beta1.Patent value) { * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9825,8 +9480,7 @@ public Builder addPatents(int index, com.google.cloud.talent.v4beta1.Patent valu * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9845,8 +9499,7 @@ public Builder addPatents(com.google.cloud.talent.v4beta1.Patent.Builder builder * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9866,8 +9519,7 @@ public Builder addPatents( * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9887,8 +9539,7 @@ public Builder addAllPatents( * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9907,8 +9558,7 @@ public Builder clearPatents() { * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9927,8 +9577,7 @@ public Builder removePatents(int index) { * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9940,8 +9589,7 @@ public com.google.cloud.talent.v4beta1.Patent.Builder getPatentsBuilder(int inde * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9957,8 +9605,7 @@ public com.google.cloud.talent.v4beta1.PatentOrBuilder getPatentsOrBuilder(int i * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9975,8 +9622,7 @@ public com.google.cloud.talent.v4beta1.PatentOrBuilder getPatentsOrBuilder(int i * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -9989,8 +9635,7 @@ public com.google.cloud.talent.v4beta1.Patent.Builder addPatentsBuilder() { * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -10003,8 +9648,7 @@ public com.google.cloud.talent.v4beta1.Patent.Builder addPatentsBuilder(int inde * * *
-     * Optional.
-     * The patents acquired by the candidate.
+     * Optional. The patents acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -10051,8 +9695,7 @@ private void ensureCertificationsIsMutable() { * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10068,8 +9711,7 @@ public java.util.List getCertific * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10085,8 +9727,7 @@ public int getCertificationsCount() { * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10102,8 +9743,7 @@ public com.google.cloud.talent.v4beta1.Certification getCertifications(int index * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10126,8 +9766,7 @@ public Builder setCertifications( * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10147,8 +9786,7 @@ public Builder setCertifications( * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10170,8 +9808,7 @@ public Builder addCertifications(com.google.cloud.talent.v4beta1.Certification v * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10194,8 +9831,7 @@ public Builder addCertifications( * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10215,8 +9851,7 @@ public Builder addCertifications( * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10236,8 +9871,7 @@ public Builder addCertifications( * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10257,8 +9891,7 @@ public Builder addAllCertifications( * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10277,8 +9910,7 @@ public Builder clearCertifications() { * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10297,8 +9929,7 @@ public Builder removeCertifications(int index) { * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10311,8 +9942,7 @@ public com.google.cloud.talent.v4beta1.Certification.Builder getCertificationsBu * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10329,8 +9959,7 @@ public com.google.cloud.talent.v4beta1.CertificationOrBuilder getCertificationsO * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10347,8 +9976,7 @@ public com.google.cloud.talent.v4beta1.CertificationOrBuilder getCertificationsO * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10361,8 +9989,7 @@ public com.google.cloud.talent.v4beta1.Certification.Builder addCertificationsBu * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10376,8 +10003,7 @@ public com.google.cloud.talent.v4beta1.Certification.Builder addCertificationsBu * * *
-     * Optional.
-     * The certifications acquired by the candidate.
+     * Optional. The certifications acquired by the candidate.
      * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -10730,10 +10356,9 @@ public int getCustomAttributesCount() { * * *
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom profile
-     * attributes that aren't covered by the provided structured fields. See
-     * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * profile attributes that aren't covered by the provided structured fields.
+     * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
      * details.
      * At most 100 filterable and at most 100 unfilterable keys are supported. If
      * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -10768,10 +10393,9 @@ public boolean containsCustomAttributes(java.lang.String key) {
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom profile
-     * attributes that aren't covered by the provided structured fields. See
-     * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * profile attributes that aren't covered by the provided structured fields.
+     * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
      * details.
      * At most 100 filterable and at most 100 unfilterable keys are supported. If
      * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -10798,10 +10422,9 @@ public boolean containsCustomAttributes(java.lang.String key) {
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom profile
-     * attributes that aren't covered by the provided structured fields. See
-     * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * profile attributes that aren't covered by the provided structured fields.
+     * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
      * details.
      * At most 100 filterable and at most 100 unfilterable keys are supported. If
      * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -10833,10 +10456,9 @@ public com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefa
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom profile
-     * attributes that aren't covered by the provided structured fields. See
-     * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * profile attributes that aren't covered by the provided structured fields.
+     * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
      * details.
      * At most 100 filterable and at most 100 unfilterable keys are supported. If
      * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -10876,10 +10498,9 @@ public Builder clearCustomAttributes() {
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom profile
-     * attributes that aren't covered by the provided structured fields. See
-     * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * profile attributes that aren't covered by the provided structured fields.
+     * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
      * details.
      * At most 100 filterable and at most 100 unfilterable keys are supported. If
      * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -10915,10 +10536,9 @@ public Builder removeCustomAttributes(java.lang.String key) {
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom profile
-     * attributes that aren't covered by the provided structured fields. See
-     * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * profile attributes that aren't covered by the provided structured fields.
+     * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
      * details.
      * At most 100 filterable and at most 100 unfilterable keys are supported. If
      * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -10952,10 +10572,9 @@ public Builder putCustomAttributes(
      *
      *
      * 
-     * Optional.
-     * A map of fields to hold both filterable and non-filterable custom profile
-     * attributes that aren't covered by the provided structured fields. See
-     * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+     * Optional. A map of fields to hold both filterable and non-filterable custom
+     * profile attributes that aren't covered by the provided structured fields.
+     * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
      * details.
      * At most 100 filterable and at most 100 unfilterable keys are supported. If
      * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -10985,7 +10604,9 @@ public Builder putAllCustomAttributes(
      *
      *
      * 
-     * Output only. Indicates if the profile is fully processed and searchable.
+     * Output only. Indicates if a summarized profile was created as part of the
+     * profile creation API call. This flag does not indicate whether a profile is
+     * searchable or not.
      * 
* * bool processed = 27; @@ -10997,7 +10618,9 @@ public boolean getProcessed() { * * *
-     * Output only. Indicates if the profile is fully processed and searchable.
+     * Output only. Indicates if a summarized profile was created as part of the
+     * profile creation API call. This flag does not indicate whether a profile is
+     * searchable or not.
      * 
* * bool processed = 27; @@ -11012,7 +10635,9 @@ public Builder setProcessed(boolean value) { * * *
-     * Output only. Indicates if the profile is fully processed and searchable.
+     * Output only. Indicates if a summarized profile was created as part of the
+     * profile creation API call. This flag does not indicate whether a profile is
+     * searchable or not.
      * 
* * bool processed = 27; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileEvent.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileEvent.java index e60c36b3373b..c65c3dcdf6f6 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileEvent.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileEvent.java @@ -144,7 +144,42 @@ public enum ProfileEventType implements com.google.protobuf.ProtocolMessageEnum * * *
-     * The profile is displayed.
+     * Send this event when a
+     * [ProfileEvent.profiles][google.cloud.talent.v4beta1.ProfileEvent.profiles]
+     * meets all of the following criteria:
+     * * Was sent as a part of a result set for a CTS API call.
+     * * Was rendered in the end user's UI (that is, the
+     * [ProfileEvent.recruiter][google.cloud.talent.v4beta1.ProfileEvent.recruiter]).
+     * * That UI rendering was displayed in the end user's viewport for >=3
+     * seconds.
+     * In other words, send this event when the end user of the CTS service
+     * actually saw a resulting profile in their viewport.
+     * To understand how to use this event, consider an example:
+     * * The customer's UI for interacting with CTS
+     * result sets is accessed by the end user through a web browser.
+     * * The UI calls for a page size of 15 candidates (that is, 15 candidates
+     * are rendered on each page of results).
+     * * However, the UI design calls for only 5 candidates to be shown at any
+     * given time in the viewport (that is, the end user can only see 5 results
+     * at any given time and needs to scroll up or down to view all 15 results).
+     * To render each page of results, the customer will send a
+     * request to CTS with a page size = 15.
+     * * User loads page #1 of results.
+     * * User scrolls down to expose results #1 - #5 and dwells on this view for
+     * 30 seconds.
+     * * Send an IMPRESSION event for result 1, 2, 3, 4, 5.
+     * * User scrolls down a bit, exposing results #2 - #6 in the viewport and
+     * dwells on this view for 5 minutes.
+     * * Send an IMPRESSION event for result 6.
+     * * User scrolls to the bottom of the page, with results #7 - #15 shown in
+     * the viewport for ~5 seconds each.
+     * * Specifically, NO IMPRESSION events are sent for result 7, 8, 9, 10, 11,
+     * 12, 13, 14, 15.
+     * * User clicks to the next page and loads page #2 of results.
+     * * Within 2 seconds, user scrolls to expose results #20 - #24 in the
+     * viewport and dwells on this view for 20 mins.
+     * * Send an IMPRESSION event for result 20, 21, 22, 23, 24
+     * * User closes their browser window.
      * 
* * IMPRESSION = 1; @@ -154,7 +189,34 @@ public enum ProfileEventType implements com.google.protobuf.ProtocolMessageEnum * * *
-     * The profile is viewed.
+     * The VIEW event allows CTS to understand if a candidate's profile was
+     * viewed by an end user (that is, recruiter) of the system for >=3 seconds.
+     * This is critical to tracking product metrics and should be sent for every
+     * profile VIEW that happens in the customer's system.
+     * VIEW events should be sent whether an end user views a candidate's
+     * profile as a result of seeing that profile in the result set of a
+     * CTS API request or whether the end user
+     * views the profile for some other reason (that is, clicks to the
+     * candidate's profile in the ATS, and so on).
+     * For a VIEW that happens as a result of seeing the profile in
+     * a CTS API request's result set, the
+     * [ClientEvent.request_id][google.cloud.talent.v4beta1.ClientEvent.request_id]
+     * should be populated.  If the VIEW happens for some other reason, the
+     * [requestId] should not be populated.
+     * This event requires a valid recruiter and one valid ID in profiles.
+     * To understand how to use this event, consider 2 examples in which a VIEW
+     * event should be sent:
+     * * End user makes a request to the CTS API for a result set.
+     * * Results for the request are shown to the end user.
+     * * End user clicks on one of the candidates that are shown as part of the
+     * results.
+     * * A VIEW event with the
+     * [ClientEvent.request_id][google.cloud.talent.v4beta1.ClientEvent.request_id]
+     * of the API call in the first step of this example is sent.
+     * * End user browses to a candidate's profile in the ATS.
+     * * A VIEW event without a
+     * [ClientEvent.request_id][google.cloud.talent.v4beta1.ClientEvent.request_id]
+     * is sent.
      * 
* * VIEW = 2; @@ -187,7 +249,42 @@ public enum ProfileEventType implements com.google.protobuf.ProtocolMessageEnum * * *
-     * The profile is displayed.
+     * Send this event when a
+     * [ProfileEvent.profiles][google.cloud.talent.v4beta1.ProfileEvent.profiles]
+     * meets all of the following criteria:
+     * * Was sent as a part of a result set for a CTS API call.
+     * * Was rendered in the end user's UI (that is, the
+     * [ProfileEvent.recruiter][google.cloud.talent.v4beta1.ProfileEvent.recruiter]).
+     * * That UI rendering was displayed in the end user's viewport for >=3
+     * seconds.
+     * In other words, send this event when the end user of the CTS service
+     * actually saw a resulting profile in their viewport.
+     * To understand how to use this event, consider an example:
+     * * The customer's UI for interacting with CTS
+     * result sets is accessed by the end user through a web browser.
+     * * The UI calls for a page size of 15 candidates (that is, 15 candidates
+     * are rendered on each page of results).
+     * * However, the UI design calls for only 5 candidates to be shown at any
+     * given time in the viewport (that is, the end user can only see 5 results
+     * at any given time and needs to scroll up or down to view all 15 results).
+     * To render each page of results, the customer will send a
+     * request to CTS with a page size = 15.
+     * * User loads page #1 of results.
+     * * User scrolls down to expose results #1 - #5 and dwells on this view for
+     * 30 seconds.
+     * * Send an IMPRESSION event for result 1, 2, 3, 4, 5.
+     * * User scrolls down a bit, exposing results #2 - #6 in the viewport and
+     * dwells on this view for 5 minutes.
+     * * Send an IMPRESSION event for result 6.
+     * * User scrolls to the bottom of the page, with results #7 - #15 shown in
+     * the viewport for ~5 seconds each.
+     * * Specifically, NO IMPRESSION events are sent for result 7, 8, 9, 10, 11,
+     * 12, 13, 14, 15.
+     * * User clicks to the next page and loads page #2 of results.
+     * * Within 2 seconds, user scrolls to expose results #20 - #24 in the
+     * viewport and dwells on this view for 20 mins.
+     * * Send an IMPRESSION event for result 20, 21, 22, 23, 24
+     * * User closes their browser window.
      * 
* * IMPRESSION = 1; @@ -197,7 +294,34 @@ public enum ProfileEventType implements com.google.protobuf.ProtocolMessageEnum * * *
-     * The profile is viewed.
+     * The VIEW event allows CTS to understand if a candidate's profile was
+     * viewed by an end user (that is, recruiter) of the system for >=3 seconds.
+     * This is critical to tracking product metrics and should be sent for every
+     * profile VIEW that happens in the customer's system.
+     * VIEW events should be sent whether an end user views a candidate's
+     * profile as a result of seeing that profile in the result set of a
+     * CTS API request or whether the end user
+     * views the profile for some other reason (that is, clicks to the
+     * candidate's profile in the ATS, and so on).
+     * For a VIEW that happens as a result of seeing the profile in
+     * a CTS API request's result set, the
+     * [ClientEvent.request_id][google.cloud.talent.v4beta1.ClientEvent.request_id]
+     * should be populated.  If the VIEW happens for some other reason, the
+     * [requestId] should not be populated.
+     * This event requires a valid recruiter and one valid ID in profiles.
+     * To understand how to use this event, consider 2 examples in which a VIEW
+     * event should be sent:
+     * * End user makes a request to the CTS API for a result set.
+     * * Results for the request are shown to the end user.
+     * * End user clicks on one of the candidates that are shown as part of the
+     * results.
+     * * A VIEW event with the
+     * [ClientEvent.request_id][google.cloud.talent.v4beta1.ClientEvent.request_id]
+     * of the API call in the first step of this example is sent.
+     * * End user browses to a candidate's profile in the ATS.
+     * * A VIEW event without a
+     * [ClientEvent.request_id][google.cloud.talent.v4beta1.ClientEvent.request_id]
+     * is sent.
      * 
* * VIEW = 2; @@ -296,8 +420,7 @@ private ProfileEventType(int value) { * * *
-   * Required.
-   * Type of event.
+   * Required. Type of event.
    * 
* * .google.cloud.talent.v4beta1.ProfileEvent.ProfileEventType type = 1; @@ -309,8 +432,7 @@ public int getTypeValue() { * * *
-   * Required.
-   * Type of event.
+   * Required. Type of event.
    * 
* * .google.cloud.talent.v4beta1.ProfileEvent.ProfileEventType type = 1; @@ -330,9 +452,8 @@ public com.google.cloud.talent.v4beta1.ProfileEvent.ProfileEventType getType() { * * *
-   * Required.
-   * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -347,9 +468,8 @@ public com.google.protobuf.ProtocolStringList getProfilesList() {
    *
    *
    * 
-   * Required.
-   * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -364,9 +484,8 @@ public int getProfilesCount() {
    *
    *
    * 
-   * Required.
-   * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -381,9 +500,8 @@ public java.lang.String getProfiles(int index) {
    *
    *
    * 
-   * Required.
-   * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -401,9 +519,9 @@ public com.google.protobuf.ByteString getProfilesBytes(int index) {
    *
    *
    * 
-   * Optional.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this client event. Leave it empty if the event isn't associated with a job.
+   * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this client event. Leave it empty if the event isn't
+   * associated with a job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -418,9 +536,9 @@ public com.google.protobuf.ProtocolStringList getJobsList() {
    *
    *
    * 
-   * Optional.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this client event. Leave it empty if the event isn't associated with a job.
+   * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this client event. Leave it empty if the event isn't
+   * associated with a job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -435,9 +553,9 @@ public int getJobsCount() {
    *
    *
    * 
-   * Optional.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this client event. Leave it empty if the event isn't associated with a job.
+   * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this client event. Leave it empty if the event isn't
+   * associated with a job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -452,9 +570,9 @@ public java.lang.String getJobs(int index) {
    *
    *
    * 
-   * Optional.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this client event. Leave it empty if the event isn't associated with a job.
+   * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this client event. Leave it empty if the event isn't
+   * associated with a job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -864,8 +982,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * Type of event.
+     * Required. Type of event.
      * 
* * .google.cloud.talent.v4beta1.ProfileEvent.ProfileEventType type = 1; @@ -877,8 +994,7 @@ public int getTypeValue() { * * *
-     * Required.
-     * Type of event.
+     * Required. Type of event.
      * 
* * .google.cloud.talent.v4beta1.ProfileEvent.ProfileEventType type = 1; @@ -892,8 +1008,7 @@ public Builder setTypeValue(int value) { * * *
-     * Required.
-     * Type of event.
+     * Required. Type of event.
      * 
* * .google.cloud.talent.v4beta1.ProfileEvent.ProfileEventType type = 1; @@ -910,8 +1025,7 @@ public com.google.cloud.talent.v4beta1.ProfileEvent.ProfileEventType getType() { * * *
-     * Required.
-     * Type of event.
+     * Required. Type of event.
      * 
* * .google.cloud.talent.v4beta1.ProfileEvent.ProfileEventType type = 1; @@ -929,8 +1043,7 @@ public Builder setType(com.google.cloud.talent.v4beta1.ProfileEvent.ProfileEvent * * *
-     * Required.
-     * Type of event.
+     * Required. Type of event.
      * 
* * .google.cloud.talent.v4beta1.ProfileEvent.ProfileEventType type = 1; @@ -955,9 +1068,8 @@ private void ensureProfilesIsMutable() { * * *
-     * Required.
-     * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -972,9 +1084,8 @@ public com.google.protobuf.ProtocolStringList getProfilesList() {
      *
      *
      * 
-     * Required.
-     * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -989,9 +1100,8 @@ public int getProfilesCount() {
      *
      *
      * 
-     * Required.
-     * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1006,9 +1116,8 @@ public java.lang.String getProfiles(int index) {
      *
      *
      * 
-     * Required.
-     * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1023,9 +1132,8 @@ public com.google.protobuf.ByteString getProfilesBytes(int index) {
      *
      *
      * 
-     * Required.
-     * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1046,9 +1154,8 @@ public Builder setProfiles(int index, java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1069,9 +1176,8 @@ public Builder addProfiles(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1089,9 +1195,8 @@ public Builder addAllProfiles(java.lang.Iterable values) {
      *
      *
      * 
-     * Required.
-     * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1109,9 +1214,8 @@ public Builder clearProfiles() {
      *
      *
      * 
-     * Required.
-     * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-     * with this client event.
+     * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+     * associated with this client event.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
      * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -1143,9 +1247,9 @@ private void ensureJobsIsMutable() {
      *
      *
      * 
-     * Optional.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this client event. Leave it empty if the event isn't associated with a job.
+     * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this client event. Leave it empty if the event isn't
+     * associated with a job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -1160,9 +1264,9 @@ public com.google.protobuf.ProtocolStringList getJobsList() {
      *
      *
      * 
-     * Optional.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this client event. Leave it empty if the event isn't associated with a job.
+     * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this client event. Leave it empty if the event isn't
+     * associated with a job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -1177,9 +1281,9 @@ public int getJobsCount() {
      *
      *
      * 
-     * Optional.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this client event. Leave it empty if the event isn't associated with a job.
+     * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this client event. Leave it empty if the event isn't
+     * associated with a job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -1194,9 +1298,9 @@ public java.lang.String getJobs(int index) {
      *
      *
      * 
-     * Optional.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this client event. Leave it empty if the event isn't associated with a job.
+     * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this client event. Leave it empty if the event isn't
+     * associated with a job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -1211,9 +1315,9 @@ public com.google.protobuf.ByteString getJobsBytes(int index) {
      *
      *
      * 
-     * Optional.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this client event. Leave it empty if the event isn't associated with a job.
+     * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this client event. Leave it empty if the event isn't
+     * associated with a job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -1234,9 +1338,9 @@ public Builder setJobs(int index, java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this client event. Leave it empty if the event isn't associated with a job.
+     * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this client event. Leave it empty if the event isn't
+     * associated with a job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -1257,9 +1361,9 @@ public Builder addJobs(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this client event. Leave it empty if the event isn't associated with a job.
+     * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this client event. Leave it empty if the event isn't
+     * associated with a job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -1277,9 +1381,9 @@ public Builder addAllJobs(java.lang.Iterable values) {
      *
      *
      * 
-     * Optional.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this client event. Leave it empty if the event isn't associated with a job.
+     * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this client event. Leave it empty if the event isn't
+     * associated with a job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -1297,9 +1401,9 @@ public Builder clearJobs() {
      *
      *
      * 
-     * Optional.
-     * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-     * this client event. Leave it empty if the event isn't associated with a job.
+     * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+     * associated with this client event. Leave it empty if the event isn't
+     * associated with a job.
      * The format is
      * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
      * example, "projects/api-test-project/tenants/foo/jobs/1234".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileEventOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileEventOrBuilder.java
index 5995a33fc95c..a6675e90fd5a 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileEventOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileEventOrBuilder.java
@@ -12,8 +12,7 @@ public interface ProfileEventOrBuilder
    *
    *
    * 
-   * Required.
-   * Type of event.
+   * Required. Type of event.
    * 
* * .google.cloud.talent.v4beta1.ProfileEvent.ProfileEventType type = 1; @@ -23,8 +22,7 @@ public interface ProfileEventOrBuilder * * *
-   * Required.
-   * Type of event.
+   * Required. Type of event.
    * 
* * .google.cloud.talent.v4beta1.ProfileEvent.ProfileEventType type = 1; @@ -35,9 +33,8 @@ public interface ProfileEventOrBuilder * * *
-   * Required.
-   * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -50,9 +47,8 @@ public interface ProfileEventOrBuilder
    *
    *
    * 
-   * Required.
-   * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -65,9 +61,8 @@ public interface ProfileEventOrBuilder
    *
    *
    * 
-   * Required.
-   * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -80,9 +75,8 @@ public interface ProfileEventOrBuilder
    *
    *
    * 
-   * Required.
-   * The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated
-   * with this client event.
+   * Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name]
+   * associated with this client event.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
    * for example, "projects/api-test-project/tenants/foo/profiles/bar".
@@ -96,9 +90,9 @@ public interface ProfileEventOrBuilder
    *
    *
    * 
-   * Optional.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this client event. Leave it empty if the event isn't associated with a job.
+   * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this client event. Leave it empty if the event isn't
+   * associated with a job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -111,9 +105,9 @@ public interface ProfileEventOrBuilder
    *
    *
    * 
-   * Optional.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this client event. Leave it empty if the event isn't associated with a job.
+   * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this client event. Leave it empty if the event isn't
+   * associated with a job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -126,9 +120,9 @@ public interface ProfileEventOrBuilder
    *
    *
    * 
-   * Optional.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this client event. Leave it empty if the event isn't associated with a job.
+   * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this client event. Leave it empty if the event isn't
+   * associated with a job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
@@ -141,9 +135,9 @@ public interface ProfileEventOrBuilder
    *
    *
    * 
-   * Optional.
-   * The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with
-   * this client event. Leave it empty if the event isn't associated with a job.
+   * Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name]
+   * associated with this client event. Leave it empty if the event isn't
+   * associated with a job.
    * The format is
    * "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for
    * example, "projects/api-test-project/tenants/foo/jobs/1234".
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileOrBuilder.java
index e821fc820ecb..6909a3165c86 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileOrBuilder.java
@@ -41,8 +41,7 @@ public interface ProfileOrBuilder
    *
    *
    * 
-   * Optional.
-   * Profile's id in client system if available.
+   * Optional. Profile's id in client system if available.
    * The maximum number of bytes allowed is 100.
    * 
* @@ -53,8 +52,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * Profile's id in client system if available.
+   * Optional. Profile's id in client system if available.
    * The maximum number of bytes allowed is 100.
    * 
* @@ -66,8 +64,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The source description indicating where the profile is acquired.
+   * Optional. The source description indicating where the profile is acquired.
    * For example, if a candidate profile is acquired from a resume, the user can
    * input "resume" here to indicate the source.
    * The maximum number of bytes allowed is 100.
@@ -80,8 +77,7 @@ public interface ProfileOrBuilder
    *
    *
    * 
-   * Optional.
-   * The source description indicating where the profile is acquired.
+   * Optional. The source description indicating where the profile is acquired.
    * For example, if a candidate profile is acquired from a resume, the user can
    * input "resume" here to indicate the source.
    * The maximum number of bytes allowed is 100.
@@ -95,8 +91,8 @@ public interface ProfileOrBuilder
    *
    *
    * 
-   * Optional.
-   * The URI set by clients that links to this profile's client-side copy.
+   * Optional. The URI set by clients that links to this profile's client-side
+   * copy.
    * The maximum number of bytes allowed is 4000.
    * 
* @@ -107,8 +103,8 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The URI set by clients that links to this profile's client-side copy.
+   * Optional. The URI set by clients that links to this profile's client-side
+   * copy.
    * The maximum number of bytes allowed is 4000.
    * 
* @@ -120,11 +116,10 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The cluster id of the profile to associate with other profile(s) for the
-   * same candidate.
+   * Optional. The cluster id of the profile to associate with other profile(s)
+   * for the same candidate.
    * This field should be generated by the customer. If a value is not provided,
-   * a random UUI is assigned to this field of the profile.
+   * a random UUID is assigned to this field of the profile.
    * This is used to link multiple profiles to the same candidate. For example,
    * a client has a candidate with two profiles, where one was created recently
    * and the other one was created 5 years ago. These two profiles may be very
@@ -141,11 +136,10 @@ public interface ProfileOrBuilder
    *
    *
    * 
-   * Optional.
-   * The cluster id of the profile to associate with other profile(s) for the
-   * same candidate.
+   * Optional. The cluster id of the profile to associate with other profile(s)
+   * for the same candidate.
    * This field should be generated by the customer. If a value is not provided,
-   * a random UUI is assigned to this field of the profile.
+   * a random UUID is assigned to this field of the profile.
    * This is used to link multiple profiles to the same candidate. For example,
    * a client has a candidate with two profiles, where one was created recently
    * and the other one was created 5 years ago. These two profiles may be very
@@ -163,8 +157,7 @@ public interface ProfileOrBuilder
    *
    *
    * 
-   * Optional.
-   * Indicates the hirable status of the candidate.
+   * Optional. Indicates the hirable status of the candidate.
    * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -174,8 +167,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * Indicates the hirable status of the candidate.
+   * Optional. Indicates the hirable status of the candidate.
    * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -185,8 +177,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * Indicates the hirable status of the candidate.
+   * Optional. Indicates the hirable status of the candidate.
    * 
* * .google.protobuf.BoolValue is_hirable = 6; @@ -197,8 +188,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The timestamp when the profile was first created at this source.
+   * Optional. The timestamp when the profile was first created at this source.
    * 
* * .google.protobuf.Timestamp create_time = 7; @@ -208,8 +198,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The timestamp when the profile was first created at this source.
+   * Optional. The timestamp when the profile was first created at this source.
    * 
* * .google.protobuf.Timestamp create_time = 7; @@ -219,8 +208,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The timestamp when the profile was first created at this source.
+   * Optional. The timestamp when the profile was first created at this source.
    * 
* * .google.protobuf.Timestamp create_time = 7; @@ -231,8 +219,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The timestamp when the profile was last updated at this source.
+   * Optional. The timestamp when the profile was last updated at this source.
    * 
* * .google.protobuf.Timestamp update_time = 8; @@ -242,8 +229,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The timestamp when the profile was last updated at this source.
+   * Optional. The timestamp when the profile was last updated at this source.
    * 
* * .google.protobuf.Timestamp update_time = 8; @@ -253,8 +239,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The timestamp when the profile was last updated at this source.
+   * Optional. The timestamp when the profile was last updated at this source.
    * 
* * .google.protobuf.Timestamp update_time = 8; @@ -265,8 +250,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The resume representing this profile.
+   * Optional. The resume representing this profile.
    * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -276,8 +260,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The resume representing this profile.
+   * Optional. The resume representing this profile.
    * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -287,8 +270,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The resume representing this profile.
+   * Optional. The resume representing this profile.
    * 
* * .google.cloud.talent.v4beta1.Resume resume = 53; @@ -299,8 +281,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The names of the candidate this profile references.
+   * Optional. The names of the candidate this profile references.
    * Currently only one person name is supported.
    * 
* @@ -311,8 +292,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The names of the candidate this profile references.
+   * Optional. The names of the candidate this profile references.
    * Currently only one person name is supported.
    * 
* @@ -323,8 +303,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The names of the candidate this profile references.
+   * Optional. The names of the candidate this profile references.
    * Currently only one person name is supported.
    * 
* @@ -335,8 +314,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The names of the candidate this profile references.
+   * Optional. The names of the candidate this profile references.
    * Currently only one person name is supported.
    * 
* @@ -348,8 +326,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The names of the candidate this profile references.
+   * Optional. The names of the candidate this profile references.
    * Currently only one person name is supported.
    * 
* @@ -361,8 +338,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's postal addresses.
+   * Optional. The candidate's postal addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -372,8 +348,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's postal addresses.
+   * Optional. The candidate's postal addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -383,8 +358,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's postal addresses.
+   * Optional. The candidate's postal addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -394,8 +368,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's postal addresses.
+   * Optional. The candidate's postal addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -406,8 +379,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's postal addresses.
+   * Optional. The candidate's postal addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Address addresses = 12; @@ -418,8 +390,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's email addresses.
+   * Optional. The candidate's email addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -429,8 +400,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's email addresses.
+   * Optional. The candidate's email addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -440,8 +410,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's email addresses.
+   * Optional. The candidate's email addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -451,8 +420,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's email addresses.
+   * Optional. The candidate's email addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -463,8 +431,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's email addresses.
+   * Optional. The candidate's email addresses.
    * 
* * repeated .google.cloud.talent.v4beta1.Email email_addresses = 13; @@ -475,8 +442,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's phone number(s).
+   * Optional. The candidate's phone number(s).
    * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -486,8 +452,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's phone number(s).
+   * Optional. The candidate's phone number(s).
    * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -497,8 +462,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's phone number(s).
+   * Optional. The candidate's phone number(s).
    * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -508,8 +472,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's phone number(s).
+   * Optional. The candidate's phone number(s).
    * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -520,8 +483,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's phone number(s).
+   * Optional. The candidate's phone number(s).
    * 
* * repeated .google.cloud.talent.v4beta1.Phone phone_numbers = 14; @@ -532,8 +494,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's personal URIs.
+   * Optional. The candidate's personal URIs.
    * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -543,8 +504,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's personal URIs.
+   * Optional. The candidate's personal URIs.
    * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -554,8 +514,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's personal URIs.
+   * Optional. The candidate's personal URIs.
    * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -565,8 +524,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's personal URIs.
+   * Optional. The candidate's personal URIs.
    * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -577,8 +535,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * The candidate's personal URIs.
+   * Optional. The candidate's personal URIs.
    * 
* * repeated .google.cloud.talent.v4beta1.PersonalUri personal_uris = 15; @@ -589,8 +546,7 @@ public interface ProfileOrBuilder * * *
-   * Optional.
-   * Available contact information besides
+   * Optional. Available contact information besides
    * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
    * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
    * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -607,8 +563,7 @@ public interface ProfileOrBuilder
    *
    *
    * 
-   * Optional.
-   * Available contact information besides
+   * Optional. Available contact information besides
    * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
    * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
    * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -624,8 +579,7 @@ public interface ProfileOrBuilder
    *
    *
    * 
-   * Optional.
-   * Available contact information besides
+   * Optional. Available contact information besides
    * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
    * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
    * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -641,8 +595,7 @@ public interface ProfileOrBuilder
    *
    *
    * 
-   * Optional.
-   * Available contact information besides
+   * Optional. Available contact information besides
    * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
    * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
    * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -659,8 +612,7 @@ public interface ProfileOrBuilder
    *
    *
    * 
-   * Optional.
-   * Available contact information besides
+   * Optional. Available contact information besides
    * [addresses][google.cloud.talent.v4beta1.Profile.addresses],
    * [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses],
    * [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and
@@ -678,10 +630,9 @@ com.google.cloud.talent.v4beta1.AdditionalContactInfoOrBuilder getAdditionalCont
    *
    *
    * 
-   * Optional.
-   * The employment history records of the candidate. It's highly recommended
-   * to input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The employment history records of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the employment records.
    * * List different employment types separately, no matter how minor the
    * change is.
@@ -700,10 +651,9 @@ com.google.cloud.talent.v4beta1.AdditionalContactInfoOrBuilder getAdditionalCont
    *
    *
    * 
-   * Optional.
-   * The employment history records of the candidate. It's highly recommended
-   * to input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The employment history records of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the employment records.
    * * List different employment types separately, no matter how minor the
    * change is.
@@ -722,10 +672,9 @@ com.google.cloud.talent.v4beta1.AdditionalContactInfoOrBuilder getAdditionalCont
    *
    *
    * 
-   * Optional.
-   * The employment history records of the candidate. It's highly recommended
-   * to input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The employment history records of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the employment records.
    * * List different employment types separately, no matter how minor the
    * change is.
@@ -744,10 +693,9 @@ com.google.cloud.talent.v4beta1.AdditionalContactInfoOrBuilder getAdditionalCont
    *
    *
    * 
-   * Optional.
-   * The employment history records of the candidate. It's highly recommended
-   * to input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The employment history records of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the employment records.
    * * List different employment types separately, no matter how minor the
    * change is.
@@ -767,10 +715,9 @@ com.google.cloud.talent.v4beta1.AdditionalContactInfoOrBuilder getAdditionalCont
    *
    *
    * 
-   * Optional.
-   * The employment history records of the candidate. It's highly recommended
-   * to input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The employment history records of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the employment records.
    * * List different employment types separately, no matter how minor the
    * change is.
@@ -791,10 +738,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr
    *
    *
    * 
-   * Optional.
-   * The education history record of the candidate. It's highly recommended to
-   * input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The education history record of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the education records.
    * * List each education type separately, no matter how minor the change is.
    * For example, the profile contains the education experience from the same
@@ -812,10 +758,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr
    *
    *
    * 
-   * Optional.
-   * The education history record of the candidate. It's highly recommended to
-   * input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The education history record of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the education records.
    * * List each education type separately, no matter how minor the change is.
    * For example, the profile contains the education experience from the same
@@ -833,10 +778,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr
    *
    *
    * 
-   * Optional.
-   * The education history record of the candidate. It's highly recommended to
-   * input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The education history record of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the education records.
    * * List each education type separately, no matter how minor the change is.
    * For example, the profile contains the education experience from the same
@@ -854,10 +798,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr
    *
    *
    * 
-   * Optional.
-   * The education history record of the candidate. It's highly recommended to
-   * input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The education history record of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the education records.
    * * List each education type separately, no matter how minor the change is.
    * For example, the profile contains the education experience from the same
@@ -876,10 +819,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr
    *
    *
    * 
-   * Optional.
-   * The education history record of the candidate. It's highly recommended to
-   * input this information as accurately as possible to help improve search
-   * quality. Here are some recommendations:
+   * Optional. The education history record of the candidate. It's highly
+   * recommended to input this information as accurately as possible to help
+   * improve search quality. Here are some recommendations:
    * * Specify the start and end dates of the education records.
    * * List each education type separately, no matter how minor the change is.
    * For example, the profile contains the education experience from the same
@@ -898,9 +840,8 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr
    *
    *
    * 
-   * Optional.
-   * The skill set of the candidate. It's highly recommended to provide as
-   * much information as possible to help improve the search quality.
+   * Optional. The skill set of the candidate. It's highly recommended to
+   * provide as much information as possible to help improve the search quality.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -910,9 +851,8 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The skill set of the candidate. It's highly recommended to provide as
-   * much information as possible to help improve the search quality.
+   * Optional. The skill set of the candidate. It's highly recommended to
+   * provide as much information as possible to help improve the search quality.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -922,9 +862,8 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The skill set of the candidate. It's highly recommended to provide as
-   * much information as possible to help improve the search quality.
+   * Optional. The skill set of the candidate. It's highly recommended to
+   * provide as much information as possible to help improve the search quality.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -934,9 +873,8 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The skill set of the candidate. It's highly recommended to provide as
-   * much information as possible to help improve the search quality.
+   * Optional. The skill set of the candidate. It's highly recommended to
+   * provide as much information as possible to help improve the search quality.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -946,9 +884,8 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The skill set of the candidate. It's highly recommended to provide as
-   * much information as possible to help improve the search quality.
+   * Optional. The skill set of the candidate. It's highly recommended to
+   * provide as much information as possible to help improve the search quality.
    * 
* * repeated .google.cloud.talent.v4beta1.Skill skills = 19; @@ -959,10 +896,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The individual or collaborative activities which the candidate has
-   * participated in, for example, open-source projects, class assignments that
-   * aren't listed in
+   * Optional. The individual or collaborative activities which the candidate
+   * has participated in, for example, open-source projects, class assignments
+   * that aren't listed in
    * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
    * 
* @@ -973,10 +909,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The individual or collaborative activities which the candidate has
-   * participated in, for example, open-source projects, class assignments that
-   * aren't listed in
+   * Optional. The individual or collaborative activities which the candidate
+   * has participated in, for example, open-source projects, class assignments
+   * that aren't listed in
    * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
    * 
* @@ -987,10 +922,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The individual or collaborative activities which the candidate has
-   * participated in, for example, open-source projects, class assignments that
-   * aren't listed in
+   * Optional. The individual or collaborative activities which the candidate
+   * has participated in, for example, open-source projects, class assignments
+   * that aren't listed in
    * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
    * 
* @@ -1001,10 +935,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The individual or collaborative activities which the candidate has
-   * participated in, for example, open-source projects, class assignments that
-   * aren't listed in
+   * Optional. The individual or collaborative activities which the candidate
+   * has participated in, for example, open-source projects, class assignments
+   * that aren't listed in
    * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
    * 
* @@ -1016,10 +949,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The individual or collaborative activities which the candidate has
-   * participated in, for example, open-source projects, class assignments that
-   * aren't listed in
+   * Optional. The individual or collaborative activities which the candidate
+   * has participated in, for example, open-source projects, class assignments
+   * that aren't listed in
    * [employment_records][google.cloud.talent.v4beta1.Profile.employment_records].
    * 
* @@ -1031,8 +963,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The publications published by the candidate.
+   * Optional. The publications published by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -1042,8 +973,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The publications published by the candidate.
+   * Optional. The publications published by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -1053,8 +983,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The publications published by the candidate.
+   * Optional. The publications published by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -1064,8 +993,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The publications published by the candidate.
+   * Optional. The publications published by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -1076,8 +1004,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The publications published by the candidate.
+   * Optional. The publications published by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Publication publications = 21; @@ -1088,8 +1015,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The patents acquired by the candidate.
+   * Optional. The patents acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -1099,8 +1025,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The patents acquired by the candidate.
+   * Optional. The patents acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -1110,8 +1035,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The patents acquired by the candidate.
+   * Optional. The patents acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -1121,8 +1045,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The patents acquired by the candidate.
+   * Optional. The patents acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -1133,8 +1056,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The patents acquired by the candidate.
+   * Optional. The patents acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Patent patents = 22; @@ -1145,8 +1067,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The certifications acquired by the candidate.
+   * Optional. The certifications acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -1156,8 +1077,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The certifications acquired by the candidate.
+   * Optional. The certifications acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -1167,8 +1087,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The certifications acquired by the candidate.
+   * Optional. The certifications acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -1178,8 +1097,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The certifications acquired by the candidate.
+   * Optional. The certifications acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -1190,8 +1108,7 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * The certifications acquired by the candidate.
+   * Optional. The certifications acquired by the candidate.
    * 
* * repeated .google.cloud.talent.v4beta1.Certification certifications = 23; @@ -1284,10 +1201,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr * * *
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom profile
-   * attributes that aren't covered by the provided structured fields. See
-   * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * profile attributes that aren't covered by the provided structured fields.
+   * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
    * details.
    * At most 100 filterable and at most 100 unfilterable keys are supported. If
    * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -1311,10 +1227,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom profile
-   * attributes that aren't covered by the provided structured fields. See
-   * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * profile attributes that aren't covered by the provided structured fields.
+   * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
    * details.
    * At most 100 filterable and at most 100 unfilterable keys are supported. If
    * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -1342,10 +1257,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom profile
-   * attributes that aren't covered by the provided structured fields. See
-   * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * profile attributes that aren't covered by the provided structured fields.
+   * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
    * details.
    * At most 100 filterable and at most 100 unfilterable keys are supported. If
    * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -1370,10 +1284,9 @@ com.google.cloud.talent.v4beta1.EmploymentRecordOrBuilder getEmploymentRecordsOr
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom profile
-   * attributes that aren't covered by the provided structured fields. See
-   * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * profile attributes that aren't covered by the provided structured fields.
+   * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
    * details.
    * At most 100 filterable and at most 100 unfilterable keys are supported. If
    * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -1398,10 +1311,9 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Optional.
-   * A map of fields to hold both filterable and non-filterable custom profile
-   * attributes that aren't covered by the provided structured fields. See
-   * [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
+   * Optional. A map of fields to hold both filterable and non-filterable custom
+   * profile attributes that aren't covered by the provided structured fields.
+   * See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more
    * details.
    * At most 100 filterable and at most 100 unfilterable keys are supported. If
    * limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
@@ -1426,7 +1338,9 @@ com.google.cloud.talent.v4beta1.CustomAttribute getCustomAttributesOrDefault(
    *
    *
    * 
-   * Output only. Indicates if the profile is fully processed and searchable.
+   * Output only. Indicates if a summarized profile was created as part of the
+   * profile creation API call. This flag does not indicate whether a profile is
+   * searchable or not.
    * 
* * bool processed = 27; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileQuery.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileQuery.java index b82e3f2d5d63..28a9576510b7 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileQuery.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileQuery.java @@ -214,6 +214,23 @@ private ProfileQuery( java.lang.String s = input.readStringRequireUtf8(); customAttributeFilter_ = s; + break; + } + case 130: + { + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.Builder subBuilder = null; + if (candidateAvailabilityFilter_ != null) { + subBuilder = candidateAvailabilityFilter_.toBuilder(); + } + candidateAvailabilityFilter_ = + input.readMessage( + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.parser(), + extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(candidateAvailabilityFilter_); + candidateAvailabilityFilter_ = subBuilder.buildPartial(); + } + break; } default: @@ -288,8 +305,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * Keywords to match any text fields of profiles.
+   * Optional. Keywords to match any text fields of profiles.
    * For example, "software engineer in Palo Alto".
    * 
* @@ -310,8 +326,7 @@ public java.lang.String getQuery() { * * *
-   * Optional.
-   * Keywords to match any text fields of profiles.
+   * Optional. Keywords to match any text fields of profiles.
    * For example, "software engineer in Palo Alto".
    * 
* @@ -335,9 +350,8 @@ public com.google.protobuf.ByteString getQueryBytes() { * * *
-   * Optional.
-   * The location filter specifies geo-regions containing the profiles to
-   * search against.
+   * Optional. The location filter specifies geo-regions containing the profiles
+   * to search against.
    * If a location filter isn't specified, profiles fitting the other search
    * criteria are retrieved regardless of where they're located.
    * If
@@ -355,9 +369,8 @@ public java.util.List getLocatio
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the profiles to
-   * search against.
+   * Optional. The location filter specifies geo-regions containing the profiles
+   * to search against.
    * If a location filter isn't specified, profiles fitting the other search
    * criteria are retrieved regardless of where they're located.
    * If
@@ -376,9 +389,8 @@ public java.util.List getLocatio
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the profiles to
-   * search against.
+   * Optional. The location filter specifies geo-regions containing the profiles
+   * to search against.
    * If a location filter isn't specified, profiles fitting the other search
    * criteria are retrieved regardless of where they're located.
    * If
@@ -396,9 +408,8 @@ public int getLocationFiltersCount() {
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the profiles to
-   * search against.
+   * Optional. The location filter specifies geo-regions containing the profiles
+   * to search against.
    * If a location filter isn't specified, profiles fitting the other search
    * criteria are retrieved regardless of where they're located.
    * If
@@ -416,9 +427,8 @@ public com.google.cloud.talent.v4beta1.LocationFilter getLocationFilters(int ind
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the profiles to
-   * search against.
+   * Optional. The location filter specifies geo-regions containing the profiles
+   * to search against.
    * If a location filter isn't specified, profiles fitting the other search
    * criteria are retrieved regardless of where they're located.
    * If
@@ -440,8 +450,7 @@ public com.google.cloud.talent.v4beta1.LocationFilterOrBuilder getLocationFilter
    *
    *
    * 
-   * Optional.
-   * Job title filter specifies job titles of profiles to match on.
+   * Optional. Job title filter specifies job titles of profiles to match on.
    * If a job title isn't specified, profiles with any titles are retrieved.
    * If multiple values are specified, profiles are retrieved with any of the
    * specified job titles.
@@ -460,8 +469,7 @@ public java.util.List getJobTitl
    *
    *
    * 
-   * Optional.
-   * Job title filter specifies job titles of profiles to match on.
+   * Optional. Job title filter specifies job titles of profiles to match on.
    * If a job title isn't specified, profiles with any titles are retrieved.
    * If multiple values are specified, profiles are retrieved with any of the
    * specified job titles.
@@ -481,8 +489,7 @@ public java.util.List getJobTitl
    *
    *
    * 
-   * Optional.
-   * Job title filter specifies job titles of profiles to match on.
+   * Optional. Job title filter specifies job titles of profiles to match on.
    * If a job title isn't specified, profiles with any titles are retrieved.
    * If multiple values are specified, profiles are retrieved with any of the
    * specified job titles.
@@ -501,8 +508,7 @@ public int getJobTitleFiltersCount() {
    *
    *
    * 
-   * Optional.
-   * Job title filter specifies job titles of profiles to match on.
+   * Optional. Job title filter specifies job titles of profiles to match on.
    * If a job title isn't specified, profiles with any titles are retrieved.
    * If multiple values are specified, profiles are retrieved with any of the
    * specified job titles.
@@ -521,8 +527,7 @@ public com.google.cloud.talent.v4beta1.JobTitleFilter getJobTitleFilters(int ind
    *
    *
    * 
-   * Optional.
-   * Job title filter specifies job titles of profiles to match on.
+   * Optional. Job title filter specifies job titles of profiles to match on.
    * If a job title isn't specified, profiles with any titles are retrieved.
    * If multiple values are specified, profiles are retrieved with any of the
    * specified job titles.
@@ -545,8 +550,7 @@ public com.google.cloud.talent.v4beta1.JobTitleFilterOrBuilder getJobTitleFilter
    *
    *
    * 
-   * Optional.
-   * Employer filter specifies employers of profiles to match on.
+   * Optional. Employer filter specifies employers of profiles to match on.
    * If an employer filter isn't specified, profiles with any employers are
    * retrieved.
    * If multiple employer filters are specified, profiles with any matching
@@ -567,8 +571,7 @@ public java.util.List getEmploye
    *
    *
    * 
-   * Optional.
-   * Employer filter specifies employers of profiles to match on.
+   * Optional. Employer filter specifies employers of profiles to match on.
    * If an employer filter isn't specified, profiles with any employers are
    * retrieved.
    * If multiple employer filters are specified, profiles with any matching
@@ -590,8 +593,7 @@ public java.util.List getEmploye
    *
    *
    * 
-   * Optional.
-   * Employer filter specifies employers of profiles to match on.
+   * Optional. Employer filter specifies employers of profiles to match on.
    * If an employer filter isn't specified, profiles with any employers are
    * retrieved.
    * If multiple employer filters are specified, profiles with any matching
@@ -612,8 +614,7 @@ public int getEmployerFiltersCount() {
    *
    *
    * 
-   * Optional.
-   * Employer filter specifies employers of profiles to match on.
+   * Optional. Employer filter specifies employers of profiles to match on.
    * If an employer filter isn't specified, profiles with any employers are
    * retrieved.
    * If multiple employer filters are specified, profiles with any matching
@@ -634,8 +635,7 @@ public com.google.cloud.talent.v4beta1.EmployerFilter getEmployerFilters(int ind
    *
    *
    * 
-   * Optional.
-   * Employer filter specifies employers of profiles to match on.
+   * Optional. Employer filter specifies employers of profiles to match on.
    * If an employer filter isn't specified, profiles with any employers are
    * retrieved.
    * If multiple employer filters are specified, profiles with any matching
@@ -660,8 +660,7 @@ public com.google.cloud.talent.v4beta1.EmployerFilterOrBuilder getEmployerFilter
    *
    *
    * 
-   * Optional.
-   * Education filter specifies education of profiles to match on.
+   * Optional. Education filter specifies education of profiles to match on.
    * If an education filter isn't specified, profiles with any education are
    * retrieved.
    * If multiple education filters are specified, profiles that match any
@@ -681,8 +680,7 @@ public java.util.List getEducat
    *
    *
    * 
-   * Optional.
-   * Education filter specifies education of profiles to match on.
+   * Optional. Education filter specifies education of profiles to match on.
    * If an education filter isn't specified, profiles with any education are
    * retrieved.
    * If multiple education filters are specified, profiles that match any
@@ -703,8 +701,7 @@ public java.util.List getEducat
    *
    *
    * 
-   * Optional.
-   * Education filter specifies education of profiles to match on.
+   * Optional. Education filter specifies education of profiles to match on.
    * If an education filter isn't specified, profiles with any education are
    * retrieved.
    * If multiple education filters are specified, profiles that match any
@@ -724,8 +721,7 @@ public int getEducationFiltersCount() {
    *
    *
    * 
-   * Optional.
-   * Education filter specifies education of profiles to match on.
+   * Optional. Education filter specifies education of profiles to match on.
    * If an education filter isn't specified, profiles with any education are
    * retrieved.
    * If multiple education filters are specified, profiles that match any
@@ -745,8 +741,7 @@ public com.google.cloud.talent.v4beta1.EducationFilter getEducationFilters(int i
    *
    *
    * 
-   * Optional.
-   * Education filter specifies education of profiles to match on.
+   * Optional. Education filter specifies education of profiles to match on.
    * If an education filter isn't specified, profiles with any education are
    * retrieved.
    * If multiple education filters are specified, profiles that match any
@@ -770,8 +765,7 @@ public com.google.cloud.talent.v4beta1.EducationFilterOrBuilder getEducationFilt
    *
    *
    * 
-   * Optional.
-   * Skill filter specifies skill of profiles to match on.
+   * Optional. Skill filter specifies skill of profiles to match on.
    * If a skill filter isn't specified, profiles with any skills are retrieved.
    * If multiple skill filters are specified, profiles that match any skill
    * filters are retrieved.
@@ -790,8 +784,7 @@ public java.util.List getSkillFilte
    *
    *
    * 
-   * Optional.
-   * Skill filter specifies skill of profiles to match on.
+   * Optional. Skill filter specifies skill of profiles to match on.
    * If a skill filter isn't specified, profiles with any skills are retrieved.
    * If multiple skill filters are specified, profiles that match any skill
    * filters are retrieved.
@@ -811,8 +804,7 @@ public java.util.List getSkillFilte
    *
    *
    * 
-   * Optional.
-   * Skill filter specifies skill of profiles to match on.
+   * Optional. Skill filter specifies skill of profiles to match on.
    * If a skill filter isn't specified, profiles with any skills are retrieved.
    * If multiple skill filters are specified, profiles that match any skill
    * filters are retrieved.
@@ -831,8 +823,7 @@ public int getSkillFiltersCount() {
    *
    *
    * 
-   * Optional.
-   * Skill filter specifies skill of profiles to match on.
+   * Optional. Skill filter specifies skill of profiles to match on.
    * If a skill filter isn't specified, profiles with any skills are retrieved.
    * If multiple skill filters are specified, profiles that match any skill
    * filters are retrieved.
@@ -851,8 +842,7 @@ public com.google.cloud.talent.v4beta1.SkillFilter getSkillFilters(int index) {
    *
    *
    * 
-   * Optional.
-   * Skill filter specifies skill of profiles to match on.
+   * Optional. Skill filter specifies skill of profiles to match on.
    * If a skill filter isn't specified, profiles with any skills are retrieved.
    * If multiple skill filters are specified, profiles that match any skill
    * filters are retrieved.
@@ -875,9 +865,8 @@ public com.google.cloud.talent.v4beta1.SkillFilterOrBuilder getSkillFiltersOrBui
    *
    *
    * 
-   * Optional.
-   * Work experience filter specifies the total working experience of profiles
-   * to match on.
+   * Optional. Work experience filter specifies the total working experience of
+   * profiles to match on.
    * If a work experience filter isn't specified, profiles with any
    * professional experience are retrieved.
    * If multiple work experience filters are specified, profiles that match any
@@ -896,9 +885,8 @@ public com.google.cloud.talent.v4beta1.SkillFilterOrBuilder getSkillFiltersOrBui
    *
    *
    * 
-   * Optional.
-   * Work experience filter specifies the total working experience of profiles
-   * to match on.
+   * Optional. Work experience filter specifies the total working experience of
+   * profiles to match on.
    * If a work experience filter isn't specified, profiles with any
    * professional experience are retrieved.
    * If multiple work experience filters are specified, profiles that match any
@@ -917,9 +905,8 @@ public com.google.cloud.talent.v4beta1.SkillFilterOrBuilder getSkillFiltersOrBui
    *
    *
    * 
-   * Optional.
-   * Work experience filter specifies the total working experience of profiles
-   * to match on.
+   * Optional. Work experience filter specifies the total working experience of
+   * profiles to match on.
    * If a work experience filter isn't specified, profiles with any
    * professional experience are retrieved.
    * If multiple work experience filters are specified, profiles that match any
@@ -937,9 +924,8 @@ public int getWorkExperienceFilterCount() {
    *
    *
    * 
-   * Optional.
-   * Work experience filter specifies the total working experience of profiles
-   * to match on.
+   * Optional. Work experience filter specifies the total working experience of
+   * profiles to match on.
    * If a work experience filter isn't specified, profiles with any
    * professional experience are retrieved.
    * If multiple work experience filters are specified, profiles that match any
@@ -957,9 +943,8 @@ public com.google.cloud.talent.v4beta1.WorkExperienceFilter getWorkExperienceFil
    *
    *
    * 
-   * Optional.
-   * Work experience filter specifies the total working experience of profiles
-   * to match on.
+   * Optional. Work experience filter specifies the total working experience of
+   * profiles to match on.
    * If a work experience filter isn't specified, profiles with any
    * professional experience are retrieved.
    * If multiple work experience filters are specified, profiles that match any
@@ -981,9 +966,8 @@ public com.google.cloud.talent.v4beta1.WorkExperienceFilter getWorkExperienceFil
    *
    *
    * 
-   * Optional.
-   * Time filter specifies the create/update timestamp of the profiles to match
-   * on.
+   * Optional. Time filter specifies the create/update timestamp of the profiles
+   * to match on.
    * For example, search for profiles created since "2018-1-1".
    * 
* @@ -996,9 +980,8 @@ public java.util.List getTimeFilters * * *
-   * Optional.
-   * Time filter specifies the create/update timestamp of the profiles to match
-   * on.
+   * Optional. Time filter specifies the create/update timestamp of the profiles
+   * to match on.
    * For example, search for profiles created since "2018-1-1".
    * 
* @@ -1012,9 +995,8 @@ public java.util.List getTimeFilters * * *
-   * Optional.
-   * Time filter specifies the create/update timestamp of the profiles to match
-   * on.
+   * Optional. Time filter specifies the create/update timestamp of the profiles
+   * to match on.
    * For example, search for profiles created since "2018-1-1".
    * 
* @@ -1027,9 +1009,8 @@ public int getTimeFiltersCount() { * * *
-   * Optional.
-   * Time filter specifies the create/update timestamp of the profiles to match
-   * on.
+   * Optional. Time filter specifies the create/update timestamp of the profiles
+   * to match on.
    * For example, search for profiles created since "2018-1-1".
    * 
* @@ -1042,9 +1023,8 @@ public com.google.cloud.talent.v4beta1.TimeFilter getTimeFilters(int index) { * * *
-   * Optional.
-   * Time filter specifies the create/update timestamp of the profiles to match
-   * on.
+   * Optional. Time filter specifies the create/update timestamp of the profiles
+   * to match on.
    * For example, search for profiles created since "2018-1-1".
    * 
* @@ -1060,8 +1040,8 @@ public com.google.cloud.talent.v4beta1.TimeFilterOrBuilder getTimeFiltersOrBuild * * *
-   * Optional.
-   * The hirable filter specifies the profile's hirable status to match on.
+   * Optional. The hirable filter specifies the profile's hirable status to
+   * match on.
    * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -1073,8 +1053,8 @@ public boolean hasHirableFilter() { * * *
-   * Optional.
-   * The hirable filter specifies the profile's hirable status to match on.
+   * Optional. The hirable filter specifies the profile's hirable status to
+   * match on.
    * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -1088,8 +1068,8 @@ public com.google.protobuf.BoolValue getHirableFilter() { * * *
-   * Optional.
-   * The hirable filter specifies the profile's hirable status to match on.
+   * Optional. The hirable filter specifies the profile's hirable status to
+   * match on.
    * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -1105,8 +1085,8 @@ public com.google.protobuf.BoolValueOrBuilder getHirableFilterOrBuilder() { * * *
-   * Optional.
-   * The application date filters specify application date ranges to match on.
+   * Optional. The application date filters specify application date ranges to
+   * match on.
    * 
* * @@ -1121,8 +1101,8 @@ public com.google.protobuf.BoolValueOrBuilder getHirableFilterOrBuilder() { * * *
-   * Optional.
-   * The application date filters specify application date ranges to match on.
+   * Optional. The application date filters specify application date ranges to
+   * match on.
    * 
* * @@ -1137,8 +1117,8 @@ public com.google.protobuf.BoolValueOrBuilder getHirableFilterOrBuilder() { * * *
-   * Optional.
-   * The application date filters specify application date ranges to match on.
+   * Optional. The application date filters specify application date ranges to
+   * match on.
    * 
* * @@ -1152,8 +1132,8 @@ public int getApplicationDateFiltersCount() { * * *
-   * Optional.
-   * The application date filters specify application date ranges to match on.
+   * Optional. The application date filters specify application date ranges to
+   * match on.
    * 
* * @@ -1168,8 +1148,8 @@ public com.google.cloud.talent.v4beta1.ApplicationDateFilter getApplicationDateF * * *
-   * Optional.
-   * The application date filters specify application date ranges to match on.
+   * Optional. The application date filters specify application date ranges to
+   * match on.
    * 
* * @@ -1188,9 +1168,8 @@ public com.google.cloud.talent.v4beta1.ApplicationDateFilter getApplicationDateF * * *
-   * Optional.
-   * The application outcome notes filters specify the notes for the outcome of
-   * the job application.
+   * Optional. The application outcome notes filters specify the notes for the
+   * outcome of the job application.
    * 
* * @@ -1205,9 +1184,8 @@ public com.google.cloud.talent.v4beta1.ApplicationDateFilter getApplicationDateF * * *
-   * Optional.
-   * The application outcome notes filters specify the notes for the outcome of
-   * the job application.
+   * Optional. The application outcome notes filters specify the notes for the
+   * outcome of the job application.
    * 
* * @@ -1223,9 +1201,8 @@ public com.google.cloud.talent.v4beta1.ApplicationDateFilter getApplicationDateF * * *
-   * Optional.
-   * The application outcome notes filters specify the notes for the outcome of
-   * the job application.
+   * Optional. The application outcome notes filters specify the notes for the
+   * outcome of the job application.
    * 
* * @@ -1239,9 +1216,8 @@ public int getApplicationOutcomeNotesFiltersCount() { * * *
-   * Optional.
-   * The application outcome notes filters specify the notes for the outcome of
-   * the job application.
+   * Optional. The application outcome notes filters specify the notes for the
+   * outcome of the job application.
    * 
* * @@ -1256,9 +1232,8 @@ public int getApplicationOutcomeNotesFiltersCount() { * * *
-   * Optional.
-   * The application outcome notes filters specify the notes for the outcome of
-   * the job application.
+   * Optional. The application outcome notes filters specify the notes for the
+   * outcome of the job application.
    * 
* * @@ -1277,8 +1252,8 @@ public int getApplicationOutcomeNotesFiltersCount() { * * *
-   * Optional.
-   * The application job filters specify the job applied for in the application.
+   * Optional. The application job filters specify the job applied for in the
+   * application.
    * 
* * repeated .google.cloud.talent.v4beta1.ApplicationJobFilter application_job_filters = 13; @@ -1292,8 +1267,8 @@ public int getApplicationOutcomeNotesFiltersCount() { * * *
-   * Optional.
-   * The application job filters specify the job applied for in the application.
+   * Optional. The application job filters specify the job applied for in the
+   * application.
    * 
* * repeated .google.cloud.talent.v4beta1.ApplicationJobFilter application_job_filters = 13; @@ -1307,8 +1282,8 @@ public int getApplicationOutcomeNotesFiltersCount() { * * *
-   * Optional.
-   * The application job filters specify the job applied for in the application.
+   * Optional. The application job filters specify the job applied for in the
+   * application.
    * 
* * repeated .google.cloud.talent.v4beta1.ApplicationJobFilter application_job_filters = 13; @@ -1321,8 +1296,8 @@ public int getApplicationJobFiltersCount() { * * *
-   * Optional.
-   * The application job filters specify the job applied for in the application.
+   * Optional. The application job filters specify the job applied for in the
+   * application.
    * 
* * repeated .google.cloud.talent.v4beta1.ApplicationJobFilter application_job_filters = 13; @@ -1335,8 +1310,8 @@ public com.google.cloud.talent.v4beta1.ApplicationJobFilter getApplicationJobFil * * *
-   * Optional.
-   * The application job filters specify the job applied for in the application.
+   * Optional. The application job filters specify the job applied for in the
+   * application.
    * 
* * repeated .google.cloud.talent.v4beta1.ApplicationJobFilter application_job_filters = 13; @@ -1353,8 +1328,7 @@ public com.google.cloud.talent.v4beta1.ApplicationJobFilter getApplicationJobFil * * *
-   * Optional.
-   * This filter specifies a structured syntax to match against the
+   * Optional. This filter specifies a structured syntax to match against the
    * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes]
    * that are marked as `filterable`.
    * The syntax for this expression is a subset of Google SQL syntax.
@@ -1392,8 +1366,7 @@ public java.lang.String getCustomAttributeFilter() {
    *
    *
    * 
-   * Optional.
-   * This filter specifies a structured syntax to match against the
+   * Optional. This filter specifies a structured syntax to match against the
    * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes]
    * that are marked as `filterable`.
    * The syntax for this expression is a subset of Google SQL syntax.
@@ -1428,6 +1401,91 @@ public com.google.protobuf.ByteString getCustomAttributeFilterBytes() {
     }
   }
 
+  public static final int CANDIDATE_AVAILABILITY_FILTER_FIELD_NUMBER = 16;
+  private com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidateAvailabilityFilter_;
+  /**
+   *
+   *
+   * 
+   * Optional. The candidate availability filter which filters based on
+   * availability signals.
+   * Signal 1: Number of days since most recent job application.  See
+   * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+   * for the details of this signal.
+   * Signal 2: Number of days since last profile update. See
+   * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+   * for the details of this signal.
+   * The candidate availability filter helps a recruiter understand if a
+   * specific candidate is likely to be actively seeking new job opportunities
+   * based on an aggregated set of signals.  Specifically, the intent is NOT to
+   * indicate the candidate's potential qualification / interest / close ability
+   * for a specific job.
+   * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + public boolean hasCandidateAvailabilityFilter() { + return candidateAvailabilityFilter_ != null; + } + /** + * + * + *
+   * Optional. The candidate availability filter which filters based on
+   * availability signals.
+   * Signal 1: Number of days since most recent job application.  See
+   * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+   * for the details of this signal.
+   * Signal 2: Number of days since last profile update. See
+   * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+   * for the details of this signal.
+   * The candidate availability filter helps a recruiter understand if a
+   * specific candidate is likely to be actively seeking new job opportunities
+   * based on an aggregated set of signals.  Specifically, the intent is NOT to
+   * indicate the candidate's potential qualification / interest / close ability
+   * for a specific job.
+   * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + public com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter + getCandidateAvailabilityFilter() { + return candidateAvailabilityFilter_ == null + ? com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.getDefaultInstance() + : candidateAvailabilityFilter_; + } + /** + * + * + *
+   * Optional. The candidate availability filter which filters based on
+   * availability signals.
+   * Signal 1: Number of days since most recent job application.  See
+   * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+   * for the details of this signal.
+   * Signal 2: Number of days since last profile update. See
+   * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+   * for the details of this signal.
+   * The candidate availability filter helps a recruiter understand if a
+   * specific candidate is likely to be actively seeking new job opportunities
+   * based on an aggregated set of signals.  Specifically, the intent is NOT to
+   * indicate the candidate's potential qualification / interest / close ability
+   * for a specific job.
+   * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + public com.google.cloud.talent.v4beta1.CandidateAvailabilityFilterOrBuilder + getCandidateAvailabilityFilterOrBuilder() { + return getCandidateAvailabilityFilter(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -1481,6 +1539,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (!getCustomAttributeFilterBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 15, customAttributeFilter_); } + if (candidateAvailabilityFilter_ != null) { + output.writeMessage(16, getCandidateAvailabilityFilter()); + } unknownFields.writeTo(output); } @@ -1536,6 +1597,11 @@ public int getSerializedSize() { if (!getCustomAttributeFilterBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(15, customAttributeFilter_); } + if (candidateAvailabilityFilter_ != null) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize( + 16, getCandidateAvailabilityFilter()); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -1570,6 +1636,11 @@ public boolean equals(final java.lang.Object obj) { .equals(other.getApplicationOutcomeNotesFiltersList())) return false; if (!getApplicationJobFiltersList().equals(other.getApplicationJobFiltersList())) return false; if (!getCustomAttributeFilter().equals(other.getCustomAttributeFilter())) return false; + if (hasCandidateAvailabilityFilter() != other.hasCandidateAvailabilityFilter()) return false; + if (hasCandidateAvailabilityFilter()) { + if (!getCandidateAvailabilityFilter().equals(other.getCandidateAvailabilityFilter())) + return false; + } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -1629,6 +1700,10 @@ public int hashCode() { } hash = (37 * hash) + CUSTOM_ATTRIBUTE_FILTER_FIELD_NUMBER; hash = (53 * hash) + getCustomAttributeFilter().hashCode(); + if (hasCandidateAvailabilityFilter()) { + hash = (37 * hash) + CANDIDATE_AVAILABILITY_FILTER_FIELD_NUMBER; + hash = (53 * hash) + getCandidateAvailabilityFilter().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -1855,6 +1930,12 @@ public Builder clear() { } customAttributeFilter_ = ""; + if (candidateAvailabilityFilterBuilder_ == null) { + candidateAvailabilityFilter_ = null; + } else { + candidateAvailabilityFilter_ = null; + candidateAvailabilityFilterBuilder_ = null; + } return this; } @@ -1982,6 +2063,11 @@ public com.google.cloud.talent.v4beta1.ProfileQuery buildPartial() { result.applicationJobFilters_ = applicationJobFiltersBuilder_.build(); } result.customAttributeFilter_ = customAttributeFilter_; + if (candidateAvailabilityFilterBuilder_ == null) { + result.candidateAvailabilityFilter_ = candidateAvailabilityFilter_; + } else { + result.candidateAvailabilityFilter_ = candidateAvailabilityFilterBuilder_.build(); + } result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -2314,6 +2400,9 @@ public Builder mergeFrom(com.google.cloud.talent.v4beta1.ProfileQuery other) { customAttributeFilter_ = other.customAttributeFilter_; onChanged(); } + if (other.hasCandidateAvailabilityFilter()) { + mergeCandidateAvailabilityFilter(other.getCandidateAvailabilityFilter()); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -2350,8 +2439,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * Keywords to match any text fields of profiles.
+     * Optional. Keywords to match any text fields of profiles.
      * For example, "software engineer in Palo Alto".
      * 
* @@ -2372,8 +2460,7 @@ public java.lang.String getQuery() { * * *
-     * Optional.
-     * Keywords to match any text fields of profiles.
+     * Optional. Keywords to match any text fields of profiles.
      * For example, "software engineer in Palo Alto".
      * 
* @@ -2394,8 +2481,7 @@ public com.google.protobuf.ByteString getQueryBytes() { * * *
-     * Optional.
-     * Keywords to match any text fields of profiles.
+     * Optional. Keywords to match any text fields of profiles.
      * For example, "software engineer in Palo Alto".
      * 
* @@ -2414,8 +2500,7 @@ public Builder setQuery(java.lang.String value) { * * *
-     * Optional.
-     * Keywords to match any text fields of profiles.
+     * Optional. Keywords to match any text fields of profiles.
      * For example, "software engineer in Palo Alto".
      * 
* @@ -2431,8 +2516,7 @@ public Builder clearQuery() { * * *
-     * Optional.
-     * Keywords to match any text fields of profiles.
+     * Optional. Keywords to match any text fields of profiles.
      * For example, "software engineer in Palo Alto".
      * 
* @@ -2471,9 +2555,8 @@ private void ensureLocationFiltersIsMutable() { * * *
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2495,9 +2578,8 @@ public java.util.List getLocatio
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2519,9 +2601,8 @@ public int getLocationFiltersCount() {
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2543,9 +2624,8 @@ public com.google.cloud.talent.v4beta1.LocationFilter getLocationFilters(int ind
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2574,9 +2654,8 @@ public Builder setLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2602,9 +2681,8 @@ public Builder setLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2632,9 +2710,8 @@ public Builder addLocationFilters(com.google.cloud.talent.v4beta1.LocationFilter
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2663,9 +2740,8 @@ public Builder addLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2691,9 +2767,8 @@ public Builder addLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2719,9 +2794,8 @@ public Builder addLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2747,9 +2821,8 @@ public Builder addAllLocationFilters(
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2774,9 +2847,8 @@ public Builder clearLocationFilters() {
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2801,9 +2873,8 @@ public Builder removeLocationFilters(int index) {
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2822,9 +2893,8 @@ public com.google.cloud.talent.v4beta1.LocationFilter.Builder getLocationFilters
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2847,9 +2917,8 @@ public com.google.cloud.talent.v4beta1.LocationFilterOrBuilder getLocationFilter
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2872,9 +2941,8 @@ public com.google.cloud.talent.v4beta1.LocationFilterOrBuilder getLocationFilter
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2893,9 +2961,8 @@ public com.google.cloud.talent.v4beta1.LocationFilter.Builder addLocationFilters
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2915,9 +2982,8 @@ public com.google.cloud.talent.v4beta1.LocationFilter.Builder addLocationFilters
      *
      *
      * 
-     * Optional.
-     * The location filter specifies geo-regions containing the profiles to
-     * search against.
+     * Optional. The location filter specifies geo-regions containing the profiles
+     * to search against.
      * If a location filter isn't specified, profiles fitting the other search
      * criteria are retrieved regardless of where they're located.
      * If
@@ -2975,8 +3041,7 @@ private void ensureJobTitleFiltersIsMutable() {
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -2999,8 +3064,7 @@ public java.util.List getJobTitl
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3023,8 +3087,7 @@ public int getJobTitleFiltersCount() {
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3047,8 +3110,7 @@ public com.google.cloud.talent.v4beta1.JobTitleFilter getJobTitleFilters(int ind
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3078,8 +3140,7 @@ public Builder setJobTitleFilters(
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3106,8 +3167,7 @@ public Builder setJobTitleFilters(
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3136,8 +3196,7 @@ public Builder addJobTitleFilters(com.google.cloud.talent.v4beta1.JobTitleFilter
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3167,8 +3226,7 @@ public Builder addJobTitleFilters(
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3195,8 +3253,7 @@ public Builder addJobTitleFilters(
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3223,8 +3280,7 @@ public Builder addJobTitleFilters(
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3251,8 +3307,7 @@ public Builder addAllJobTitleFilters(
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3278,8 +3333,7 @@ public Builder clearJobTitleFilters() {
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3305,8 +3359,7 @@ public Builder removeJobTitleFilters(int index) {
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3326,8 +3379,7 @@ public com.google.cloud.talent.v4beta1.JobTitleFilter.Builder getJobTitleFilters
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3351,8 +3403,7 @@ public com.google.cloud.talent.v4beta1.JobTitleFilterOrBuilder getJobTitleFilter
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3376,8 +3427,7 @@ public com.google.cloud.talent.v4beta1.JobTitleFilterOrBuilder getJobTitleFilter
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3397,8 +3447,7 @@ public com.google.cloud.talent.v4beta1.JobTitleFilter.Builder addJobTitleFilters
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3419,8 +3468,7 @@ public com.google.cloud.talent.v4beta1.JobTitleFilter.Builder addJobTitleFilters
      *
      *
      * 
-     * Optional.
-     * Job title filter specifies job titles of profiles to match on.
+     * Optional. Job title filter specifies job titles of profiles to match on.
      * If a job title isn't specified, profiles with any titles are retrieved.
      * If multiple values are specified, profiles are retrieved with any of the
      * specified job titles.
@@ -3479,8 +3527,7 @@ private void ensureEmployerFiltersIsMutable() {
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3505,8 +3552,7 @@ public java.util.List getEmploye
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3531,8 +3577,7 @@ public int getEmployerFiltersCount() {
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3557,8 +3602,7 @@ public com.google.cloud.talent.v4beta1.EmployerFilter getEmployerFilters(int ind
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3590,8 +3634,7 @@ public Builder setEmployerFilters(
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3620,8 +3663,7 @@ public Builder setEmployerFilters(
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3652,8 +3694,7 @@ public Builder addEmployerFilters(com.google.cloud.talent.v4beta1.EmployerFilter
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3685,8 +3726,7 @@ public Builder addEmployerFilters(
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3715,8 +3755,7 @@ public Builder addEmployerFilters(
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3745,8 +3784,7 @@ public Builder addEmployerFilters(
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3775,8 +3813,7 @@ public Builder addAllEmployerFilters(
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3804,8 +3841,7 @@ public Builder clearEmployerFilters() {
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3833,8 +3869,7 @@ public Builder removeEmployerFilters(int index) {
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3856,8 +3891,7 @@ public com.google.cloud.talent.v4beta1.EmployerFilter.Builder getEmployerFilters
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3883,8 +3917,7 @@ public com.google.cloud.talent.v4beta1.EmployerFilterOrBuilder getEmployerFilter
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3910,8 +3943,7 @@ public com.google.cloud.talent.v4beta1.EmployerFilterOrBuilder getEmployerFilter
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3933,8 +3965,7 @@ public com.google.cloud.talent.v4beta1.EmployerFilter.Builder addEmployerFilters
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -3957,8 +3988,7 @@ public com.google.cloud.talent.v4beta1.EmployerFilter.Builder addEmployerFilters
      *
      *
      * 
-     * Optional.
-     * Employer filter specifies employers of profiles to match on.
+     * Optional. Employer filter specifies employers of profiles to match on.
      * If an employer filter isn't specified, profiles with any employers are
      * retrieved.
      * If multiple employer filters are specified, profiles with any matching
@@ -4019,8 +4049,7 @@ private void ensureEducationFiltersIsMutable() {
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4045,8 +4074,7 @@ private void ensureEducationFiltersIsMutable() {
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4070,8 +4098,7 @@ public int getEducationFiltersCount() {
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4095,8 +4122,7 @@ public com.google.cloud.talent.v4beta1.EducationFilter getEducationFilters(int i
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4127,8 +4153,7 @@ public Builder setEducationFilters(
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4156,8 +4181,7 @@ public Builder setEducationFilters(
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4187,8 +4211,7 @@ public Builder addEducationFilters(com.google.cloud.talent.v4beta1.EducationFilt
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4219,8 +4242,7 @@ public Builder addEducationFilters(
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4248,8 +4270,7 @@ public Builder addEducationFilters(
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4277,8 +4298,7 @@ public Builder addEducationFilters(
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4306,8 +4326,7 @@ public Builder addAllEducationFilters(
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4334,8 +4353,7 @@ public Builder clearEducationFilters() {
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4362,8 +4380,7 @@ public Builder removeEducationFilters(int index) {
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4384,8 +4401,7 @@ public com.google.cloud.talent.v4beta1.EducationFilter.Builder getEducationFilte
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4410,8 +4426,7 @@ public com.google.cloud.talent.v4beta1.EducationFilterOrBuilder getEducationFilt
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4436,8 +4451,7 @@ public com.google.cloud.talent.v4beta1.EducationFilterOrBuilder getEducationFilt
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4458,8 +4472,7 @@ public com.google.cloud.talent.v4beta1.EducationFilter.Builder addEducationFilte
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4481,8 +4494,7 @@ public com.google.cloud.talent.v4beta1.EducationFilter.Builder addEducationFilte
      *
      *
      * 
-     * Optional.
-     * Education filter specifies education of profiles to match on.
+     * Optional. Education filter specifies education of profiles to match on.
      * If an education filter isn't specified, profiles with any education are
      * retrieved.
      * If multiple education filters are specified, profiles that match any
@@ -4541,8 +4553,7 @@ private void ensureSkillFiltersIsMutable() {
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4565,8 +4576,7 @@ public java.util.List getSkillFilte
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4589,8 +4599,7 @@ public int getSkillFiltersCount() {
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4613,8 +4622,7 @@ public com.google.cloud.talent.v4beta1.SkillFilter getSkillFilters(int index) {
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4643,8 +4651,7 @@ public Builder setSkillFilters(int index, com.google.cloud.talent.v4beta1.SkillF
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4671,8 +4678,7 @@ public Builder setSkillFilters(
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4701,8 +4707,7 @@ public Builder addSkillFilters(com.google.cloud.talent.v4beta1.SkillFilter value
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4731,8 +4736,7 @@ public Builder addSkillFilters(int index, com.google.cloud.talent.v4beta1.SkillF
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4759,8 +4763,7 @@ public Builder addSkillFilters(
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4787,8 +4790,7 @@ public Builder addSkillFilters(
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4815,8 +4817,7 @@ public Builder addAllSkillFilters(
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4842,8 +4843,7 @@ public Builder clearSkillFilters() {
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4869,8 +4869,7 @@ public Builder removeSkillFilters(int index) {
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4889,8 +4888,7 @@ public com.google.cloud.talent.v4beta1.SkillFilter.Builder getSkillFiltersBuilde
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4914,8 +4912,7 @@ public com.google.cloud.talent.v4beta1.SkillFilterOrBuilder getSkillFiltersOrBui
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4939,8 +4936,7 @@ public com.google.cloud.talent.v4beta1.SkillFilterOrBuilder getSkillFiltersOrBui
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4960,8 +4956,7 @@ public com.google.cloud.talent.v4beta1.SkillFilter.Builder addSkillFiltersBuilde
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -4981,8 +4976,7 @@ public com.google.cloud.talent.v4beta1.SkillFilter.Builder addSkillFiltersBuilde
      *
      *
      * 
-     * Optional.
-     * Skill filter specifies skill of profiles to match on.
+     * Optional. Skill filter specifies skill of profiles to match on.
      * If a skill filter isn't specified, profiles with any skills are retrieved.
      * If multiple skill filters are specified, profiles that match any skill
      * filters are retrieved.
@@ -5038,9 +5032,8 @@ private void ensureWorkExperienceFilterIsMutable() {
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5063,9 +5056,8 @@ private void ensureWorkExperienceFilterIsMutable() {
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5087,9 +5079,8 @@ public int getWorkExperienceFilterCount() {
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5111,9 +5102,8 @@ public com.google.cloud.talent.v4beta1.WorkExperienceFilter getWorkExperienceFil
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5142,9 +5132,8 @@ public Builder setWorkExperienceFilter(
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5170,9 +5159,8 @@ public Builder setWorkExperienceFilter(
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5201,9 +5189,8 @@ public Builder addWorkExperienceFilter(
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5232,9 +5219,8 @@ public Builder addWorkExperienceFilter(
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5260,9 +5246,8 @@ public Builder addWorkExperienceFilter(
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5288,9 +5273,8 @@ public Builder addWorkExperienceFilter(
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5316,9 +5300,8 @@ public Builder addAllWorkExperienceFilter(
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5343,9 +5326,8 @@ public Builder clearWorkExperienceFilter() {
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5370,9 +5352,8 @@ public Builder removeWorkExperienceFilter(int index) {
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5391,9 +5372,8 @@ public Builder removeWorkExperienceFilter(int index) {
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5416,9 +5396,8 @@ public Builder removeWorkExperienceFilter(int index) {
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5441,9 +5420,8 @@ public Builder removeWorkExperienceFilter(int index) {
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5463,9 +5441,8 @@ public Builder removeWorkExperienceFilter(int index) {
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5486,9 +5463,8 @@ public Builder removeWorkExperienceFilter(int index) {
      *
      *
      * 
-     * Optional.
-     * Work experience filter specifies the total working experience of profiles
-     * to match on.
+     * Optional. Work experience filter specifies the total working experience of
+     * profiles to match on.
      * If a work experience filter isn't specified, profiles with any
      * professional experience are retrieved.
      * If multiple work experience filters are specified, profiles that match any
@@ -5545,9 +5521,8 @@ private void ensureTimeFiltersIsMutable() {
      *
      *
      * 
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5564,9 +5539,8 @@ public java.util.List getTimeFilters * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5583,9 +5557,8 @@ public int getTimeFiltersCount() { * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5602,9 +5575,8 @@ public com.google.cloud.talent.v4beta1.TimeFilter getTimeFilters(int index) { * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5627,9 +5599,8 @@ public Builder setTimeFilters(int index, com.google.cloud.talent.v4beta1.TimeFil * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5650,9 +5621,8 @@ public Builder setTimeFilters( * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5675,9 +5645,8 @@ public Builder addTimeFilters(com.google.cloud.talent.v4beta1.TimeFilter value) * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5700,9 +5669,8 @@ public Builder addTimeFilters(int index, com.google.cloud.talent.v4beta1.TimeFil * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5723,9 +5691,8 @@ public Builder addTimeFilters( * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5746,9 +5713,8 @@ public Builder addTimeFilters( * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5769,9 +5735,8 @@ public Builder addAllTimeFilters( * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5791,9 +5756,8 @@ public Builder clearTimeFilters() { * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5813,9 +5777,8 @@ public Builder removeTimeFilters(int index) { * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5828,9 +5791,8 @@ public com.google.cloud.talent.v4beta1.TimeFilter.Builder getTimeFiltersBuilder( * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5847,9 +5809,8 @@ public com.google.cloud.talent.v4beta1.TimeFilterOrBuilder getTimeFiltersOrBuild * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5867,9 +5828,8 @@ public com.google.cloud.talent.v4beta1.TimeFilterOrBuilder getTimeFiltersOrBuild * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5883,9 +5843,8 @@ public com.google.cloud.talent.v4beta1.TimeFilter.Builder addTimeFiltersBuilder( * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5899,9 +5858,8 @@ public com.google.cloud.talent.v4beta1.TimeFilter.Builder addTimeFiltersBuilder( * * *
-     * Optional.
-     * Time filter specifies the create/update timestamp of the profiles to match
-     * on.
+     * Optional. Time filter specifies the create/update timestamp of the profiles
+     * to match on.
      * For example, search for profiles created since "2018-1-1".
      * 
* @@ -5939,8 +5897,8 @@ public com.google.cloud.talent.v4beta1.TimeFilter.Builder addTimeFiltersBuilder( * * *
-     * Optional.
-     * The hirable filter specifies the profile's hirable status to match on.
+     * Optional. The hirable filter specifies the profile's hirable status to
+     * match on.
      * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -5952,8 +5910,8 @@ public boolean hasHirableFilter() { * * *
-     * Optional.
-     * The hirable filter specifies the profile's hirable status to match on.
+     * Optional. The hirable filter specifies the profile's hirable status to
+     * match on.
      * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -5971,8 +5929,8 @@ public com.google.protobuf.BoolValue getHirableFilter() { * * *
-     * Optional.
-     * The hirable filter specifies the profile's hirable status to match on.
+     * Optional. The hirable filter specifies the profile's hirable status to
+     * match on.
      * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -5994,8 +5952,8 @@ public Builder setHirableFilter(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * The hirable filter specifies the profile's hirable status to match on.
+     * Optional. The hirable filter specifies the profile's hirable status to
+     * match on.
      * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -6014,8 +5972,8 @@ public Builder setHirableFilter(com.google.protobuf.BoolValue.Builder builderFor * * *
-     * Optional.
-     * The hirable filter specifies the profile's hirable status to match on.
+     * Optional. The hirable filter specifies the profile's hirable status to
+     * match on.
      * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -6041,8 +5999,8 @@ public Builder mergeHirableFilter(com.google.protobuf.BoolValue value) { * * *
-     * Optional.
-     * The hirable filter specifies the profile's hirable status to match on.
+     * Optional. The hirable filter specifies the profile's hirable status to
+     * match on.
      * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -6062,8 +6020,8 @@ public Builder clearHirableFilter() { * * *
-     * Optional.
-     * The hirable filter specifies the profile's hirable status to match on.
+     * Optional. The hirable filter specifies the profile's hirable status to
+     * match on.
      * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -6077,8 +6035,8 @@ public com.google.protobuf.BoolValue.Builder getHirableFilterBuilder() { * * *
-     * Optional.
-     * The hirable filter specifies the profile's hirable status to match on.
+     * Optional. The hirable filter specifies the profile's hirable status to
+     * match on.
      * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -6096,8 +6054,8 @@ public com.google.protobuf.BoolValueOrBuilder getHirableFilterOrBuilder() { * * *
-     * Optional.
-     * The hirable filter specifies the profile's hirable status to match on.
+     * Optional. The hirable filter specifies the profile's hirable status to
+     * match on.
      * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -6141,8 +6099,8 @@ private void ensureApplicationDateFiltersIsMutable() { * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6161,8 +6119,8 @@ private void ensureApplicationDateFiltersIsMutable() { * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6180,8 +6138,8 @@ public int getApplicationDateFiltersCount() { * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6200,8 +6158,8 @@ public com.google.cloud.talent.v4beta1.ApplicationDateFilter getApplicationDateF * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6226,8 +6184,8 @@ public Builder setApplicationDateFilters( * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6249,8 +6207,8 @@ public Builder setApplicationDateFilters( * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6275,8 +6233,8 @@ public Builder addApplicationDateFilters( * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6301,8 +6259,8 @@ public Builder addApplicationDateFilters( * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6324,8 +6282,8 @@ public Builder addApplicationDateFilters( * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6347,8 +6305,8 @@ public Builder addApplicationDateFilters( * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6371,8 +6329,8 @@ public Builder addAllApplicationDateFilters( * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6393,8 +6351,8 @@ public Builder clearApplicationDateFilters() { * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6415,8 +6373,8 @@ public Builder removeApplicationDateFilters(int index) { * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6431,8 +6389,8 @@ public Builder removeApplicationDateFilters(int index) { * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6451,8 +6409,8 @@ public Builder removeApplicationDateFilters(int index) { * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6471,8 +6429,8 @@ public Builder removeApplicationDateFilters(int index) { * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6488,8 +6446,8 @@ public Builder removeApplicationDateFilters(int index) { * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6506,8 +6464,8 @@ public Builder removeApplicationDateFilters(int index) { * * *
-     * Optional.
-     * The application date filters specify application date ranges to match on.
+     * Optional. The application date filters specify application date ranges to
+     * match on.
      * 
* * @@ -6561,9 +6519,8 @@ private void ensureApplicationOutcomeNotesFiltersIsMutable() { * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6582,9 +6539,8 @@ private void ensureApplicationOutcomeNotesFiltersIsMutable() { * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6602,9 +6558,8 @@ public int getApplicationOutcomeNotesFiltersCount() { * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6623,9 +6578,8 @@ public int getApplicationOutcomeNotesFiltersCount() { * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6650,9 +6604,8 @@ public Builder setApplicationOutcomeNotesFilters( * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6675,9 +6628,8 @@ public Builder setApplicationOutcomeNotesFilters( * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6702,9 +6654,8 @@ public Builder addApplicationOutcomeNotesFilters( * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6729,9 +6680,8 @@ public Builder addApplicationOutcomeNotesFilters( * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6753,9 +6703,8 @@ public Builder addApplicationOutcomeNotesFilters( * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6778,9 +6727,8 @@ public Builder addApplicationOutcomeNotesFilters( * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6804,9 +6752,8 @@ public Builder addAllApplicationOutcomeNotesFilters( * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6827,9 +6774,8 @@ public Builder clearApplicationOutcomeNotesFilters() { * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6850,9 +6796,8 @@ public Builder removeApplicationOutcomeNotesFilters(int index) { * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6867,9 +6812,8 @@ public Builder removeApplicationOutcomeNotesFilters(int index) { * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6888,9 +6832,8 @@ public Builder removeApplicationOutcomeNotesFilters(int index) { * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6910,9 +6853,8 @@ public Builder removeApplicationOutcomeNotesFilters(int index) { * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6929,9 +6871,8 @@ public Builder removeApplicationOutcomeNotesFilters(int index) { * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -6949,9 +6890,8 @@ public Builder removeApplicationOutcomeNotesFilters(int index) { * * *
-     * Optional.
-     * The application outcome notes filters specify the notes for the outcome of
-     * the job application.
+     * Optional. The application outcome notes filters specify the notes for the
+     * outcome of the job application.
      * 
* * @@ -7005,8 +6945,8 @@ private void ensureApplicationJobFiltersIsMutable() { * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7025,8 +6965,8 @@ private void ensureApplicationJobFiltersIsMutable() { * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7044,8 +6984,8 @@ public int getApplicationJobFiltersCount() { * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7064,8 +7004,8 @@ public com.google.cloud.talent.v4beta1.ApplicationJobFilter getApplicationJobFil * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7090,8 +7030,8 @@ public Builder setApplicationJobFilters( * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7113,8 +7053,8 @@ public Builder setApplicationJobFilters( * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7139,8 +7079,8 @@ public Builder addApplicationJobFilters( * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7165,8 +7105,8 @@ public Builder addApplicationJobFilters( * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7188,8 +7128,8 @@ public Builder addApplicationJobFilters( * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7211,8 +7151,8 @@ public Builder addApplicationJobFilters( * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7234,8 +7174,8 @@ public Builder addAllApplicationJobFilters( * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7256,8 +7196,8 @@ public Builder clearApplicationJobFilters() { * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7278,8 +7218,8 @@ public Builder removeApplicationJobFilters(int index) { * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7294,8 +7234,8 @@ public Builder removeApplicationJobFilters(int index) { * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7314,8 +7254,8 @@ public Builder removeApplicationJobFilters(int index) { * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7334,8 +7274,8 @@ public Builder removeApplicationJobFilters(int index) { * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7351,8 +7291,8 @@ public Builder removeApplicationJobFilters(int index) { * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7369,8 +7309,8 @@ public Builder removeApplicationJobFilters(int index) { * * *
-     * Optional.
-     * The application job filters specify the job applied for in the application.
+     * Optional. The application job filters specify the job applied for in the
+     * application.
      * 
* * @@ -7407,8 +7347,7 @@ public Builder removeApplicationJobFilters(int index) { * * *
-     * Optional.
-     * This filter specifies a structured syntax to match against the
+     * Optional. This filter specifies a structured syntax to match against the
      * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes]
      * that are marked as `filterable`.
      * The syntax for this expression is a subset of Google SQL syntax.
@@ -7446,8 +7385,7 @@ public java.lang.String getCustomAttributeFilter() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies a structured syntax to match against the
+     * Optional. This filter specifies a structured syntax to match against the
      * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes]
      * that are marked as `filterable`.
      * The syntax for this expression is a subset of Google SQL syntax.
@@ -7485,8 +7423,7 @@ public com.google.protobuf.ByteString getCustomAttributeFilterBytes() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies a structured syntax to match against the
+     * Optional. This filter specifies a structured syntax to match against the
      * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes]
      * that are marked as `filterable`.
      * The syntax for this expression is a subset of Google SQL syntax.
@@ -7522,8 +7459,7 @@ public Builder setCustomAttributeFilter(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * This filter specifies a structured syntax to match against the
+     * Optional. This filter specifies a structured syntax to match against the
      * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes]
      * that are marked as `filterable`.
      * The syntax for this expression is a subset of Google SQL syntax.
@@ -7556,8 +7492,7 @@ public Builder clearCustomAttributeFilter() {
      *
      *
      * 
-     * Optional.
-     * This filter specifies a structured syntax to match against the
+     * Optional. This filter specifies a structured syntax to match against the
      * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes]
      * that are marked as `filterable`.
      * The syntax for this expression is a subset of Google SQL syntax.
@@ -7591,6 +7526,321 @@ public Builder setCustomAttributeFilterBytes(com.google.protobuf.ByteString valu
       return this;
     }
 
+    private com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter
+        candidateAvailabilityFilter_;
+    private com.google.protobuf.SingleFieldBuilderV3<
+            com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter,
+            com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.Builder,
+            com.google.cloud.talent.v4beta1.CandidateAvailabilityFilterOrBuilder>
+        candidateAvailabilityFilterBuilder_;
+    /**
+     *
+     *
+     * 
+     * Optional. The candidate availability filter which filters based on
+     * availability signals.
+     * Signal 1: Number of days since most recent job application.  See
+     * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+     * for the details of this signal.
+     * Signal 2: Number of days since last profile update. See
+     * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+     * for the details of this signal.
+     * The candidate availability filter helps a recruiter understand if a
+     * specific candidate is likely to be actively seeking new job opportunities
+     * based on an aggregated set of signals.  Specifically, the intent is NOT to
+     * indicate the candidate's potential qualification / interest / close ability
+     * for a specific job.
+     * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + public boolean hasCandidateAvailabilityFilter() { + return candidateAvailabilityFilterBuilder_ != null || candidateAvailabilityFilter_ != null; + } + /** + * + * + *
+     * Optional. The candidate availability filter which filters based on
+     * availability signals.
+     * Signal 1: Number of days since most recent job application.  See
+     * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+     * for the details of this signal.
+     * Signal 2: Number of days since last profile update. See
+     * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+     * for the details of this signal.
+     * The candidate availability filter helps a recruiter understand if a
+     * specific candidate is likely to be actively seeking new job opportunities
+     * based on an aggregated set of signals.  Specifically, the intent is NOT to
+     * indicate the candidate's potential qualification / interest / close ability
+     * for a specific job.
+     * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + public com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter + getCandidateAvailabilityFilter() { + if (candidateAvailabilityFilterBuilder_ == null) { + return candidateAvailabilityFilter_ == null + ? com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.getDefaultInstance() + : candidateAvailabilityFilter_; + } else { + return candidateAvailabilityFilterBuilder_.getMessage(); + } + } + /** + * + * + *
+     * Optional. The candidate availability filter which filters based on
+     * availability signals.
+     * Signal 1: Number of days since most recent job application.  See
+     * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+     * for the details of this signal.
+     * Signal 2: Number of days since last profile update. See
+     * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+     * for the details of this signal.
+     * The candidate availability filter helps a recruiter understand if a
+     * specific candidate is likely to be actively seeking new job opportunities
+     * based on an aggregated set of signals.  Specifically, the intent is NOT to
+     * indicate the candidate's potential qualification / interest / close ability
+     * for a specific job.
+     * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + public Builder setCandidateAvailabilityFilter( + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter value) { + if (candidateAvailabilityFilterBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + candidateAvailabilityFilter_ = value; + onChanged(); + } else { + candidateAvailabilityFilterBuilder_.setMessage(value); + } + + return this; + } + /** + * + * + *
+     * Optional. The candidate availability filter which filters based on
+     * availability signals.
+     * Signal 1: Number of days since most recent job application.  See
+     * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+     * for the details of this signal.
+     * Signal 2: Number of days since last profile update. See
+     * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+     * for the details of this signal.
+     * The candidate availability filter helps a recruiter understand if a
+     * specific candidate is likely to be actively seeking new job opportunities
+     * based on an aggregated set of signals.  Specifically, the intent is NOT to
+     * indicate the candidate's potential qualification / interest / close ability
+     * for a specific job.
+     * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + public Builder setCandidateAvailabilityFilter( + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.Builder builderForValue) { + if (candidateAvailabilityFilterBuilder_ == null) { + candidateAvailabilityFilter_ = builderForValue.build(); + onChanged(); + } else { + candidateAvailabilityFilterBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + * + * + *
+     * Optional. The candidate availability filter which filters based on
+     * availability signals.
+     * Signal 1: Number of days since most recent job application.  See
+     * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+     * for the details of this signal.
+     * Signal 2: Number of days since last profile update. See
+     * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+     * for the details of this signal.
+     * The candidate availability filter helps a recruiter understand if a
+     * specific candidate is likely to be actively seeking new job opportunities
+     * based on an aggregated set of signals.  Specifically, the intent is NOT to
+     * indicate the candidate's potential qualification / interest / close ability
+     * for a specific job.
+     * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + public Builder mergeCandidateAvailabilityFilter( + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter value) { + if (candidateAvailabilityFilterBuilder_ == null) { + if (candidateAvailabilityFilter_ != null) { + candidateAvailabilityFilter_ = + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.newBuilder( + candidateAvailabilityFilter_) + .mergeFrom(value) + .buildPartial(); + } else { + candidateAvailabilityFilter_ = value; + } + onChanged(); + } else { + candidateAvailabilityFilterBuilder_.mergeFrom(value); + } + + return this; + } + /** + * + * + *
+     * Optional. The candidate availability filter which filters based on
+     * availability signals.
+     * Signal 1: Number of days since most recent job application.  See
+     * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+     * for the details of this signal.
+     * Signal 2: Number of days since last profile update. See
+     * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+     * for the details of this signal.
+     * The candidate availability filter helps a recruiter understand if a
+     * specific candidate is likely to be actively seeking new job opportunities
+     * based on an aggregated set of signals.  Specifically, the intent is NOT to
+     * indicate the candidate's potential qualification / interest / close ability
+     * for a specific job.
+     * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + public Builder clearCandidateAvailabilityFilter() { + if (candidateAvailabilityFilterBuilder_ == null) { + candidateAvailabilityFilter_ = null; + onChanged(); + } else { + candidateAvailabilityFilter_ = null; + candidateAvailabilityFilterBuilder_ = null; + } + + return this; + } + /** + * + * + *
+     * Optional. The candidate availability filter which filters based on
+     * availability signals.
+     * Signal 1: Number of days since most recent job application.  See
+     * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+     * for the details of this signal.
+     * Signal 2: Number of days since last profile update. See
+     * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+     * for the details of this signal.
+     * The candidate availability filter helps a recruiter understand if a
+     * specific candidate is likely to be actively seeking new job opportunities
+     * based on an aggregated set of signals.  Specifically, the intent is NOT to
+     * indicate the candidate's potential qualification / interest / close ability
+     * for a specific job.
+     * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + public com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.Builder + getCandidateAvailabilityFilterBuilder() { + + onChanged(); + return getCandidateAvailabilityFilterFieldBuilder().getBuilder(); + } + /** + * + * + *
+     * Optional. The candidate availability filter which filters based on
+     * availability signals.
+     * Signal 1: Number of days since most recent job application.  See
+     * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+     * for the details of this signal.
+     * Signal 2: Number of days since last profile update. See
+     * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+     * for the details of this signal.
+     * The candidate availability filter helps a recruiter understand if a
+     * specific candidate is likely to be actively seeking new job opportunities
+     * based on an aggregated set of signals.  Specifically, the intent is NOT to
+     * indicate the candidate's potential qualification / interest / close ability
+     * for a specific job.
+     * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + public com.google.cloud.talent.v4beta1.CandidateAvailabilityFilterOrBuilder + getCandidateAvailabilityFilterOrBuilder() { + if (candidateAvailabilityFilterBuilder_ != null) { + return candidateAvailabilityFilterBuilder_.getMessageOrBuilder(); + } else { + return candidateAvailabilityFilter_ == null + ? com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.getDefaultInstance() + : candidateAvailabilityFilter_; + } + } + /** + * + * + *
+     * Optional. The candidate availability filter which filters based on
+     * availability signals.
+     * Signal 1: Number of days since most recent job application.  See
+     * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+     * for the details of this signal.
+     * Signal 2: Number of days since last profile update. See
+     * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+     * for the details of this signal.
+     * The candidate availability filter helps a recruiter understand if a
+     * specific candidate is likely to be actively seeking new job opportunities
+     * based on an aggregated set of signals.  Specifically, the intent is NOT to
+     * indicate the candidate's potential qualification / interest / close ability
+     * for a specific job.
+     * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter, + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.Builder, + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilterOrBuilder> + getCandidateAvailabilityFilterFieldBuilder() { + if (candidateAvailabilityFilterBuilder_ == null) { + candidateAvailabilityFilterBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter, + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter.Builder, + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilterOrBuilder>( + getCandidateAvailabilityFilter(), getParentForChildren(), isClean()); + candidateAvailabilityFilter_ = null; + } + return candidateAvailabilityFilterBuilder_; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileQueryOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileQueryOrBuilder.java index be78fbee0f93..5c9fcd5ee1c5 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileQueryOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileQueryOrBuilder.java @@ -12,8 +12,7 @@ public interface ProfileQueryOrBuilder * * *
-   * Optional.
-   * Keywords to match any text fields of profiles.
+   * Optional. Keywords to match any text fields of profiles.
    * For example, "software engineer in Palo Alto".
    * 
* @@ -24,8 +23,7 @@ public interface ProfileQueryOrBuilder * * *
-   * Optional.
-   * Keywords to match any text fields of profiles.
+   * Optional. Keywords to match any text fields of profiles.
    * For example, "software engineer in Palo Alto".
    * 
* @@ -37,9 +35,8 @@ public interface ProfileQueryOrBuilder * * *
-   * Optional.
-   * The location filter specifies geo-regions containing the profiles to
-   * search against.
+   * Optional. The location filter specifies geo-regions containing the profiles
+   * to search against.
    * If a location filter isn't specified, profiles fitting the other search
    * criteria are retrieved regardless of where they're located.
    * If
@@ -55,9 +52,8 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the profiles to
-   * search against.
+   * Optional. The location filter specifies geo-regions containing the profiles
+   * to search against.
    * If a location filter isn't specified, profiles fitting the other search
    * criteria are retrieved regardless of where they're located.
    * If
@@ -73,9 +69,8 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the profiles to
-   * search against.
+   * Optional. The location filter specifies geo-regions containing the profiles
+   * to search against.
    * If a location filter isn't specified, profiles fitting the other search
    * criteria are retrieved regardless of where they're located.
    * If
@@ -91,9 +86,8 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the profiles to
-   * search against.
+   * Optional. The location filter specifies geo-regions containing the profiles
+   * to search against.
    * If a location filter isn't specified, profiles fitting the other search
    * criteria are retrieved regardless of where they're located.
    * If
@@ -110,9 +104,8 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * The location filter specifies geo-regions containing the profiles to
-   * search against.
+   * Optional. The location filter specifies geo-regions containing the profiles
+   * to search against.
    * If a location filter isn't specified, profiles fitting the other search
    * criteria are retrieved regardless of where they're located.
    * If
@@ -129,8 +122,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Job title filter specifies job titles of profiles to match on.
+   * Optional. Job title filter specifies job titles of profiles to match on.
    * If a job title isn't specified, profiles with any titles are retrieved.
    * If multiple values are specified, profiles are retrieved with any of the
    * specified job titles.
@@ -147,8 +139,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Job title filter specifies job titles of profiles to match on.
+   * Optional. Job title filter specifies job titles of profiles to match on.
    * If a job title isn't specified, profiles with any titles are retrieved.
    * If multiple values are specified, profiles are retrieved with any of the
    * specified job titles.
@@ -165,8 +156,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Job title filter specifies job titles of profiles to match on.
+   * Optional. Job title filter specifies job titles of profiles to match on.
    * If a job title isn't specified, profiles with any titles are retrieved.
    * If multiple values are specified, profiles are retrieved with any of the
    * specified job titles.
@@ -183,8 +173,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Job title filter specifies job titles of profiles to match on.
+   * Optional. Job title filter specifies job titles of profiles to match on.
    * If a job title isn't specified, profiles with any titles are retrieved.
    * If multiple values are specified, profiles are retrieved with any of the
    * specified job titles.
@@ -202,8 +191,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Job title filter specifies job titles of profiles to match on.
+   * Optional. Job title filter specifies job titles of profiles to match on.
    * If a job title isn't specified, profiles with any titles are retrieved.
    * If multiple values are specified, profiles are retrieved with any of the
    * specified job titles.
@@ -221,8 +209,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Employer filter specifies employers of profiles to match on.
+   * Optional. Employer filter specifies employers of profiles to match on.
    * If an employer filter isn't specified, profiles with any employers are
    * retrieved.
    * If multiple employer filters are specified, profiles with any matching
@@ -241,8 +228,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Employer filter specifies employers of profiles to match on.
+   * Optional. Employer filter specifies employers of profiles to match on.
    * If an employer filter isn't specified, profiles with any employers are
    * retrieved.
    * If multiple employer filters are specified, profiles with any matching
@@ -261,8 +247,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Employer filter specifies employers of profiles to match on.
+   * Optional. Employer filter specifies employers of profiles to match on.
    * If an employer filter isn't specified, profiles with any employers are
    * retrieved.
    * If multiple employer filters are specified, profiles with any matching
@@ -281,8 +266,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Employer filter specifies employers of profiles to match on.
+   * Optional. Employer filter specifies employers of profiles to match on.
    * If an employer filter isn't specified, profiles with any employers are
    * retrieved.
    * If multiple employer filters are specified, profiles with any matching
@@ -302,8 +286,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Employer filter specifies employers of profiles to match on.
+   * Optional. Employer filter specifies employers of profiles to match on.
    * If an employer filter isn't specified, profiles with any employers are
    * retrieved.
    * If multiple employer filters are specified, profiles with any matching
@@ -323,8 +306,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Education filter specifies education of profiles to match on.
+   * Optional. Education filter specifies education of profiles to match on.
    * If an education filter isn't specified, profiles with any education are
    * retrieved.
    * If multiple education filters are specified, profiles that match any
@@ -342,8 +324,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Education filter specifies education of profiles to match on.
+   * Optional. Education filter specifies education of profiles to match on.
    * If an education filter isn't specified, profiles with any education are
    * retrieved.
    * If multiple education filters are specified, profiles that match any
@@ -361,8 +342,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Education filter specifies education of profiles to match on.
+   * Optional. Education filter specifies education of profiles to match on.
    * If an education filter isn't specified, profiles with any education are
    * retrieved.
    * If multiple education filters are specified, profiles that match any
@@ -380,8 +360,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Education filter specifies education of profiles to match on.
+   * Optional. Education filter specifies education of profiles to match on.
    * If an education filter isn't specified, profiles with any education are
    * retrieved.
    * If multiple education filters are specified, profiles that match any
@@ -400,8 +379,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Education filter specifies education of profiles to match on.
+   * Optional. Education filter specifies education of profiles to match on.
    * If an education filter isn't specified, profiles with any education are
    * retrieved.
    * If multiple education filters are specified, profiles that match any
@@ -420,8 +398,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Skill filter specifies skill of profiles to match on.
+   * Optional. Skill filter specifies skill of profiles to match on.
    * If a skill filter isn't specified, profiles with any skills are retrieved.
    * If multiple skill filters are specified, profiles that match any skill
    * filters are retrieved.
@@ -438,8 +415,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Skill filter specifies skill of profiles to match on.
+   * Optional. Skill filter specifies skill of profiles to match on.
    * If a skill filter isn't specified, profiles with any skills are retrieved.
    * If multiple skill filters are specified, profiles that match any skill
    * filters are retrieved.
@@ -456,8 +432,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Skill filter specifies skill of profiles to match on.
+   * Optional. Skill filter specifies skill of profiles to match on.
    * If a skill filter isn't specified, profiles with any skills are retrieved.
    * If multiple skill filters are specified, profiles that match any skill
    * filters are retrieved.
@@ -474,8 +449,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Skill filter specifies skill of profiles to match on.
+   * Optional. Skill filter specifies skill of profiles to match on.
    * If a skill filter isn't specified, profiles with any skills are retrieved.
    * If multiple skill filters are specified, profiles that match any skill
    * filters are retrieved.
@@ -493,8 +467,7 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Skill filter specifies skill of profiles to match on.
+   * Optional. Skill filter specifies skill of profiles to match on.
    * If a skill filter isn't specified, profiles with any skills are retrieved.
    * If multiple skill filters are specified, profiles that match any skill
    * filters are retrieved.
@@ -512,9 +485,8 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Work experience filter specifies the total working experience of profiles
-   * to match on.
+   * Optional. Work experience filter specifies the total working experience of
+   * profiles to match on.
    * If a work experience filter isn't specified, profiles with any
    * professional experience are retrieved.
    * If multiple work experience filters are specified, profiles that match any
@@ -531,9 +503,8 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Work experience filter specifies the total working experience of profiles
-   * to match on.
+   * Optional. Work experience filter specifies the total working experience of
+   * profiles to match on.
    * If a work experience filter isn't specified, profiles with any
    * professional experience are retrieved.
    * If multiple work experience filters are specified, profiles that match any
@@ -549,9 +520,8 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Work experience filter specifies the total working experience of profiles
-   * to match on.
+   * Optional. Work experience filter specifies the total working experience of
+   * profiles to match on.
    * If a work experience filter isn't specified, profiles with any
    * professional experience are retrieved.
    * If multiple work experience filters are specified, profiles that match any
@@ -567,9 +537,8 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Work experience filter specifies the total working experience of profiles
-   * to match on.
+   * Optional. Work experience filter specifies the total working experience of
+   * profiles to match on.
    * If a work experience filter isn't specified, profiles with any
    * professional experience are retrieved.
    * If multiple work experience filters are specified, profiles that match any
@@ -586,9 +555,8 @@ public interface ProfileQueryOrBuilder
    *
    *
    * 
-   * Optional.
-   * Work experience filter specifies the total working experience of profiles
-   * to match on.
+   * Optional. Work experience filter specifies the total working experience of
+   * profiles to match on.
    * If a work experience filter isn't specified, profiles with any
    * professional experience are retrieved.
    * If multiple work experience filters are specified, profiles that match any
@@ -606,9 +574,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF
    *
    *
    * 
-   * Optional.
-   * Time filter specifies the create/update timestamp of the profiles to match
-   * on.
+   * Optional. Time filter specifies the create/update timestamp of the profiles
+   * to match on.
    * For example, search for profiles created since "2018-1-1".
    * 
* @@ -619,9 +586,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * Time filter specifies the create/update timestamp of the profiles to match
-   * on.
+   * Optional. Time filter specifies the create/update timestamp of the profiles
+   * to match on.
    * For example, search for profiles created since "2018-1-1".
    * 
* @@ -632,9 +598,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * Time filter specifies the create/update timestamp of the profiles to match
-   * on.
+   * Optional. Time filter specifies the create/update timestamp of the profiles
+   * to match on.
    * For example, search for profiles created since "2018-1-1".
    * 
* @@ -645,9 +610,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * Time filter specifies the create/update timestamp of the profiles to match
-   * on.
+   * Optional. Time filter specifies the create/update timestamp of the profiles
+   * to match on.
    * For example, search for profiles created since "2018-1-1".
    * 
* @@ -659,9 +623,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * Time filter specifies the create/update timestamp of the profiles to match
-   * on.
+   * Optional. Time filter specifies the create/update timestamp of the profiles
+   * to match on.
    * For example, search for profiles created since "2018-1-1".
    * 
* @@ -673,8 +636,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * The hirable filter specifies the profile's hirable status to match on.
+   * Optional. The hirable filter specifies the profile's hirable status to
+   * match on.
    * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -684,8 +647,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * The hirable filter specifies the profile's hirable status to match on.
+   * Optional. The hirable filter specifies the profile's hirable status to
+   * match on.
    * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -695,8 +658,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * The hirable filter specifies the profile's hirable status to match on.
+   * Optional. The hirable filter specifies the profile's hirable status to
+   * match on.
    * 
* * .google.protobuf.BoolValue hirable_filter = 9; @@ -707,8 +670,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * The application date filters specify application date ranges to match on.
+   * Optional. The application date filters specify application date ranges to
+   * match on.
    * 
* * @@ -721,8 +684,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * The application date filters specify application date ranges to match on.
+   * Optional. The application date filters specify application date ranges to
+   * match on.
    * 
* * @@ -734,8 +697,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * The application date filters specify application date ranges to match on.
+   * Optional. The application date filters specify application date ranges to
+   * match on.
    * 
* * @@ -747,8 +710,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * The application date filters specify application date ranges to match on.
+   * Optional. The application date filters specify application date ranges to
+   * match on.
    * 
* * @@ -761,8 +724,8 @@ com.google.cloud.talent.v4beta1.WorkExperienceFilterOrBuilder getWorkExperienceF * * *
-   * Optional.
-   * The application date filters specify application date ranges to match on.
+   * Optional. The application date filters specify application date ranges to
+   * match on.
    * 
* * @@ -776,9 +739,8 @@ com.google.cloud.talent.v4beta1.ApplicationDateFilterOrBuilder getApplicationDat * * *
-   * Optional.
-   * The application outcome notes filters specify the notes for the outcome of
-   * the job application.
+   * Optional. The application outcome notes filters specify the notes for the
+   * outcome of the job application.
    * 
* * @@ -791,9 +753,8 @@ com.google.cloud.talent.v4beta1.ApplicationDateFilterOrBuilder getApplicationDat * * *
-   * Optional.
-   * The application outcome notes filters specify the notes for the outcome of
-   * the job application.
+   * Optional. The application outcome notes filters specify the notes for the
+   * outcome of the job application.
    * 
* * @@ -806,9 +767,8 @@ com.google.cloud.talent.v4beta1.ApplicationOutcomeNotesFilter getApplicationOutc * * *
-   * Optional.
-   * The application outcome notes filters specify the notes for the outcome of
-   * the job application.
+   * Optional. The application outcome notes filters specify the notes for the
+   * outcome of the job application.
    * 
* * @@ -820,9 +780,8 @@ com.google.cloud.talent.v4beta1.ApplicationOutcomeNotesFilter getApplicationOutc * * *
-   * Optional.
-   * The application outcome notes filters specify the notes for the outcome of
-   * the job application.
+   * Optional. The application outcome notes filters specify the notes for the
+   * outcome of the job application.
    * 
* * @@ -835,9 +794,8 @@ com.google.cloud.talent.v4beta1.ApplicationOutcomeNotesFilter getApplicationOutc * * *
-   * Optional.
-   * The application outcome notes filters specify the notes for the outcome of
-   * the job application.
+   * Optional. The application outcome notes filters specify the notes for the
+   * outcome of the job application.
    * 
* * @@ -851,8 +809,8 @@ com.google.cloud.talent.v4beta1.ApplicationOutcomeNotesFilter getApplicationOutc * * *
-   * Optional.
-   * The application job filters specify the job applied for in the application.
+   * Optional. The application job filters specify the job applied for in the
+   * application.
    * 
* * repeated .google.cloud.talent.v4beta1.ApplicationJobFilter application_job_filters = 13; @@ -864,8 +822,8 @@ com.google.cloud.talent.v4beta1.ApplicationOutcomeNotesFilter getApplicationOutc * * *
-   * Optional.
-   * The application job filters specify the job applied for in the application.
+   * Optional. The application job filters specify the job applied for in the
+   * application.
    * 
* * repeated .google.cloud.talent.v4beta1.ApplicationJobFilter application_job_filters = 13; @@ -876,8 +834,8 @@ com.google.cloud.talent.v4beta1.ApplicationOutcomeNotesFilter getApplicationOutc * * *
-   * Optional.
-   * The application job filters specify the job applied for in the application.
+   * Optional. The application job filters specify the job applied for in the
+   * application.
    * 
* * repeated .google.cloud.talent.v4beta1.ApplicationJobFilter application_job_filters = 13; @@ -888,8 +846,8 @@ com.google.cloud.talent.v4beta1.ApplicationOutcomeNotesFilter getApplicationOutc * * *
-   * Optional.
-   * The application job filters specify the job applied for in the application.
+   * Optional. The application job filters specify the job applied for in the
+   * application.
    * 
* * repeated .google.cloud.talent.v4beta1.ApplicationJobFilter application_job_filters = 13; @@ -901,8 +859,8 @@ com.google.cloud.talent.v4beta1.ApplicationOutcomeNotesFilter getApplicationOutc * * *
-   * Optional.
-   * The application job filters specify the job applied for in the application.
+   * Optional. The application job filters specify the job applied for in the
+   * application.
    * 
* * repeated .google.cloud.talent.v4beta1.ApplicationJobFilter application_job_filters = 13; @@ -915,8 +873,7 @@ com.google.cloud.talent.v4beta1.ApplicationJobFilterOrBuilder getApplicationJobF * * *
-   * Optional.
-   * This filter specifies a structured syntax to match against the
+   * Optional. This filter specifies a structured syntax to match against the
    * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes]
    * that are marked as `filterable`.
    * The syntax for this expression is a subset of Google SQL syntax.
@@ -944,8 +901,7 @@ com.google.cloud.talent.v4beta1.ApplicationJobFilterOrBuilder getApplicationJobF
    *
    *
    * 
-   * Optional.
-   * This filter specifies a structured syntax to match against the
+   * Optional. This filter specifies a structured syntax to match against the
    * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes]
    * that are marked as `filterable`.
    * The syntax for this expression is a subset of Google SQL syntax.
@@ -969,4 +925,78 @@ com.google.cloud.talent.v4beta1.ApplicationJobFilterOrBuilder getApplicationJobF
    * string custom_attribute_filter = 15;
    */
   com.google.protobuf.ByteString getCustomAttributeFilterBytes();
+
+  /**
+   *
+   *
+   * 
+   * Optional. The candidate availability filter which filters based on
+   * availability signals.
+   * Signal 1: Number of days since most recent job application.  See
+   * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+   * for the details of this signal.
+   * Signal 2: Number of days since last profile update. See
+   * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+   * for the details of this signal.
+   * The candidate availability filter helps a recruiter understand if a
+   * specific candidate is likely to be actively seeking new job opportunities
+   * based on an aggregated set of signals.  Specifically, the intent is NOT to
+   * indicate the candidate's potential qualification / interest / close ability
+   * for a specific job.
+   * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + boolean hasCandidateAvailabilityFilter(); + /** + * + * + *
+   * Optional. The candidate availability filter which filters based on
+   * availability signals.
+   * Signal 1: Number of days since most recent job application.  See
+   * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+   * for the details of this signal.
+   * Signal 2: Number of days since last profile update. See
+   * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+   * for the details of this signal.
+   * The candidate availability filter helps a recruiter understand if a
+   * specific candidate is likely to be actively seeking new job opportunities
+   * based on an aggregated set of signals.  Specifically, the intent is NOT to
+   * indicate the candidate's potential qualification / interest / close ability
+   * for a specific job.
+   * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilter getCandidateAvailabilityFilter(); + /** + * + * + *
+   * Optional. The candidate availability filter which filters based on
+   * availability signals.
+   * Signal 1: Number of days since most recent job application.  See
+   * [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal]
+   * for the details of this signal.
+   * Signal 2: Number of days since last profile update. See
+   * [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal]
+   * for the details of this signal.
+   * The candidate availability filter helps a recruiter understand if a
+   * specific candidate is likely to be actively seeking new job opportunities
+   * based on an aggregated set of signals.  Specifically, the intent is NOT to
+   * indicate the candidate's potential qualification / interest / close ability
+   * for a specific job.
+   * 
+ * + * + * .google.cloud.talent.v4beta1.CandidateAvailabilityFilter candidate_availability_filter = 16; + * + */ + com.google.cloud.talent.v4beta1.CandidateAvailabilityFilterOrBuilder + getCandidateAvailabilityFilterOrBuilder(); } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileServiceProto.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileServiceProto.java index 6f04dd255741..f71e16cce25f 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileServiceProto.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ProfileServiceProto.java @@ -59,78 +59,82 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { java.lang.String[] descriptorData = { "\n1google/cloud/talent/v4beta1/profile_se" + "rvice.proto\022\033google.cloud.talent.v4beta1" - + "\032\034google/api/annotations.proto\032(google/c" - + "loud/talent/v4beta1/common.proto\032)google" - + "/cloud/talent/v4beta1/filters.proto\032+goo" - + "gle/cloud/talent/v4beta1/histogram.proto" - + "\032)google/cloud/talent/v4beta1/profile.pr" - + "oto\032\033google/protobuf/empty.proto\032 google" - + "/protobuf/field_mask.proto\"{\n\023ListProfil" - + "esRequest\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_token\030" - + "\002 \001(\t\022\021\n\tpage_size\030\003 \001(\005\022-\n\tread_mask\030\004 " - + "\001(\0132\032.google.protobuf.FieldMask\"g\n\024ListP" - + "rofilesResponse\0226\n\010profiles\030\001 \003(\0132$.goog" - + "le.cloud.talent.v4beta1.Profile\022\027\n\017next_" - + "page_token\030\002 \001(\t\"]\n\024CreateProfileRequest" - + "\022\016\n\006parent\030\001 \001(\t\0225\n\007profile\030\002 \001(\0132$.goog" - + "le.cloud.talent.v4beta1.Profile\"!\n\021GetPr" - + "ofileRequest\022\014\n\004name\030\001 \001(\t\"~\n\024UpdateProf" - + "ileRequest\0225\n\007profile\030\001 \001(\0132$.google.clo" - + "ud.talent.v4beta1.Profile\022/\n\013update_mask" - + "\030\002 \001(\0132\032.google.protobuf.FieldMask\"$\n\024De" - + "leteProfileRequest\022\014\n\004name\030\001 \001(\t\"\374\002\n\025Sea" - + "rchProfilesRequest\022\016\n\006parent\030\001 \001(\t\022F\n\020re" - + "quest_metadata\030\002 \001(\0132,.google.cloud.tale" - + "nt.v4beta1.RequestMetadata\022@\n\rprofile_qu" - + "ery\030\003 \001(\0132).google.cloud.talent.v4beta1." - + "ProfileQuery\022\021\n\tpage_size\030\004 \001(\005\022\022\n\npage_" - + "token\030\005 \001(\t\022\016\n\006offset\030\006 \001(\005\022\033\n\023disable_s" - + "pell_check\030\007 \001(\010\022\020\n\010order_by\030\010 \001(\t\022\033\n\023ca" - + "se_sensitive_sort\030\t \001(\010\022F\n\021histogram_que" - + "ries\030\n \003(\0132+.google.cloud.talent.v4beta1" - + ".HistogramQuery\"\374\002\n\026SearchProfilesRespon" - + "se\022\034\n\024estimated_total_size\030\001 \001(\003\022I\n\020spel" - + "l_correction\030\002 \001(\0132/.google.cloud.talent" - + ".v4beta1.SpellingCorrection\022?\n\010metadata\030" - + "\003 \001(\0132-.google.cloud.talent.v4beta1.Resp" - + "onseMetadata\022\027\n\017next_page_token\030\004 \001(\t\022R\n" - + "\027histogram_query_results\030\005 \003(\01321.google." - + "cloud.talent.v4beta1.HistogramQueryResul" - + "t\022K\n\023summarized_profiles\030\006 \003(\0132..google." - + "cloud.talent.v4beta1.SummarizedProfile\"\202" - + "\001\n\021SummarizedProfile\0226\n\010profiles\030\001 \003(\0132$" - + ".google.cloud.talent.v4beta1.Profile\0225\n\007" - + "summary\030\002 \001(\0132$.google.cloud.talent.v4be" - + "ta1.Profile2\377\007\n\016ProfileService\022\254\001\n\014ListP" - + "rofiles\0220.google.cloud.talent.v4beta1.Li" - + "stProfilesRequest\0321.google.cloud.talent." - + "v4beta1.ListProfilesResponse\"7\202\323\344\223\0021\022//v" - + "4beta1/{parent=projects/*/tenants/*}/pro" - + "files\022\244\001\n\rCreateProfile\0221.google.cloud.t" - + "alent.v4beta1.CreateProfileRequest\032$.goo" - + "gle.cloud.talent.v4beta1.Profile\":\202\323\344\223\0024" - + "\"//v4beta1/{parent=projects/*/tenants/*}" - + "/profiles:\001*\022\233\001\n\nGetProfile\022..google.clo" - + "ud.talent.v4beta1.GetProfileRequest\032$.go" - + "ogle.cloud.talent.v4beta1.Profile\"7\202\323\344\223\002" - + "1\022//v4beta1/{name=projects/*/tenants/*/p" - + "rofiles/*}\022\254\001\n\rUpdateProfile\0221.google.cl" - + "oud.talent.v4beta1.UpdateProfileRequest\032" - + "$.google.cloud.talent.v4beta1.Profile\"B\202" - + "\323\344\223\002<27/v4beta1/{profile.name=projects/*" - + "/tenants/*/profiles/*}:\001*\022\223\001\n\rDeleteProf" - + "ile\0221.google.cloud.talent.v4beta1.Delete" - + "ProfileRequest\032\026.google.protobuf.Empty\"7" - + "\202\323\344\223\0021*//v4beta1/{name=projects/*/tenant" - + "s/*/profiles/*}\022\263\001\n\016SearchProfiles\0222.goo" - + "gle.cloud.talent.v4beta1.SearchProfilesR" - + "equest\0323.google.cloud.talent.v4beta1.Sea" - + "rchProfilesResponse\"8\202\323\344\223\0022\"-/v4beta1/{p" - + "arent=projects/*/tenants/*}:search:\001*B\201\001" - + "\n\037com.google.cloud.talent.v4beta1B\023Profi" - + "leServiceProtoP\001ZAgoogle.golang.org/genp" - + "roto/googleapis/cloud/talent/v4beta1;tal" - + "ent\242\002\003CTSb\006proto3" + + "\032\034google/api/annotations.proto\032\027google/a" + + "pi/client.proto\032(google/cloud/talent/v4b" + + "eta1/common.proto\032)google/cloud/talent/v" + + "4beta1/filters.proto\032+google/cloud/talen" + + "t/v4beta1/histogram.proto\032)google/cloud/" + + "talent/v4beta1/profile.proto\032\033google/pro" + + "tobuf/empty.proto\032 google/protobuf/field" + + "_mask.proto\"{\n\023ListProfilesRequest\022\016\n\006pa" + + "rent\030\001 \001(\t\022\022\n\npage_token\030\002 \001(\t\022\021\n\tpage_s" + + "ize\030\003 \001(\005\022-\n\tread_mask\030\004 \001(\0132\032.google.pr" + + "otobuf.FieldMask\"g\n\024ListProfilesResponse" + + "\0226\n\010profiles\030\001 \003(\0132$.google.cloud.talent" + + ".v4beta1.Profile\022\027\n\017next_page_token\030\002 \001(" + + "\t\"]\n\024CreateProfileRequest\022\016\n\006parent\030\001 \001(" + + "\t\0225\n\007profile\030\002 \001(\0132$.google.cloud.talent" + + ".v4beta1.Profile\"!\n\021GetProfileRequest\022\014\n" + + "\004name\030\001 \001(\t\"~\n\024UpdateProfileRequest\0225\n\007p" + + "rofile\030\001 \001(\0132$.google.cloud.talent.v4bet" + + "a1.Profile\022/\n\013update_mask\030\002 \001(\0132\032.google" + + ".protobuf.FieldMask\"$\n\024DeleteProfileRequ" + + "est\022\014\n\004name\030\001 \001(\t\"\223\003\n\025SearchProfilesRequ" + + "est\022\016\n\006parent\030\001 \001(\t\022F\n\020request_metadata\030" + + "\002 \001(\0132,.google.cloud.talent.v4beta1.Requ" + + "estMetadata\022@\n\rprofile_query\030\003 \001(\0132).goo" + + "gle.cloud.talent.v4beta1.ProfileQuery\022\021\n" + + "\tpage_size\030\004 \001(\005\022\022\n\npage_token\030\005 \001(\t\022\016\n\006" + + "offset\030\006 \001(\005\022\033\n\023disable_spell_check\030\007 \001(" + + "\010\022\020\n\010order_by\030\010 \001(\t\022\033\n\023case_sensitive_so" + + "rt\030\t \001(\010\022F\n\021histogram_queries\030\n \003(\0132+.go" + + "ogle.cloud.talent.v4beta1.HistogramQuery" + + "\022\025\n\rresult_set_id\030\014 \001(\t\"\223\003\n\026SearchProfil" + + "esResponse\022\034\n\024estimated_total_size\030\001 \001(\003" + + "\022I\n\020spell_correction\030\002 \001(\0132/.google.clou" + + "d.talent.v4beta1.SpellingCorrection\022?\n\010m" + + "etadata\030\003 \001(\0132-.google.cloud.talent.v4be" + + "ta1.ResponseMetadata\022\027\n\017next_page_token\030" + + "\004 \001(\t\022R\n\027histogram_query_results\030\005 \003(\01321" + + ".google.cloud.talent.v4beta1.HistogramQu" + + "eryResult\022K\n\023summarized_profiles\030\006 \003(\0132." + + ".google.cloud.talent.v4beta1.SummarizedP" + + "rofile\022\025\n\rresult_set_id\030\007 \001(\t\"\202\001\n\021Summar" + + "izedProfile\0226\n\010profiles\030\001 \003(\0132$.google.c" + + "loud.talent.v4beta1.Profile\0225\n\007summary\030\002" + + " \001(\0132$.google.cloud.talent.v4beta1.Profi" + + "le2\355\010\n\016ProfileService\022\254\001\n\014ListProfiles\0220" + + ".google.cloud.talent.v4beta1.ListProfile" + + "sRequest\0321.google.cloud.talent.v4beta1.L" + + "istProfilesResponse\"7\202\323\344\223\0021\022//v4beta1/{p" + + "arent=projects/*/tenants/*}/profiles\022\244\001\n" + + "\rCreateProfile\0221.google.cloud.talent.v4b" + + "eta1.CreateProfileRequest\032$.google.cloud" + + ".talent.v4beta1.Profile\":\202\323\344\223\0024\"//v4beta" + + "1/{parent=projects/*/tenants/*}/profiles" + + ":\001*\022\233\001\n\nGetProfile\022..google.cloud.talent" + + ".v4beta1.GetProfileRequest\032$.google.clou" + + "d.talent.v4beta1.Profile\"7\202\323\344\223\0021\022//v4bet" + + "a1/{name=projects/*/tenants/*/profiles/*" + + "}\022\254\001\n\rUpdateProfile\0221.google.cloud.talen" + + "t.v4beta1.UpdateProfileRequest\032$.google." + + "cloud.talent.v4beta1.Profile\"B\202\323\344\223\002<27/v" + + "4beta1/{profile.name=projects/*/tenants/" + + "*/profiles/*}:\001*\022\223\001\n\rDeleteProfile\0221.goo" + + "gle.cloud.talent.v4beta1.DeleteProfileRe" + + "quest\032\026.google.protobuf.Empty\"7\202\323\344\223\0021*//" + + "v4beta1/{name=projects/*/tenants/*/profi" + + "les/*}\022\263\001\n\016SearchProfiles\0222.google.cloud" + + ".talent.v4beta1.SearchProfilesRequest\0323." + + "google.cloud.talent.v4beta1.SearchProfil" + + "esResponse\"8\202\323\344\223\0022\"-/v4beta1/{parent=pro" + + "jects/*/tenants/*}:search:\001*\032l\312A\023jobs.go" + + "ogleapis.com\322AShttps://www.googleapis.co" + + "m/auth/cloud-platform,https://www.google" + + "apis.com/auth/jobsB\201\001\n\037com.google.cloud." + + "talent.v4beta1B\023ProfileServiceProtoP\001ZAg" + + "oogle.golang.org/genproto/googleapis/clo" + + "ud/talent/v4beta1;talent\242\002\003CTSb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -144,6 +148,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.api.AnnotationsProto.getDescriptor(), + com.google.api.ClientProto.getDescriptor(), com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(), com.google.cloud.talent.v4beta1.FiltersProto.getDescriptor(), com.google.cloud.talent.v4beta1.HistogramProto.getDescriptor(), @@ -216,6 +221,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( "OrderBy", "CaseSensitiveSort", "HistogramQueries", + "ResultSetId", }); internal_static_google_cloud_talent_v4beta1_SearchProfilesResponse_descriptor = getDescriptor().getMessageTypes().get(7); @@ -229,6 +235,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( "NextPageToken", "HistogramQueryResults", "SummarizedProfiles", + "ResultSetId", }); internal_static_google_cloud_talent_v4beta1_SummarizedProfile_descriptor = getDescriptor().getMessageTypes().get(8); @@ -240,10 +247,13 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); + registry.add(com.google.api.ClientProto.defaultHost); registry.add(com.google.api.AnnotationsProto.http); + registry.add(com.google.api.ClientProto.oauthScopes); com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( descriptor, registry); com.google.api.AnnotationsProto.getDescriptor(); + com.google.api.ClientProto.getDescriptor(); com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(); com.google.cloud.talent.v4beta1.FiltersProto.getDescriptor(); com.google.cloud.talent.v4beta1.HistogramProto.getDescriptor(); diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Publication.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Publication.java index a93bb4666578..150870328fb6 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Publication.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Publication.java @@ -175,8 +175,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * A list of author names.
+   * Optional. A list of author names.
    * Number of characters allowed is 100.
    * 
* @@ -189,8 +188,7 @@ public com.google.protobuf.ProtocolStringList getAuthorsList() { * * *
-   * Optional.
-   * A list of author names.
+   * Optional. A list of author names.
    * Number of characters allowed is 100.
    * 
* @@ -203,8 +201,7 @@ public int getAuthorsCount() { * * *
-   * Optional.
-   * A list of author names.
+   * Optional. A list of author names.
    * Number of characters allowed is 100.
    * 
* @@ -217,8 +214,7 @@ public java.lang.String getAuthors(int index) { * * *
-   * Optional.
-   * A list of author names.
+   * Optional. A list of author names.
    * Number of characters allowed is 100.
    * 
* @@ -234,8 +230,7 @@ public com.google.protobuf.ByteString getAuthorsBytes(int index) { * * *
-   * Optional.
-   * The title of the publication.
+   * Optional. The title of the publication.
    * Number of characters allowed is 100.
    * 
* @@ -256,8 +251,7 @@ public java.lang.String getTitle() { * * *
-   * Optional.
-   * The title of the publication.
+   * Optional. The title of the publication.
    * Number of characters allowed is 100.
    * 
* @@ -281,8 +275,7 @@ public com.google.protobuf.ByteString getTitleBytes() { * * *
-   * Optional.
-   * The description of the publication.
+   * Optional. The description of the publication.
    * Number of characters allowed is 100,000.
    * 
* @@ -303,8 +296,7 @@ public java.lang.String getDescription() { * * *
-   * Optional.
-   * The description of the publication.
+   * Optional. The description of the publication.
    * Number of characters allowed is 100,000.
    * 
* @@ -328,8 +320,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-   * Optional.
-   * The journal name of the publication.
+   * Optional. The journal name of the publication.
    * Number of characters allowed is 100.
    * 
* @@ -350,8 +341,7 @@ public java.lang.String getJournal() { * * *
-   * Optional.
-   * The journal name of the publication.
+   * Optional. The journal name of the publication.
    * Number of characters allowed is 100.
    * 
* @@ -375,8 +365,7 @@ public com.google.protobuf.ByteString getJournalBytes() { * * *
-   * Optional.
-   * Volume number.
+   * Optional. Volume number.
    * Number of characters allowed is 100.
    * 
* @@ -397,8 +386,7 @@ public java.lang.String getVolume() { * * *
-   * Optional.
-   * Volume number.
+   * Optional. Volume number.
    * Number of characters allowed is 100.
    * 
* @@ -422,8 +410,7 @@ public com.google.protobuf.ByteString getVolumeBytes() { * * *
-   * Optional.
-   * The publisher of the journal.
+   * Optional. The publisher of the journal.
    * Number of characters allowed is 100.
    * 
* @@ -444,8 +431,7 @@ public java.lang.String getPublisher() { * * *
-   * Optional.
-   * The publisher of the journal.
+   * Optional. The publisher of the journal.
    * Number of characters allowed is 100.
    * 
* @@ -469,8 +455,7 @@ public com.google.protobuf.ByteString getPublisherBytes() { * * *
-   * Optional.
-   * The publication date.
+   * Optional. The publication date.
    * 
* * .google.type.Date publication_date = 7; @@ -482,8 +467,7 @@ public boolean hasPublicationDate() { * * *
-   * Optional.
-   * The publication date.
+   * Optional. The publication date.
    * 
* * .google.type.Date publication_date = 7; @@ -495,8 +479,7 @@ public com.google.type.Date getPublicationDate() { * * *
-   * Optional.
-   * The publication date.
+   * Optional. The publication date.
    * 
* * .google.type.Date publication_date = 7; @@ -511,8 +494,7 @@ public com.google.type.DateOrBuilder getPublicationDateOrBuilder() { * * *
-   * Optional.
-   * The publication type.
+   * Optional. The publication type.
    * Number of characters allowed is 100.
    * 
* @@ -533,8 +515,7 @@ public java.lang.String getPublicationType() { * * *
-   * Optional.
-   * The publication type.
+   * Optional. The publication type.
    * Number of characters allowed is 100.
    * 
* @@ -558,8 +539,7 @@ public com.google.protobuf.ByteString getPublicationTypeBytes() { * * *
-   * Optional.
-   * ISBN number.
+   * Optional. ISBN number.
    * Number of characters allowed is 100.
    * 
* @@ -580,8 +560,7 @@ public java.lang.String getIsbn() { * * *
-   * Optional.
-   * ISBN number.
+   * Optional. ISBN number.
    * Number of characters allowed is 100.
    * 
* @@ -1090,8 +1069,7 @@ private void ensureAuthorsIsMutable() { * * *
-     * Optional.
-     * A list of author names.
+     * Optional. A list of author names.
      * Number of characters allowed is 100.
      * 
* @@ -1104,8 +1082,7 @@ public com.google.protobuf.ProtocolStringList getAuthorsList() { * * *
-     * Optional.
-     * A list of author names.
+     * Optional. A list of author names.
      * Number of characters allowed is 100.
      * 
* @@ -1118,8 +1095,7 @@ public int getAuthorsCount() { * * *
-     * Optional.
-     * A list of author names.
+     * Optional. A list of author names.
      * Number of characters allowed is 100.
      * 
* @@ -1132,8 +1108,7 @@ public java.lang.String getAuthors(int index) { * * *
-     * Optional.
-     * A list of author names.
+     * Optional. A list of author names.
      * Number of characters allowed is 100.
      * 
* @@ -1146,8 +1121,7 @@ public com.google.protobuf.ByteString getAuthorsBytes(int index) { * * *
-     * Optional.
-     * A list of author names.
+     * Optional. A list of author names.
      * Number of characters allowed is 100.
      * 
* @@ -1166,8 +1140,7 @@ public Builder setAuthors(int index, java.lang.String value) { * * *
-     * Optional.
-     * A list of author names.
+     * Optional. A list of author names.
      * Number of characters allowed is 100.
      * 
* @@ -1186,8 +1159,7 @@ public Builder addAuthors(java.lang.String value) { * * *
-     * Optional.
-     * A list of author names.
+     * Optional. A list of author names.
      * Number of characters allowed is 100.
      * 
* @@ -1203,8 +1175,7 @@ public Builder addAllAuthors(java.lang.Iterable values) { * * *
-     * Optional.
-     * A list of author names.
+     * Optional. A list of author names.
      * Number of characters allowed is 100.
      * 
* @@ -1220,8 +1191,7 @@ public Builder clearAuthors() { * * *
-     * Optional.
-     * A list of author names.
+     * Optional. A list of author names.
      * Number of characters allowed is 100.
      * 
* @@ -1243,8 +1213,7 @@ public Builder addAuthorsBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The title of the publication.
+     * Optional. The title of the publication.
      * Number of characters allowed is 100.
      * 
* @@ -1265,8 +1234,7 @@ public java.lang.String getTitle() { * * *
-     * Optional.
-     * The title of the publication.
+     * Optional. The title of the publication.
      * Number of characters allowed is 100.
      * 
* @@ -1287,8 +1255,7 @@ public com.google.protobuf.ByteString getTitleBytes() { * * *
-     * Optional.
-     * The title of the publication.
+     * Optional. The title of the publication.
      * Number of characters allowed is 100.
      * 
* @@ -1307,8 +1274,7 @@ public Builder setTitle(java.lang.String value) { * * *
-     * Optional.
-     * The title of the publication.
+     * Optional. The title of the publication.
      * Number of characters allowed is 100.
      * 
* @@ -1324,8 +1290,7 @@ public Builder clearTitle() { * * *
-     * Optional.
-     * The title of the publication.
+     * Optional. The title of the publication.
      * Number of characters allowed is 100.
      * 
* @@ -1347,8 +1312,7 @@ public Builder setTitleBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The description of the publication.
+     * Optional. The description of the publication.
      * Number of characters allowed is 100,000.
      * 
* @@ -1369,8 +1333,7 @@ public java.lang.String getDescription() { * * *
-     * Optional.
-     * The description of the publication.
+     * Optional. The description of the publication.
      * Number of characters allowed is 100,000.
      * 
* @@ -1391,8 +1354,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-     * Optional.
-     * The description of the publication.
+     * Optional. The description of the publication.
      * Number of characters allowed is 100,000.
      * 
* @@ -1411,8 +1373,7 @@ public Builder setDescription(java.lang.String value) { * * *
-     * Optional.
-     * The description of the publication.
+     * Optional. The description of the publication.
      * Number of characters allowed is 100,000.
      * 
* @@ -1428,8 +1389,7 @@ public Builder clearDescription() { * * *
-     * Optional.
-     * The description of the publication.
+     * Optional. The description of the publication.
      * Number of characters allowed is 100,000.
      * 
* @@ -1451,8 +1411,7 @@ public Builder setDescriptionBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The journal name of the publication.
+     * Optional. The journal name of the publication.
      * Number of characters allowed is 100.
      * 
* @@ -1473,8 +1432,7 @@ public java.lang.String getJournal() { * * *
-     * Optional.
-     * The journal name of the publication.
+     * Optional. The journal name of the publication.
      * Number of characters allowed is 100.
      * 
* @@ -1495,8 +1453,7 @@ public com.google.protobuf.ByteString getJournalBytes() { * * *
-     * Optional.
-     * The journal name of the publication.
+     * Optional. The journal name of the publication.
      * Number of characters allowed is 100.
      * 
* @@ -1515,8 +1472,7 @@ public Builder setJournal(java.lang.String value) { * * *
-     * Optional.
-     * The journal name of the publication.
+     * Optional. The journal name of the publication.
      * Number of characters allowed is 100.
      * 
* @@ -1532,8 +1488,7 @@ public Builder clearJournal() { * * *
-     * Optional.
-     * The journal name of the publication.
+     * Optional. The journal name of the publication.
      * Number of characters allowed is 100.
      * 
* @@ -1555,8 +1510,7 @@ public Builder setJournalBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Volume number.
+     * Optional. Volume number.
      * Number of characters allowed is 100.
      * 
* @@ -1577,8 +1531,7 @@ public java.lang.String getVolume() { * * *
-     * Optional.
-     * Volume number.
+     * Optional. Volume number.
      * Number of characters allowed is 100.
      * 
* @@ -1599,8 +1552,7 @@ public com.google.protobuf.ByteString getVolumeBytes() { * * *
-     * Optional.
-     * Volume number.
+     * Optional. Volume number.
      * Number of characters allowed is 100.
      * 
* @@ -1619,8 +1571,7 @@ public Builder setVolume(java.lang.String value) { * * *
-     * Optional.
-     * Volume number.
+     * Optional. Volume number.
      * Number of characters allowed is 100.
      * 
* @@ -1636,8 +1587,7 @@ public Builder clearVolume() { * * *
-     * Optional.
-     * Volume number.
+     * Optional. Volume number.
      * Number of characters allowed is 100.
      * 
* @@ -1659,8 +1609,7 @@ public Builder setVolumeBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The publisher of the journal.
+     * Optional. The publisher of the journal.
      * Number of characters allowed is 100.
      * 
* @@ -1681,8 +1630,7 @@ public java.lang.String getPublisher() { * * *
-     * Optional.
-     * The publisher of the journal.
+     * Optional. The publisher of the journal.
      * Number of characters allowed is 100.
      * 
* @@ -1703,8 +1651,7 @@ public com.google.protobuf.ByteString getPublisherBytes() { * * *
-     * Optional.
-     * The publisher of the journal.
+     * Optional. The publisher of the journal.
      * Number of characters allowed is 100.
      * 
* @@ -1723,8 +1670,7 @@ public Builder setPublisher(java.lang.String value) { * * *
-     * Optional.
-     * The publisher of the journal.
+     * Optional. The publisher of the journal.
      * Number of characters allowed is 100.
      * 
* @@ -1740,8 +1686,7 @@ public Builder clearPublisher() { * * *
-     * Optional.
-     * The publisher of the journal.
+     * Optional. The publisher of the journal.
      * Number of characters allowed is 100.
      * 
* @@ -1766,8 +1711,7 @@ public Builder setPublisherBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The publication date.
+     * Optional. The publication date.
      * 
* * .google.type.Date publication_date = 7; @@ -1779,8 +1723,7 @@ public boolean hasPublicationDate() { * * *
-     * Optional.
-     * The publication date.
+     * Optional. The publication date.
      * 
* * .google.type.Date publication_date = 7; @@ -1798,8 +1741,7 @@ public com.google.type.Date getPublicationDate() { * * *
-     * Optional.
-     * The publication date.
+     * Optional. The publication date.
      * 
* * .google.type.Date publication_date = 7; @@ -1821,8 +1763,7 @@ public Builder setPublicationDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The publication date.
+     * Optional. The publication date.
      * 
* * .google.type.Date publication_date = 7; @@ -1841,8 +1782,7 @@ public Builder setPublicationDate(com.google.type.Date.Builder builderForValue) * * *
-     * Optional.
-     * The publication date.
+     * Optional. The publication date.
      * 
* * .google.type.Date publication_date = 7; @@ -1866,8 +1806,7 @@ public Builder mergePublicationDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The publication date.
+     * Optional. The publication date.
      * 
* * .google.type.Date publication_date = 7; @@ -1887,8 +1826,7 @@ public Builder clearPublicationDate() { * * *
-     * Optional.
-     * The publication date.
+     * Optional. The publication date.
      * 
* * .google.type.Date publication_date = 7; @@ -1902,8 +1840,7 @@ public com.google.type.Date.Builder getPublicationDateBuilder() { * * *
-     * Optional.
-     * The publication date.
+     * Optional. The publication date.
      * 
* * .google.type.Date publication_date = 7; @@ -1921,8 +1858,7 @@ public com.google.type.DateOrBuilder getPublicationDateOrBuilder() { * * *
-     * Optional.
-     * The publication date.
+     * Optional. The publication date.
      * 
* * .google.type.Date publication_date = 7; @@ -1945,8 +1881,7 @@ public com.google.type.DateOrBuilder getPublicationDateOrBuilder() { * * *
-     * Optional.
-     * The publication type.
+     * Optional. The publication type.
      * Number of characters allowed is 100.
      * 
* @@ -1967,8 +1902,7 @@ public java.lang.String getPublicationType() { * * *
-     * Optional.
-     * The publication type.
+     * Optional. The publication type.
      * Number of characters allowed is 100.
      * 
* @@ -1989,8 +1923,7 @@ public com.google.protobuf.ByteString getPublicationTypeBytes() { * * *
-     * Optional.
-     * The publication type.
+     * Optional. The publication type.
      * Number of characters allowed is 100.
      * 
* @@ -2009,8 +1942,7 @@ public Builder setPublicationType(java.lang.String value) { * * *
-     * Optional.
-     * The publication type.
+     * Optional. The publication type.
      * Number of characters allowed is 100.
      * 
* @@ -2026,8 +1958,7 @@ public Builder clearPublicationType() { * * *
-     * Optional.
-     * The publication type.
+     * Optional. The publication type.
      * Number of characters allowed is 100.
      * 
* @@ -2049,8 +1980,7 @@ public Builder setPublicationTypeBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * ISBN number.
+     * Optional. ISBN number.
      * Number of characters allowed is 100.
      * 
* @@ -2071,8 +2001,7 @@ public java.lang.String getIsbn() { * * *
-     * Optional.
-     * ISBN number.
+     * Optional. ISBN number.
      * Number of characters allowed is 100.
      * 
* @@ -2093,8 +2022,7 @@ public com.google.protobuf.ByteString getIsbnBytes() { * * *
-     * Optional.
-     * ISBN number.
+     * Optional. ISBN number.
      * Number of characters allowed is 100.
      * 
* @@ -2113,8 +2041,7 @@ public Builder setIsbn(java.lang.String value) { * * *
-     * Optional.
-     * ISBN number.
+     * Optional. ISBN number.
      * Number of characters allowed is 100.
      * 
* @@ -2130,8 +2057,7 @@ public Builder clearIsbn() { * * *
-     * Optional.
-     * ISBN number.
+     * Optional. ISBN number.
      * Number of characters allowed is 100.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PublicationOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PublicationOrBuilder.java index 3a697b2afe8f..1698205c0b17 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PublicationOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/PublicationOrBuilder.java @@ -12,8 +12,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * A list of author names.
+   * Optional. A list of author names.
    * Number of characters allowed is 100.
    * 
* @@ -24,8 +23,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * A list of author names.
+   * Optional. A list of author names.
    * Number of characters allowed is 100.
    * 
* @@ -36,8 +34,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * A list of author names.
+   * Optional. A list of author names.
    * Number of characters allowed is 100.
    * 
* @@ -48,8 +45,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * A list of author names.
+   * Optional. A list of author names.
    * Number of characters allowed is 100.
    * 
* @@ -61,8 +57,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The title of the publication.
+   * Optional. The title of the publication.
    * Number of characters allowed is 100.
    * 
* @@ -73,8 +68,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The title of the publication.
+   * Optional. The title of the publication.
    * Number of characters allowed is 100.
    * 
* @@ -86,8 +80,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The description of the publication.
+   * Optional. The description of the publication.
    * Number of characters allowed is 100,000.
    * 
* @@ -98,8 +91,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The description of the publication.
+   * Optional. The description of the publication.
    * Number of characters allowed is 100,000.
    * 
* @@ -111,8 +103,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The journal name of the publication.
+   * Optional. The journal name of the publication.
    * Number of characters allowed is 100.
    * 
* @@ -123,8 +114,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The journal name of the publication.
+   * Optional. The journal name of the publication.
    * Number of characters allowed is 100.
    * 
* @@ -136,8 +126,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * Volume number.
+   * Optional. Volume number.
    * Number of characters allowed is 100.
    * 
* @@ -148,8 +137,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * Volume number.
+   * Optional. Volume number.
    * Number of characters allowed is 100.
    * 
* @@ -161,8 +149,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The publisher of the journal.
+   * Optional. The publisher of the journal.
    * Number of characters allowed is 100.
    * 
* @@ -173,8 +160,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The publisher of the journal.
+   * Optional. The publisher of the journal.
    * Number of characters allowed is 100.
    * 
* @@ -186,8 +172,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The publication date.
+   * Optional. The publication date.
    * 
* * .google.type.Date publication_date = 7; @@ -197,8 +182,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The publication date.
+   * Optional. The publication date.
    * 
* * .google.type.Date publication_date = 7; @@ -208,8 +192,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The publication date.
+   * Optional. The publication date.
    * 
* * .google.type.Date publication_date = 7; @@ -220,8 +203,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The publication type.
+   * Optional. The publication type.
    * Number of characters allowed is 100.
    * 
* @@ -232,8 +214,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * The publication type.
+   * Optional. The publication type.
    * Number of characters allowed is 100.
    * 
* @@ -245,8 +226,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * ISBN number.
+   * Optional. ISBN number.
    * Number of characters allowed is 100.
    * 
* @@ -257,8 +237,7 @@ public interface PublicationOrBuilder * * *
-   * Optional.
-   * ISBN number.
+   * Optional. ISBN number.
    * Number of characters allowed is 100.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/RequestMetadata.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/RequestMetadata.java index 458a866a1b0e..33de4154d412 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/RequestMetadata.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/RequestMetadata.java @@ -330,8 +330,7 @@ public com.google.protobuf.ByteString getUserIdBytes() { * * *
-   * Optional.
-   * If set to `true`,
+   * Optional. If set to `true`,
    * [domain][google.cloud.talent.v4beta1.RequestMetadata.domain],
    * [session_id][google.cloud.talent.v4beta1.RequestMetadata.session_id] and
    * [user_id][google.cloud.talent.v4beta1.RequestMetadata.user_id] are
@@ -355,9 +354,8 @@ public boolean getAllowMissingIds() {
    *
    *
    * 
-   * Optional.
-   * The type of device used by the job seeker at the time of the call to the
-   * service.
+   * Optional. The type of device used by the job seeker at the time of the call
+   * to the service.
    * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -369,9 +367,8 @@ public boolean hasDeviceInfo() { * * *
-   * Optional.
-   * The type of device used by the job seeker at the time of the call to the
-   * service.
+   * Optional. The type of device used by the job seeker at the time of the call
+   * to the service.
    * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -385,9 +382,8 @@ public com.google.cloud.talent.v4beta1.DeviceInfo getDeviceInfo() { * * *
-   * Optional.
-   * The type of device used by the job seeker at the time of the call to the
-   * service.
+   * Optional. The type of device used by the job seeker at the time of the call
+   * to the service.
    * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -1238,8 +1234,7 @@ public Builder setUserIdBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * If set to `true`,
+     * Optional. If set to `true`,
      * [domain][google.cloud.talent.v4beta1.RequestMetadata.domain],
      * [session_id][google.cloud.talent.v4beta1.RequestMetadata.session_id] and
      * [user_id][google.cloud.talent.v4beta1.RequestMetadata.user_id] are
@@ -1260,8 +1255,7 @@ public boolean getAllowMissingIds() {
      *
      *
      * 
-     * Optional.
-     * If set to `true`,
+     * Optional. If set to `true`,
      * [domain][google.cloud.talent.v4beta1.RequestMetadata.domain],
      * [session_id][google.cloud.talent.v4beta1.RequestMetadata.session_id] and
      * [user_id][google.cloud.talent.v4beta1.RequestMetadata.user_id] are
@@ -1285,8 +1279,7 @@ public Builder setAllowMissingIds(boolean value) {
      *
      *
      * 
-     * Optional.
-     * If set to `true`,
+     * Optional. If set to `true`,
      * [domain][google.cloud.talent.v4beta1.RequestMetadata.domain],
      * [session_id][google.cloud.talent.v4beta1.RequestMetadata.session_id] and
      * [user_id][google.cloud.talent.v4beta1.RequestMetadata.user_id] are
@@ -1317,9 +1310,8 @@ public Builder clearAllowMissingIds() {
      *
      *
      * 
-     * Optional.
-     * The type of device used by the job seeker at the time of the call to the
-     * service.
+     * Optional. The type of device used by the job seeker at the time of the call
+     * to the service.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -1331,9 +1323,8 @@ public boolean hasDeviceInfo() { * * *
-     * Optional.
-     * The type of device used by the job seeker at the time of the call to the
-     * service.
+     * Optional. The type of device used by the job seeker at the time of the call
+     * to the service.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -1351,9 +1342,8 @@ public com.google.cloud.talent.v4beta1.DeviceInfo getDeviceInfo() { * * *
-     * Optional.
-     * The type of device used by the job seeker at the time of the call to the
-     * service.
+     * Optional. The type of device used by the job seeker at the time of the call
+     * to the service.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -1375,9 +1365,8 @@ public Builder setDeviceInfo(com.google.cloud.talent.v4beta1.DeviceInfo value) { * * *
-     * Optional.
-     * The type of device used by the job seeker at the time of the call to the
-     * service.
+     * Optional. The type of device used by the job seeker at the time of the call
+     * to the service.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -1397,9 +1386,8 @@ public Builder setDeviceInfo( * * *
-     * Optional.
-     * The type of device used by the job seeker at the time of the call to the
-     * service.
+     * Optional. The type of device used by the job seeker at the time of the call
+     * to the service.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -1425,9 +1413,8 @@ public Builder mergeDeviceInfo(com.google.cloud.talent.v4beta1.DeviceInfo value) * * *
-     * Optional.
-     * The type of device used by the job seeker at the time of the call to the
-     * service.
+     * Optional. The type of device used by the job seeker at the time of the call
+     * to the service.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -1447,9 +1434,8 @@ public Builder clearDeviceInfo() { * * *
-     * Optional.
-     * The type of device used by the job seeker at the time of the call to the
-     * service.
+     * Optional. The type of device used by the job seeker at the time of the call
+     * to the service.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -1463,9 +1449,8 @@ public com.google.cloud.talent.v4beta1.DeviceInfo.Builder getDeviceInfoBuilder() * * *
-     * Optional.
-     * The type of device used by the job seeker at the time of the call to the
-     * service.
+     * Optional. The type of device used by the job seeker at the time of the call
+     * to the service.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -1483,9 +1468,8 @@ public com.google.cloud.talent.v4beta1.DeviceInfoOrBuilder getDeviceInfoOrBuilde * * *
-     * Optional.
-     * The type of device used by the job seeker at the time of the call to the
-     * service.
+     * Optional. The type of device used by the job seeker at the time of the call
+     * to the service.
      * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/RequestMetadataOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/RequestMetadataOrBuilder.java index cf63ae281cc2..87f38fee48e0 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/RequestMetadataOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/RequestMetadataOrBuilder.java @@ -139,8 +139,7 @@ public interface RequestMetadataOrBuilder * * *
-   * Optional.
-   * If set to `true`,
+   * Optional. If set to `true`,
    * [domain][google.cloud.talent.v4beta1.RequestMetadata.domain],
    * [session_id][google.cloud.talent.v4beta1.RequestMetadata.session_id] and
    * [user_id][google.cloud.talent.v4beta1.RequestMetadata.user_id] are
@@ -160,9 +159,8 @@ public interface RequestMetadataOrBuilder
    *
    *
    * 
-   * Optional.
-   * The type of device used by the job seeker at the time of the call to the
-   * service.
+   * Optional. The type of device used by the job seeker at the time of the call
+   * to the service.
    * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -172,9 +170,8 @@ public interface RequestMetadataOrBuilder * * *
-   * Optional.
-   * The type of device used by the job seeker at the time of the call to the
-   * service.
+   * Optional. The type of device used by the job seeker at the time of the call
+   * to the service.
    * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; @@ -184,9 +181,8 @@ public interface RequestMetadataOrBuilder * * *
-   * Optional.
-   * The type of device used by the job seeker at the time of the call to the
-   * service.
+   * Optional. The type of device used by the job seeker at the time of the call
+   * to the service.
    * 
* * .google.cloud.talent.v4beta1.DeviceInfo device_info = 5; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Resume.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Resume.java index b9f556bb7325..556a825ef2e3 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Resume.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Resume.java @@ -254,8 +254,7 @@ private ResumeType(int value) { * * *
-   * Optional.
-   * Users can create a profile with only this field field, if
+   * Optional. Users can create a profile with only this field field, if
    * [resume_type][google.cloud.talent.v4beta1.Resume.resume_type] is
    * [HRXML][google.cloud.talent.v4beta1.Resume.ResumeType.HRXML]. For example,
    * the API parses this field and creates a profile with all structured fields
@@ -265,7 +264,9 @@ private ResumeType(int value) {
    * An error is thrown if this field cannot be parsed.
    * If this field is provided during profile creation or update,
    * any other structured data provided in the profile is ignored. The
-   * API populates these fields by parsing this field.
+   * API populates these fields by parsing this field. Note that the use of the
+   * functionality offered by this field to extract data from resumes is an
+   * Alpha feature and as such is not covered by any SLA.
    * 
* * string structured_resume = 1; @@ -285,8 +286,7 @@ public java.lang.String getStructuredResume() { * * *
-   * Optional.
-   * Users can create a profile with only this field field, if
+   * Optional. Users can create a profile with only this field field, if
    * [resume_type][google.cloud.talent.v4beta1.Resume.resume_type] is
    * [HRXML][google.cloud.talent.v4beta1.Resume.ResumeType.HRXML]. For example,
    * the API parses this field and creates a profile with all structured fields
@@ -296,7 +296,9 @@ public java.lang.String getStructuredResume() {
    * An error is thrown if this field cannot be parsed.
    * If this field is provided during profile creation or update,
    * any other structured data provided in the profile is ignored. The
-   * API populates these fields by parsing this field.
+   * API populates these fields by parsing this field. Note that the use of the
+   * functionality offered by this field to extract data from resumes is an
+   * Alpha feature and as such is not covered by any SLA.
    * 
* * string structured_resume = 1; @@ -319,8 +321,7 @@ public com.google.protobuf.ByteString getStructuredResumeBytes() { * * *
-   * Optional.
-   * The format of
+   * Optional. The format of
    * [structured_resume][google.cloud.talent.v4beta1.Resume.structured_resume].
    * 
* @@ -333,8 +334,7 @@ public int getResumeTypeValue() { * * *
-   * Optional.
-   * The format of
+   * Optional. The format of
    * [structured_resume][google.cloud.talent.v4beta1.Resume.structured_resume].
    * 
* @@ -684,8 +684,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * Users can create a profile with only this field field, if
+     * Optional. Users can create a profile with only this field field, if
      * [resume_type][google.cloud.talent.v4beta1.Resume.resume_type] is
      * [HRXML][google.cloud.talent.v4beta1.Resume.ResumeType.HRXML]. For example,
      * the API parses this field and creates a profile with all structured fields
@@ -695,7 +694,9 @@ public Builder mergeFrom(
      * An error is thrown if this field cannot be parsed.
      * If this field is provided during profile creation or update,
      * any other structured data provided in the profile is ignored. The
-     * API populates these fields by parsing this field.
+     * API populates these fields by parsing this field. Note that the use of the
+     * functionality offered by this field to extract data from resumes is an
+     * Alpha feature and as such is not covered by any SLA.
      * 
* * string structured_resume = 1; @@ -715,8 +716,7 @@ public java.lang.String getStructuredResume() { * * *
-     * Optional.
-     * Users can create a profile with only this field field, if
+     * Optional. Users can create a profile with only this field field, if
      * [resume_type][google.cloud.talent.v4beta1.Resume.resume_type] is
      * [HRXML][google.cloud.talent.v4beta1.Resume.ResumeType.HRXML]. For example,
      * the API parses this field and creates a profile with all structured fields
@@ -726,7 +726,9 @@ public java.lang.String getStructuredResume() {
      * An error is thrown if this field cannot be parsed.
      * If this field is provided during profile creation or update,
      * any other structured data provided in the profile is ignored. The
-     * API populates these fields by parsing this field.
+     * API populates these fields by parsing this field. Note that the use of the
+     * functionality offered by this field to extract data from resumes is an
+     * Alpha feature and as such is not covered by any SLA.
      * 
* * string structured_resume = 1; @@ -746,8 +748,7 @@ public com.google.protobuf.ByteString getStructuredResumeBytes() { * * *
-     * Optional.
-     * Users can create a profile with only this field field, if
+     * Optional. Users can create a profile with only this field field, if
      * [resume_type][google.cloud.talent.v4beta1.Resume.resume_type] is
      * [HRXML][google.cloud.talent.v4beta1.Resume.ResumeType.HRXML]. For example,
      * the API parses this field and creates a profile with all structured fields
@@ -757,7 +758,9 @@ public com.google.protobuf.ByteString getStructuredResumeBytes() {
      * An error is thrown if this field cannot be parsed.
      * If this field is provided during profile creation or update,
      * any other structured data provided in the profile is ignored. The
-     * API populates these fields by parsing this field.
+     * API populates these fields by parsing this field. Note that the use of the
+     * functionality offered by this field to extract data from resumes is an
+     * Alpha feature and as such is not covered by any SLA.
      * 
* * string structured_resume = 1; @@ -775,8 +778,7 @@ public Builder setStructuredResume(java.lang.String value) { * * *
-     * Optional.
-     * Users can create a profile with only this field field, if
+     * Optional. Users can create a profile with only this field field, if
      * [resume_type][google.cloud.talent.v4beta1.Resume.resume_type] is
      * [HRXML][google.cloud.talent.v4beta1.Resume.ResumeType.HRXML]. For example,
      * the API parses this field and creates a profile with all structured fields
@@ -786,7 +788,9 @@ public Builder setStructuredResume(java.lang.String value) {
      * An error is thrown if this field cannot be parsed.
      * If this field is provided during profile creation or update,
      * any other structured data provided in the profile is ignored. The
-     * API populates these fields by parsing this field.
+     * API populates these fields by parsing this field. Note that the use of the
+     * functionality offered by this field to extract data from resumes is an
+     * Alpha feature and as such is not covered by any SLA.
      * 
* * string structured_resume = 1; @@ -801,8 +805,7 @@ public Builder clearStructuredResume() { * * *
-     * Optional.
-     * Users can create a profile with only this field field, if
+     * Optional. Users can create a profile with only this field field, if
      * [resume_type][google.cloud.talent.v4beta1.Resume.resume_type] is
      * [HRXML][google.cloud.talent.v4beta1.Resume.ResumeType.HRXML]. For example,
      * the API parses this field and creates a profile with all structured fields
@@ -812,7 +815,9 @@ public Builder clearStructuredResume() {
      * An error is thrown if this field cannot be parsed.
      * If this field is provided during profile creation or update,
      * any other structured data provided in the profile is ignored. The
-     * API populates these fields by parsing this field.
+     * API populates these fields by parsing this field. Note that the use of the
+     * functionality offered by this field to extract data from resumes is an
+     * Alpha feature and as such is not covered by any SLA.
      * 
* * string structured_resume = 1; @@ -833,8 +838,7 @@ public Builder setStructuredResumeBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The format of
+     * Optional. The format of
      * [structured_resume][google.cloud.talent.v4beta1.Resume.structured_resume].
      * 
* @@ -847,8 +851,7 @@ public int getResumeTypeValue() { * * *
-     * Optional.
-     * The format of
+     * Optional. The format of
      * [structured_resume][google.cloud.talent.v4beta1.Resume.structured_resume].
      * 
* @@ -863,8 +866,7 @@ public Builder setResumeTypeValue(int value) { * * *
-     * Optional.
-     * The format of
+     * Optional. The format of
      * [structured_resume][google.cloud.talent.v4beta1.Resume.structured_resume].
      * 
* @@ -882,8 +884,7 @@ public com.google.cloud.talent.v4beta1.Resume.ResumeType getResumeType() { * * *
-     * Optional.
-     * The format of
+     * Optional. The format of
      * [structured_resume][google.cloud.talent.v4beta1.Resume.structured_resume].
      * 
* @@ -902,8 +903,7 @@ public Builder setResumeType(com.google.cloud.talent.v4beta1.Resume.ResumeType v * * *
-     * Optional.
-     * The format of
+     * Optional. The format of
      * [structured_resume][google.cloud.talent.v4beta1.Resume.structured_resume].
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ResumeOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ResumeOrBuilder.java index af6f301ea74e..94ee7606917b 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ResumeOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ResumeOrBuilder.java @@ -12,8 +12,7 @@ public interface ResumeOrBuilder * * *
-   * Optional.
-   * Users can create a profile with only this field field, if
+   * Optional. Users can create a profile with only this field field, if
    * [resume_type][google.cloud.talent.v4beta1.Resume.resume_type] is
    * [HRXML][google.cloud.talent.v4beta1.Resume.ResumeType.HRXML]. For example,
    * the API parses this field and creates a profile with all structured fields
@@ -23,7 +22,9 @@ public interface ResumeOrBuilder
    * An error is thrown if this field cannot be parsed.
    * If this field is provided during profile creation or update,
    * any other structured data provided in the profile is ignored. The
-   * API populates these fields by parsing this field.
+   * API populates these fields by parsing this field. Note that the use of the
+   * functionality offered by this field to extract data from resumes is an
+   * Alpha feature and as such is not covered by any SLA.
    * 
* * string structured_resume = 1; @@ -33,8 +34,7 @@ public interface ResumeOrBuilder * * *
-   * Optional.
-   * Users can create a profile with only this field field, if
+   * Optional. Users can create a profile with only this field field, if
    * [resume_type][google.cloud.talent.v4beta1.Resume.resume_type] is
    * [HRXML][google.cloud.talent.v4beta1.Resume.ResumeType.HRXML]. For example,
    * the API parses this field and creates a profile with all structured fields
@@ -44,7 +44,9 @@ public interface ResumeOrBuilder
    * An error is thrown if this field cannot be parsed.
    * If this field is provided during profile creation or update,
    * any other structured data provided in the profile is ignored. The
-   * API populates these fields by parsing this field.
+   * API populates these fields by parsing this field. Note that the use of the
+   * functionality offered by this field to extract data from resumes is an
+   * Alpha feature and as such is not covered by any SLA.
    * 
* * string structured_resume = 1; @@ -55,8 +57,7 @@ public interface ResumeOrBuilder * * *
-   * Optional.
-   * The format of
+   * Optional. The format of
    * [structured_resume][google.cloud.talent.v4beta1.Resume.structured_resume].
    * 
* @@ -67,8 +68,7 @@ public interface ResumeOrBuilder * * *
-   * Optional.
-   * The format of
+   * Optional. The format of
    * [structured_resume][google.cloud.talent.v4beta1.Resume.structured_resume].
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchJobsRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchJobsRequest.java index 5f8ebe519f01..b2a32a89cecb 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchJobsRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchJobsRequest.java @@ -553,8 +553,7 @@ public interface CustomRankingInfoOrBuilder * * *
-     * Required.
-     * Controls over how important the score of
+     * Required. Controls over how important the score of
      * [CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
      * gets applied to job's final ranking position.
      * An error is thrown if not specified.
@@ -569,8 +568,7 @@ public interface CustomRankingInfoOrBuilder
      *
      *
      * 
-     * Required.
-     * Controls over how important the score of
+     * Required. Controls over how important the score of
      * [CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
      * gets applied to job's final ranking position.
      * An error is thrown if not specified.
@@ -587,10 +585,10 @@ public interface CustomRankingInfoOrBuilder
      *
      *
      * 
-     * Required.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm). The product of ranking expression
-     * and relevance score is used to determine job's final ranking position.
+     * Required. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm). The product of ranking
+     * expression and relevance score is used to determine job's final ranking
+     * position.
      * The syntax for this expression is a subset of Google SQL syntax.
      * Supported operators are: +, -, *, /, where the left and right side of
      * the operator is either a numeric
@@ -610,10 +608,10 @@ public interface CustomRankingInfoOrBuilder
      *
      *
      * 
-     * Required.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm). The product of ranking expression
-     * and relevance score is used to determine job's final ranking position.
+     * Required. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm). The product of ranking
+     * expression and relevance score is used to determine job's final ranking
+     * position.
      * The syntax for this expression is a subset of Google SQL syntax.
      * Supported operators are: +, -, *, /, where the left and right side of
      * the operator is either a numeric
@@ -998,8 +996,7 @@ private ImportanceLevel(int value) {
      *
      *
      * 
-     * Required.
-     * Controls over how important the score of
+     * Required. Controls over how important the score of
      * [CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
      * gets applied to job's final ranking position.
      * An error is thrown if not specified.
@@ -1016,8 +1013,7 @@ public int getImportanceLevelValue() {
      *
      *
      * 
-     * Required.
-     * Controls over how important the score of
+     * Required. Controls over how important the score of
      * [CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
      * gets applied to job's final ranking position.
      * An error is thrown if not specified.
@@ -1045,10 +1041,10 @@ public int getImportanceLevelValue() {
      *
      *
      * 
-     * Required.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm). The product of ranking expression
-     * and relevance score is used to determine job's final ranking position.
+     * Required. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm). The product of ranking
+     * expression and relevance score is used to determine job's final ranking
+     * position.
      * The syntax for this expression is a subset of Google SQL syntax.
      * Supported operators are: +, -, *, /, where the left and right side of
      * the operator is either a numeric
@@ -1078,10 +1074,10 @@ public java.lang.String getRankingExpression() {
      *
      *
      * 
-     * Required.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm). The product of ranking expression
-     * and relevance score is used to determine job's final ranking position.
+     * Required. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm). The product of ranking
+     * expression and relevance score is used to determine job's final ranking
+     * position.
      * The syntax for this expression is a subset of Google SQL syntax.
      * Supported operators are: +, -, *, /, where the left and right side of
      * the operator is either a numeric
@@ -1467,8 +1463,7 @@ public Builder mergeFrom(
        *
        *
        * 
-       * Required.
-       * Controls over how important the score of
+       * Required. Controls over how important the score of
        * [CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
        * gets applied to job's final ranking position.
        * An error is thrown if not specified.
@@ -1485,8 +1480,7 @@ public int getImportanceLevelValue() {
        *
        *
        * 
-       * Required.
-       * Controls over how important the score of
+       * Required. Controls over how important the score of
        * [CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
        * gets applied to job's final ranking position.
        * An error is thrown if not specified.
@@ -1505,8 +1499,7 @@ public Builder setImportanceLevelValue(int value) {
        *
        *
        * 
-       * Required.
-       * Controls over how important the score of
+       * Required. Controls over how important the score of
        * [CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
        * gets applied to job's final ranking position.
        * An error is thrown if not specified.
@@ -1531,8 +1524,7 @@ public Builder setImportanceLevelValue(int value) {
        *
        *
        * 
-       * Required.
-       * Controls over how important the score of
+       * Required. Controls over how important the score of
        * [CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
        * gets applied to job's final ranking position.
        * An error is thrown if not specified.
@@ -1557,8 +1549,7 @@ public Builder setImportanceLevel(
        *
        *
        * 
-       * Required.
-       * Controls over how important the score of
+       * Required. Controls over how important the score of
        * [CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
        * gets applied to job's final ranking position.
        * An error is thrown if not specified.
@@ -1580,10 +1571,10 @@ public Builder clearImportanceLevel() {
        *
        *
        * 
-       * Required.
-       * Controls over how job documents get ranked on top of existing relevance
-       * score (determined by API algorithm). The product of ranking expression
-       * and relevance score is used to determine job's final ranking position.
+       * Required. Controls over how job documents get ranked on top of existing
+       * relevance score (determined by API algorithm). The product of ranking
+       * expression and relevance score is used to determine job's final ranking
+       * position.
        * The syntax for this expression is a subset of Google SQL syntax.
        * Supported operators are: +, -, *, /, where the left and right side of
        * the operator is either a numeric
@@ -1613,10 +1604,10 @@ public java.lang.String getRankingExpression() {
        *
        *
        * 
-       * Required.
-       * Controls over how job documents get ranked on top of existing relevance
-       * score (determined by API algorithm). The product of ranking expression
-       * and relevance score is used to determine job's final ranking position.
+       * Required. Controls over how job documents get ranked on top of existing
+       * relevance score (determined by API algorithm). The product of ranking
+       * expression and relevance score is used to determine job's final ranking
+       * position.
        * The syntax for this expression is a subset of Google SQL syntax.
        * Supported operators are: +, -, *, /, where the left and right side of
        * the operator is either a numeric
@@ -1646,10 +1637,10 @@ public com.google.protobuf.ByteString getRankingExpressionBytes() {
        *
        *
        * 
-       * Required.
-       * Controls over how job documents get ranked on top of existing relevance
-       * score (determined by API algorithm). The product of ranking expression
-       * and relevance score is used to determine job's final ranking position.
+       * Required. Controls over how job documents get ranked on top of existing
+       * relevance score (determined by API algorithm). The product of ranking
+       * expression and relevance score is used to determine job's final ranking
+       * position.
        * The syntax for this expression is a subset of Google SQL syntax.
        * Supported operators are: +, -, *, /, where the left and right side of
        * the operator is either a numeric
@@ -1677,10 +1668,10 @@ public Builder setRankingExpression(java.lang.String value) {
        *
        *
        * 
-       * Required.
-       * Controls over how job documents get ranked on top of existing relevance
-       * score (determined by API algorithm). The product of ranking expression
-       * and relevance score is used to determine job's final ranking position.
+       * Required. Controls over how job documents get ranked on top of existing
+       * relevance score (determined by API algorithm). The product of ranking
+       * expression and relevance score is used to determine job's final ranking
+       * position.
        * The syntax for this expression is a subset of Google SQL syntax.
        * Supported operators are: +, -, *, /, where the left and right side of
        * the operator is either a numeric
@@ -1705,10 +1696,10 @@ public Builder clearRankingExpression() {
        *
        *
        * 
-       * Required.
-       * Controls over how job documents get ranked on top of existing relevance
-       * score (determined by API algorithm). The product of ranking expression
-       * and relevance score is used to determine job's final ranking position.
+       * Required. Controls over how job documents get ranked on top of existing
+       * relevance score (determined by API algorithm). The product of ranking
+       * expression and relevance score is used to determine job's final ranking
+       * position.
        * The syntax for this expression is a subset of Google SQL syntax.
        * Supported operators are: +, -, *, /, where the left and right side of
        * the operator is either a numeric
@@ -1796,8 +1787,7 @@ public com.google.protobuf.Parser getParserForType() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant to search within.
+   * Required. The resource name of the tenant to search within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -1821,8 +1811,7 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant to search within.
+   * Required. The resource name of the tenant to search within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -1849,8 +1838,7 @@ public com.google.protobuf.ByteString getParentBytes() {
    *
    *
    * 
-   * Optional.
-   * Mode of a search.
+   * Optional. Mode of a search.
    * Defaults to
    * [SearchMode.JOB_SEARCH][google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode.JOB_SEARCH].
    * 
@@ -1864,8 +1852,7 @@ public int getSearchModeValue() { * * *
-   * Optional.
-   * Mode of a search.
+   * Optional. Mode of a search.
    * Defaults to
    * [SearchMode.JOB_SEARCH][google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode.JOB_SEARCH].
    * 
@@ -1887,10 +1874,9 @@ public com.google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode getSearchMod * * *
-   * Required.
-   * The meta information collected about the job searcher, used to improve the
-   * search quality of the service.. The identifiers, (such as `user_id`) are
-   * provided by users, and must be unique and consistent.
+   * Required. The meta information collected about the job searcher, used to
+   * improve the search quality of the service. The identifiers (such as
+   * `user_id`) are provided by users, and must be unique and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -1902,10 +1888,9 @@ public boolean hasRequestMetadata() { * * *
-   * Required.
-   * The meta information collected about the job searcher, used to improve the
-   * search quality of the service.. The identifiers, (such as `user_id`) are
-   * provided by users, and must be unique and consistent.
+   * Required. The meta information collected about the job searcher, used to
+   * improve the search quality of the service. The identifiers (such as
+   * `user_id`) are provided by users, and must be unique and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -1919,10 +1904,9 @@ public com.google.cloud.talent.v4beta1.RequestMetadata getRequestMetadata() { * * *
-   * Required.
-   * The meta information collected about the job searcher, used to improve the
-   * search quality of the service.. The identifiers, (such as `user_id`) are
-   * provided by users, and must be unique and consistent.
+   * Required. The meta information collected about the job searcher, used to
+   * improve the search quality of the service. The identifiers (such as
+   * `user_id`) are provided by users, and must be unique and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -1937,8 +1921,8 @@ public com.google.cloud.talent.v4beta1.RequestMetadataOrBuilder getRequestMetada * * *
-   * Optional.
-   * Query used to search against jobs, such as keyword, location filters, etc.
+   * Optional. Query used to search against jobs, such as keyword, location
+   * filters, etc.
    * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -1950,8 +1934,8 @@ public boolean hasJobQuery() { * * *
-   * Optional.
-   * Query used to search against jobs, such as keyword, location filters, etc.
+   * Optional. Query used to search against jobs, such as keyword, location
+   * filters, etc.
    * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -1965,8 +1949,8 @@ public com.google.cloud.talent.v4beta1.JobQuery getJobQuery() { * * *
-   * Optional.
-   * Query used to search against jobs, such as keyword, location filters, etc.
+   * Optional. Query used to search against jobs, such as keyword, location
+   * filters, etc.
    * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -1981,10 +1965,9 @@ public com.google.cloud.talent.v4beta1.JobQueryOrBuilder getJobQueryOrBuilder() * * *
-   * Optional.
-   * Controls whether to broaden the search when it produces sparse results.
-   * Broadened queries append results to the end of the matching results
-   * list.
+   * Optional. Controls whether to broaden the search when it produces sparse
+   * results. Broadened queries append results to the end of the matching
+   * results list.
    * Defaults to false.
    * 
* @@ -2000,9 +1983,8 @@ public boolean getEnableBroadening() { * * *
-   * Optional.
-   * Controls if the search job request requires the return of a precise
-   * count of the first 300 results. Setting this to `true` ensures
+   * Optional. Controls if the search job request requires the return of a
+   * precise count of the first 300 results. Setting this to `true` ensures
    * consistency in the number of results per page. Best practice is to set this
    * value to true if a client allows users to jump directly to a
    * non-sequential search results page.
@@ -2022,8 +2004,8 @@ public boolean getRequirePreciseResultSize() {
    *
    *
    * 
-   * Optional.
-   * An expression specifies a histogram request against matching jobs.
+   * Optional. An expression specifies a histogram request against matching
+   * jobs.
    * Expression syntax is an aggregation function call with histogram facets and
    * other options.
    * Available aggregation function calls are:
@@ -2129,8 +2111,8 @@ public java.util.List getHistogr
    *
    *
    * 
-   * Optional.
-   * An expression specifies a histogram request against matching jobs.
+   * Optional. An expression specifies a histogram request against matching
+   * jobs.
    * Expression syntax is an aggregation function call with histogram facets and
    * other options.
    * Available aggregation function calls are:
@@ -2237,8 +2219,8 @@ public java.util.List getHistogr
    *
    *
    * 
-   * Optional.
-   * An expression specifies a histogram request against matching jobs.
+   * Optional. An expression specifies a histogram request against matching
+   * jobs.
    * Expression syntax is an aggregation function call with histogram facets and
    * other options.
    * Available aggregation function calls are:
@@ -2344,8 +2326,8 @@ public int getHistogramQueriesCount() {
    *
    *
    * 
-   * Optional.
-   * An expression specifies a histogram request against matching jobs.
+   * Optional. An expression specifies a histogram request against matching
+   * jobs.
    * Expression syntax is an aggregation function call with histogram facets and
    * other options.
    * Available aggregation function calls are:
@@ -2451,8 +2433,8 @@ public com.google.cloud.talent.v4beta1.HistogramQuery getHistogramQueries(int in
    *
    *
    * 
-   * Optional.
-   * An expression specifies a histogram request against matching jobs.
+   * Optional. An expression specifies a histogram request against matching
+   * jobs.
    * Expression syntax is an aggregation function call with histogram facets and
    * other options.
    * Available aggregation function calls are:
@@ -2562,9 +2544,8 @@ public com.google.cloud.talent.v4beta1.HistogramQueryOrBuilder getHistogramQueri
    *
    *
    * 
-   * Optional.
-   * The desired job attributes returned for jobs in the search response.
-   * Defaults to
+   * Optional. The desired job attributes returned for jobs in the search
+   * response. Defaults to
    * [JobView.JOB_VIEW_SMALL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_SMALL]
    * if no value is specified.
    * 
@@ -2578,9 +2559,8 @@ public int getJobViewValue() { * * *
-   * Optional.
-   * The desired job attributes returned for jobs in the search response.
-   * Defaults to
+   * Optional. The desired job attributes returned for jobs in the search
+   * response. Defaults to
    * [JobView.JOB_VIEW_SMALL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_SMALL]
    * if no value is specified.
    * 
@@ -2600,9 +2580,8 @@ public com.google.cloud.talent.v4beta1.JobView getJobView() { * * *
-   * Optional.
-   * An integer that specifies the current offset (that is, starting result
-   * location, amongst the jobs deemed by the API as relevant) in search
+   * Optional. An integer that specifies the current offset (that is, starting
+   * result location, amongst the jobs deemed by the API as relevant) in search
    * results. This field is only considered if
    * [page_token][google.cloud.talent.v4beta1.SearchJobsRequest.page_token] is
    * unset.
@@ -2624,8 +2603,7 @@ public int getOffset() {
    *
    *
    * 
-   * Optional.
-   * A limit on the number of jobs returned in the search results.
+   * Optional. A limit on the number of jobs returned in the search results.
    * Increasing this value above the default value of 10 can increase search
    * response time. The value can be between 1 and 100.
    * 
@@ -2642,8 +2620,7 @@ public int getPageSize() { * * *
-   * Optional.
-   * The token specifying the current offset within
+   * Optional. The token specifying the current offset within
    * search results. See
    * [SearchJobsResponse.next_page_token][google.cloud.talent.v4beta1.SearchJobsResponse.next_page_token]
    * for an explanation of how to obtain the next set of query results.
@@ -2666,8 +2643,7 @@ public java.lang.String getPageToken() {
    *
    *
    * 
-   * Optional.
-   * The token specifying the current offset within
+   * Optional. The token specifying the current offset within
    * search results. See
    * [SearchJobsResponse.next_page_token][google.cloud.talent.v4beta1.SearchJobsResponse.next_page_token]
    * for an explanation of how to obtain the next set of query results.
@@ -2693,56 +2669,59 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
    *
    *
    * 
-   * Optional.
-   * The criteria determining how search results are sorted. Default is
-   * "relevance desc".
+   * Optional. The criteria determining how search results are sorted. Default
+   * is
+   * `"relevance desc"`.
    * Supported options are:
-   * * "relevance desc": By relevance descending, as determined by the API
+   * * `"relevance desc"`: By relevance descending, as determined by the API
    *   algorithms. Relevance thresholding of query results is only available
    *   with this ordering.
-   * * "posting`_`publish`_`time desc": By
+   * * `"posting_publish_time desc"`: By
    * [Job.posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time]
    *   descending.
-   * * "posting`_`update`_`time desc": By
+   * * `"posting_update_time desc"`: By
    * [Job.posting_update_time][google.cloud.talent.v4beta1.Job.posting_update_time]
    *   descending.
-   * * "title": By [Job.title][google.cloud.talent.v4beta1.Job.title] ascending.
-   * * "title desc": By [Job.title][google.cloud.talent.v4beta1.Job.title]
+   * * `"title"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
+   * ascending.
+   * * `"title desc"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
    * descending.
-   * * "annualized`_`base`_`compensation": By job's
+   * * `"annualized_base_compensation"`: By job's
    *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
    *   ascending. Jobs whose annualized base compensation is unspecified are put
    *   at the end of search results.
-   * * "annualized`_`base`_`compensation desc": By job's
+   * * `"annualized_base_compensation desc"`: By job's
    *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
    *   descending. Jobs whose annualized base compensation is unspecified are
    *   put at the end of search results.
-   * * "annualized`_`total`_`compensation": By job's
+   * * `"annualized_total_compensation"`: By job's
    *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
    *   ascending. Jobs whose annualized base compensation is unspecified are put
    *   at the end of search results.
-   * * "annualized`_`total`_`compensation desc": By job's
+   * * `"annualized_total_compensation desc"`: By job's
    *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
    *   descending. Jobs whose annualized base compensation is unspecified are
    *   put at the end of search results.
-   * * "custom`_`ranking desc": By the relevance score adjusted to the
+   * * `"custom_ranking desc"`: By the relevance score adjusted to the
    *   [SearchJobsRequest.CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
    *   with weight factor assigned by
    *   [SearchJobsRequest.CustomRankingInfo.importance_level][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.importance_level]
    *   in descending order.
-   * * "location`_`distance": By the distance between the location on jobs and
-   *   locations specified in the
-   *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters].
-   *   When this order is selected, the
-   *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters]
-   *   must not be empty. When a job has multiple locations, the location
-   *   closest to one of the locations specified in the location filter will be
-   *   used to calculate location distance. Distance is calculated by the
-   *   distance between two lat/long coordinates, with a precision of 10e-4
-   *   degrees (11.3 meters). Jobs that don't have locations specified will be
-   *   ranked below jobs having locations. Diversification strategy is still
-   *   applied unless explicitly disabled in
-   *   [SearchJobsRequest.diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
+   * * Location sorting: Use the special syntax to order jobs by distance:<br>
+   *   `"distance_from('Hawaii')"`: Order by distance from Hawaii.<br>
+   *   `"distance_from(19.89, 155.5)"`: Order by distance from a coordinate.<br>
+   *   `"distance_from('Hawaii'), distance_from('Puerto Rico')"`: Order by
+   *   multiple locations. See details below.<br>
+   *   `"distance_from('Hawaii'), distance_from(19.89, 155.5)"`: Order by
+   *   multiple locations. See details below.<br>
+   *   The string can have a maximum of 256 characters. When multiple distance
+   *   centers are provided, a job that is close to any of the distance centers
+   *   would have a high rank. When a job has multiple locations, the job
+   *   location closest to one of the distance centers will be used. Jobs that
+   *   don't have locations will be ranked at the bottom. Distance is calculated
+   *   with a precision of 11.3 meters (37.4 feet). Diversification strategy is
+   *   still applied unless explicitly disabled in
+   *   [diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
    * 
* * string order_by = 12; @@ -2762,56 +2741,59 @@ public java.lang.String getOrderBy() { * * *
-   * Optional.
-   * The criteria determining how search results are sorted. Default is
-   * "relevance desc".
+   * Optional. The criteria determining how search results are sorted. Default
+   * is
+   * `"relevance desc"`.
    * Supported options are:
-   * * "relevance desc": By relevance descending, as determined by the API
+   * * `"relevance desc"`: By relevance descending, as determined by the API
    *   algorithms. Relevance thresholding of query results is only available
    *   with this ordering.
-   * * "posting`_`publish`_`time desc": By
+   * * `"posting_publish_time desc"`: By
    * [Job.posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time]
    *   descending.
-   * * "posting`_`update`_`time desc": By
+   * * `"posting_update_time desc"`: By
    * [Job.posting_update_time][google.cloud.talent.v4beta1.Job.posting_update_time]
    *   descending.
-   * * "title": By [Job.title][google.cloud.talent.v4beta1.Job.title] ascending.
-   * * "title desc": By [Job.title][google.cloud.talent.v4beta1.Job.title]
+   * * `"title"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
+   * ascending.
+   * * `"title desc"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
    * descending.
-   * * "annualized`_`base`_`compensation": By job's
+   * * `"annualized_base_compensation"`: By job's
    *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
    *   ascending. Jobs whose annualized base compensation is unspecified are put
    *   at the end of search results.
-   * * "annualized`_`base`_`compensation desc": By job's
+   * * `"annualized_base_compensation desc"`: By job's
    *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
    *   descending. Jobs whose annualized base compensation is unspecified are
    *   put at the end of search results.
-   * * "annualized`_`total`_`compensation": By job's
+   * * `"annualized_total_compensation"`: By job's
    *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
    *   ascending. Jobs whose annualized base compensation is unspecified are put
    *   at the end of search results.
-   * * "annualized`_`total`_`compensation desc": By job's
+   * * `"annualized_total_compensation desc"`: By job's
    *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
    *   descending. Jobs whose annualized base compensation is unspecified are
    *   put at the end of search results.
-   * * "custom`_`ranking desc": By the relevance score adjusted to the
+   * * `"custom_ranking desc"`: By the relevance score adjusted to the
    *   [SearchJobsRequest.CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
    *   with weight factor assigned by
    *   [SearchJobsRequest.CustomRankingInfo.importance_level][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.importance_level]
    *   in descending order.
-   * * "location`_`distance": By the distance between the location on jobs and
-   *   locations specified in the
-   *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters].
-   *   When this order is selected, the
-   *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters]
-   *   must not be empty. When a job has multiple locations, the location
-   *   closest to one of the locations specified in the location filter will be
-   *   used to calculate location distance. Distance is calculated by the
-   *   distance between two lat/long coordinates, with a precision of 10e-4
-   *   degrees (11.3 meters). Jobs that don't have locations specified will be
-   *   ranked below jobs having locations. Diversification strategy is still
-   *   applied unless explicitly disabled in
-   *   [SearchJobsRequest.diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
+   * * Location sorting: Use the special syntax to order jobs by distance:<br>
+   *   `"distance_from('Hawaii')"`: Order by distance from Hawaii.<br>
+   *   `"distance_from(19.89, 155.5)"`: Order by distance from a coordinate.<br>
+   *   `"distance_from('Hawaii'), distance_from('Puerto Rico')"`: Order by
+   *   multiple locations. See details below.<br>
+   *   `"distance_from('Hawaii'), distance_from(19.89, 155.5)"`: Order by
+   *   multiple locations. See details below.<br>
+   *   The string can have a maximum of 256 characters. When multiple distance
+   *   centers are provided, a job that is close to any of the distance centers
+   *   would have a high rank. When a job has multiple locations, the job
+   *   location closest to one of the distance centers will be used. Jobs that
+   *   don't have locations will be ranked at the bottom. Distance is calculated
+   *   with a precision of 11.3 meters (37.4 feet). Diversification strategy is
+   *   still applied unless explicitly disabled in
+   *   [diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
    * 
* * string order_by = 12; @@ -2834,9 +2816,8 @@ public com.google.protobuf.ByteString getOrderByBytes() { * * *
-   * Optional.
-   * Controls whether highly similar jobs are returned next to each other in
-   * the search results. Jobs are identified as highly similar based on
+   * Optional. Controls whether highly similar jobs are returned next to each
+   * other in the search results. Jobs are identified as highly similar based on
    * their titles, job categories, and locations. Highly similar results are
    * clustered so that only one representative job of the cluster is
    * displayed to the job seeker higher up in the results, with the other jobs
@@ -2857,9 +2838,8 @@ public int getDiversificationLevelValue() {
    *
    *
    * 
-   * Optional.
-   * Controls whether highly similar jobs are returned next to each other in
-   * the search results. Jobs are identified as highly similar based on
+   * Optional. Controls whether highly similar jobs are returned next to each
+   * other in the search results. Jobs are identified as highly similar based on
    * their titles, job categories, and locations. Highly similar results are
    * clustered so that only one representative job of the cluster is
    * displayed to the job seeker higher up in the results, with the other jobs
@@ -2890,9 +2870,8 @@ public int getDiversificationLevelValue() {
    *
    *
    * 
-   * Optional.
-   * Controls over how job documents get ranked on top of existing relevance
-   * score (determined by API algorithm).
+   * Optional. Controls over how job documents get ranked on top of existing
+   * relevance score (determined by API algorithm).
    * 
* * @@ -2906,9 +2885,8 @@ public boolean hasCustomRankingInfo() { * * *
-   * Optional.
-   * Controls over how job documents get ranked on top of existing relevance
-   * score (determined by API algorithm).
+   * Optional. Controls over how job documents get ranked on top of existing
+   * relevance score (determined by API algorithm).
    * 
* * @@ -2925,9 +2903,8 @@ public boolean hasCustomRankingInfo() { * * *
-   * Optional.
-   * Controls over how job documents get ranked on top of existing relevance
-   * score (determined by API algorithm).
+   * Optional. Controls over how job documents get ranked on top of existing
+   * relevance score (determined by API algorithm).
    * 
* * @@ -2945,8 +2922,7 @@ public boolean hasCustomRankingInfo() { * * *
-   * Optional.
-   * Controls whether to disable exact keyword match on
+   * Optional. Controls whether to disable exact keyword match on
    * [Job.title][google.cloud.talent.v4beta1.Job.title],
    * [Job.description][google.cloud.talent.v4beta1.Job.description],
    * [Job.company_display_name][google.cloud.talent.v4beta1.Job.company_display_name],
@@ -3605,8 +3581,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant to search within.
+     * Required. The resource name of the tenant to search within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -3630,8 +3605,7 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant to search within.
+     * Required. The resource name of the tenant to search within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -3655,8 +3629,7 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant to search within.
+     * Required. The resource name of the tenant to search within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -3678,8 +3651,7 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant to search within.
+     * Required. The resource name of the tenant to search within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -3698,8 +3670,7 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required.
-     * The resource name of the tenant to search within.
+     * Required. The resource name of the tenant to search within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenant/foo".
      * Tenant id is optional and the default tenant is used if unspecified, for
@@ -3724,8 +3695,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * Mode of a search.
+     * Optional. Mode of a search.
      * Defaults to
      * [SearchMode.JOB_SEARCH][google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode.JOB_SEARCH].
      * 
@@ -3739,8 +3709,7 @@ public int getSearchModeValue() { * * *
-     * Optional.
-     * Mode of a search.
+     * Optional. Mode of a search.
      * Defaults to
      * [SearchMode.JOB_SEARCH][google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode.JOB_SEARCH].
      * 
@@ -3756,8 +3725,7 @@ public Builder setSearchModeValue(int value) { * * *
-     * Optional.
-     * Mode of a search.
+     * Optional. Mode of a search.
      * Defaults to
      * [SearchMode.JOB_SEARCH][google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode.JOB_SEARCH].
      * 
@@ -3776,8 +3744,7 @@ public com.google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode getSearchMod * * *
-     * Optional.
-     * Mode of a search.
+     * Optional. Mode of a search.
      * Defaults to
      * [SearchMode.JOB_SEARCH][google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode.JOB_SEARCH].
      * 
@@ -3798,8 +3765,7 @@ public Builder setSearchMode( * * *
-     * Optional.
-     * Mode of a search.
+     * Optional. Mode of a search.
      * Defaults to
      * [SearchMode.JOB_SEARCH][google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode.JOB_SEARCH].
      * 
@@ -3823,10 +3789,9 @@ public Builder clearSearchMode() { * * *
-     * Required.
-     * The meta information collected about the job searcher, used to improve the
-     * search quality of the service.. The identifiers, (such as `user_id`) are
-     * provided by users, and must be unique and consistent.
+     * Required. The meta information collected about the job searcher, used to
+     * improve the search quality of the service. The identifiers (such as
+     * `user_id`) are provided by users, and must be unique and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -3838,10 +3803,9 @@ public boolean hasRequestMetadata() { * * *
-     * Required.
-     * The meta information collected about the job searcher, used to improve the
-     * search quality of the service.. The identifiers, (such as `user_id`) are
-     * provided by users, and must be unique and consistent.
+     * Required. The meta information collected about the job searcher, used to
+     * improve the search quality of the service. The identifiers (such as
+     * `user_id`) are provided by users, and must be unique and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -3859,10 +3823,9 @@ public com.google.cloud.talent.v4beta1.RequestMetadata getRequestMetadata() { * * *
-     * Required.
-     * The meta information collected about the job searcher, used to improve the
-     * search quality of the service.. The identifiers, (such as `user_id`) are
-     * provided by users, and must be unique and consistent.
+     * Required. The meta information collected about the job searcher, used to
+     * improve the search quality of the service. The identifiers (such as
+     * `user_id`) are provided by users, and must be unique and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -3884,10 +3847,9 @@ public Builder setRequestMetadata(com.google.cloud.talent.v4beta1.RequestMetadat * * *
-     * Required.
-     * The meta information collected about the job searcher, used to improve the
-     * search quality of the service.. The identifiers, (such as `user_id`) are
-     * provided by users, and must be unique and consistent.
+     * Required. The meta information collected about the job searcher, used to
+     * improve the search quality of the service. The identifiers (such as
+     * `user_id`) are provided by users, and must be unique and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -3907,10 +3869,9 @@ public Builder setRequestMetadata( * * *
-     * Required.
-     * The meta information collected about the job searcher, used to improve the
-     * search quality of the service.. The identifiers, (such as `user_id`) are
-     * provided by users, and must be unique and consistent.
+     * Required. The meta information collected about the job searcher, used to
+     * improve the search quality of the service. The identifiers (such as
+     * `user_id`) are provided by users, and must be unique and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -3936,10 +3897,9 @@ public Builder mergeRequestMetadata(com.google.cloud.talent.v4beta1.RequestMetad * * *
-     * Required.
-     * The meta information collected about the job searcher, used to improve the
-     * search quality of the service.. The identifiers, (such as `user_id`) are
-     * provided by users, and must be unique and consistent.
+     * Required. The meta information collected about the job searcher, used to
+     * improve the search quality of the service. The identifiers (such as
+     * `user_id`) are provided by users, and must be unique and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -3959,10 +3919,9 @@ public Builder clearRequestMetadata() { * * *
-     * Required.
-     * The meta information collected about the job searcher, used to improve the
-     * search quality of the service.. The identifiers, (such as `user_id`) are
-     * provided by users, and must be unique and consistent.
+     * Required. The meta information collected about the job searcher, used to
+     * improve the search quality of the service. The identifiers (such as
+     * `user_id`) are provided by users, and must be unique and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -3976,10 +3935,9 @@ public com.google.cloud.talent.v4beta1.RequestMetadata.Builder getRequestMetadat * * *
-     * Required.
-     * The meta information collected about the job searcher, used to improve the
-     * search quality of the service.. The identifiers, (such as `user_id`) are
-     * provided by users, and must be unique and consistent.
+     * Required. The meta information collected about the job searcher, used to
+     * improve the search quality of the service. The identifiers (such as
+     * `user_id`) are provided by users, and must be unique and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -3997,10 +3955,9 @@ public com.google.cloud.talent.v4beta1.RequestMetadataOrBuilder getRequestMetada * * *
-     * Required.
-     * The meta information collected about the job searcher, used to improve the
-     * search quality of the service.. The identifiers, (such as `user_id`) are
-     * provided by users, and must be unique and consistent.
+     * Required. The meta information collected about the job searcher, used to
+     * improve the search quality of the service. The identifiers (such as
+     * `user_id`) are provided by users, and must be unique and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -4032,8 +3989,8 @@ public com.google.cloud.talent.v4beta1.RequestMetadataOrBuilder getRequestMetada * * *
-     * Optional.
-     * Query used to search against jobs, such as keyword, location filters, etc.
+     * Optional. Query used to search against jobs, such as keyword, location
+     * filters, etc.
      * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -4045,8 +4002,8 @@ public boolean hasJobQuery() { * * *
-     * Optional.
-     * Query used to search against jobs, such as keyword, location filters, etc.
+     * Optional. Query used to search against jobs, such as keyword, location
+     * filters, etc.
      * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -4064,8 +4021,8 @@ public com.google.cloud.talent.v4beta1.JobQuery getJobQuery() { * * *
-     * Optional.
-     * Query used to search against jobs, such as keyword, location filters, etc.
+     * Optional. Query used to search against jobs, such as keyword, location
+     * filters, etc.
      * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -4087,8 +4044,8 @@ public Builder setJobQuery(com.google.cloud.talent.v4beta1.JobQuery value) { * * *
-     * Optional.
-     * Query used to search against jobs, such as keyword, location filters, etc.
+     * Optional. Query used to search against jobs, such as keyword, location
+     * filters, etc.
      * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -4107,8 +4064,8 @@ public Builder setJobQuery(com.google.cloud.talent.v4beta1.JobQuery.Builder buil * * *
-     * Optional.
-     * Query used to search against jobs, such as keyword, location filters, etc.
+     * Optional. Query used to search against jobs, such as keyword, location
+     * filters, etc.
      * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -4134,8 +4091,8 @@ public Builder mergeJobQuery(com.google.cloud.talent.v4beta1.JobQuery value) { * * *
-     * Optional.
-     * Query used to search against jobs, such as keyword, location filters, etc.
+     * Optional. Query used to search against jobs, such as keyword, location
+     * filters, etc.
      * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -4155,8 +4112,8 @@ public Builder clearJobQuery() { * * *
-     * Optional.
-     * Query used to search against jobs, such as keyword, location filters, etc.
+     * Optional. Query used to search against jobs, such as keyword, location
+     * filters, etc.
      * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -4170,8 +4127,8 @@ public com.google.cloud.talent.v4beta1.JobQuery.Builder getJobQueryBuilder() { * * *
-     * Optional.
-     * Query used to search against jobs, such as keyword, location filters, etc.
+     * Optional. Query used to search against jobs, such as keyword, location
+     * filters, etc.
      * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -4189,8 +4146,8 @@ public com.google.cloud.talent.v4beta1.JobQueryOrBuilder getJobQueryOrBuilder() * * *
-     * Optional.
-     * Query used to search against jobs, such as keyword, location filters, etc.
+     * Optional. Query used to search against jobs, such as keyword, location
+     * filters, etc.
      * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -4217,10 +4174,9 @@ public com.google.cloud.talent.v4beta1.JobQueryOrBuilder getJobQueryOrBuilder() * * *
-     * Optional.
-     * Controls whether to broaden the search when it produces sparse results.
-     * Broadened queries append results to the end of the matching results
-     * list.
+     * Optional. Controls whether to broaden the search when it produces sparse
+     * results. Broadened queries append results to the end of the matching
+     * results list.
      * Defaults to false.
      * 
* @@ -4233,10 +4189,9 @@ public boolean getEnableBroadening() { * * *
-     * Optional.
-     * Controls whether to broaden the search when it produces sparse results.
-     * Broadened queries append results to the end of the matching results
-     * list.
+     * Optional. Controls whether to broaden the search when it produces sparse
+     * results. Broadened queries append results to the end of the matching
+     * results list.
      * Defaults to false.
      * 
* @@ -4252,10 +4207,9 @@ public Builder setEnableBroadening(boolean value) { * * *
-     * Optional.
-     * Controls whether to broaden the search when it produces sparse results.
-     * Broadened queries append results to the end of the matching results
-     * list.
+     * Optional. Controls whether to broaden the search when it produces sparse
+     * results. Broadened queries append results to the end of the matching
+     * results list.
      * Defaults to false.
      * 
* @@ -4273,9 +4227,8 @@ public Builder clearEnableBroadening() { * * *
-     * Optional.
-     * Controls if the search job request requires the return of a precise
-     * count of the first 300 results. Setting this to `true` ensures
+     * Optional. Controls if the search job request requires the return of a
+     * precise count of the first 300 results. Setting this to `true` ensures
      * consistency in the number of results per page. Best practice is to set this
      * value to true if a client allows users to jump directly to a
      * non-sequential search results page.
@@ -4292,9 +4245,8 @@ public boolean getRequirePreciseResultSize() {
      *
      *
      * 
-     * Optional.
-     * Controls if the search job request requires the return of a precise
-     * count of the first 300 results. Setting this to `true` ensures
+     * Optional. Controls if the search job request requires the return of a
+     * precise count of the first 300 results. Setting this to `true` ensures
      * consistency in the number of results per page. Best practice is to set this
      * value to true if a client allows users to jump directly to a
      * non-sequential search results page.
@@ -4314,9 +4266,8 @@ public Builder setRequirePreciseResultSize(boolean value) {
      *
      *
      * 
-     * Optional.
-     * Controls if the search job request requires the return of a precise
-     * count of the first 300 results. Setting this to `true` ensures
+     * Optional. Controls if the search job request requires the return of a
+     * precise count of the first 300 results. Setting this to `true` ensures
      * consistency in the number of results per page. Best practice is to set this
      * value to true if a client allows users to jump directly to a
      * non-sequential search results page.
@@ -4355,8 +4306,8 @@ private void ensureHistogramQueriesIsMutable() {
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -4467,8 +4418,8 @@ private void ensureHistogramQueriesIsMutable() {
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -4578,8 +4529,8 @@ public int getHistogramQueriesCount() {
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -4689,8 +4640,8 @@ public com.google.cloud.talent.v4beta1.HistogramQuery getHistogramQueries(int in
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -4807,8 +4758,8 @@ public Builder setHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -4922,8 +4873,8 @@ public Builder setHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -5039,8 +4990,8 @@ public Builder addHistogramQueries(com.google.cloud.talent.v4beta1.HistogramQuer
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -5157,8 +5108,8 @@ public Builder addHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -5272,8 +5223,8 @@ public Builder addHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -5387,8 +5338,8 @@ public Builder addHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -5502,8 +5453,8 @@ public Builder addAllHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -5616,8 +5567,8 @@ public Builder clearHistogramQueries() {
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -5730,8 +5681,8 @@ public Builder removeHistogramQueries(int index) {
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -5838,8 +5789,8 @@ public com.google.cloud.talent.v4beta1.HistogramQuery.Builder getHistogramQuerie
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -5950,8 +5901,8 @@ public com.google.cloud.talent.v4beta1.HistogramQueryOrBuilder getHistogramQueri
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -6062,8 +6013,8 @@ public com.google.cloud.talent.v4beta1.HistogramQueryOrBuilder getHistogramQueri
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -6170,8 +6121,8 @@ public com.google.cloud.talent.v4beta1.HistogramQuery.Builder addHistogramQuerie
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -6279,8 +6230,8 @@ public com.google.cloud.talent.v4beta1.HistogramQuery.Builder addHistogramQuerie
      *
      *
      * 
-     * Optional.
-     * An expression specifies a histogram request against matching jobs.
+     * Optional. An expression specifies a histogram request against matching
+     * jobs.
      * Expression syntax is an aggregation function call with histogram facets and
      * other options.
      * Available aggregation function calls are:
@@ -6409,9 +6360,8 @@ public com.google.cloud.talent.v4beta1.HistogramQuery.Builder addHistogramQuerie
      *
      *
      * 
-     * Optional.
-     * The desired job attributes returned for jobs in the search response.
-     * Defaults to
+     * Optional. The desired job attributes returned for jobs in the search
+     * response. Defaults to
      * [JobView.JOB_VIEW_SMALL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_SMALL]
      * if no value is specified.
      * 
@@ -6425,9 +6375,8 @@ public int getJobViewValue() { * * *
-     * Optional.
-     * The desired job attributes returned for jobs in the search response.
-     * Defaults to
+     * Optional. The desired job attributes returned for jobs in the search
+     * response. Defaults to
      * [JobView.JOB_VIEW_SMALL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_SMALL]
      * if no value is specified.
      * 
@@ -6443,9 +6392,8 @@ public Builder setJobViewValue(int value) { * * *
-     * Optional.
-     * The desired job attributes returned for jobs in the search response.
-     * Defaults to
+     * Optional. The desired job attributes returned for jobs in the search
+     * response. Defaults to
      * [JobView.JOB_VIEW_SMALL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_SMALL]
      * if no value is specified.
      * 
@@ -6462,9 +6410,8 @@ public com.google.cloud.talent.v4beta1.JobView getJobView() { * * *
-     * Optional.
-     * The desired job attributes returned for jobs in the search response.
-     * Defaults to
+     * Optional. The desired job attributes returned for jobs in the search
+     * response. Defaults to
      * [JobView.JOB_VIEW_SMALL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_SMALL]
      * if no value is specified.
      * 
@@ -6484,9 +6431,8 @@ public Builder setJobView(com.google.cloud.talent.v4beta1.JobView value) { * * *
-     * Optional.
-     * The desired job attributes returned for jobs in the search response.
-     * Defaults to
+     * Optional. The desired job attributes returned for jobs in the search
+     * response. Defaults to
      * [JobView.JOB_VIEW_SMALL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_SMALL]
      * if no value is specified.
      * 
@@ -6505,9 +6451,8 @@ public Builder clearJobView() { * * *
-     * Optional.
-     * An integer that specifies the current offset (that is, starting result
-     * location, amongst the jobs deemed by the API as relevant) in search
+     * Optional. An integer that specifies the current offset (that is, starting
+     * result location, amongst the jobs deemed by the API as relevant) in search
      * results. This field is only considered if
      * [page_token][google.cloud.talent.v4beta1.SearchJobsRequest.page_token] is
      * unset.
@@ -6526,9 +6471,8 @@ public int getOffset() {
      *
      *
      * 
-     * Optional.
-     * An integer that specifies the current offset (that is, starting result
-     * location, amongst the jobs deemed by the API as relevant) in search
+     * Optional. An integer that specifies the current offset (that is, starting
+     * result location, amongst the jobs deemed by the API as relevant) in search
      * results. This field is only considered if
      * [page_token][google.cloud.talent.v4beta1.SearchJobsRequest.page_token] is
      * unset.
@@ -6550,9 +6494,8 @@ public Builder setOffset(int value) {
      *
      *
      * 
-     * Optional.
-     * An integer that specifies the current offset (that is, starting result
-     * location, amongst the jobs deemed by the API as relevant) in search
+     * Optional. An integer that specifies the current offset (that is, starting
+     * result location, amongst the jobs deemed by the API as relevant) in search
      * results. This field is only considered if
      * [page_token][google.cloud.talent.v4beta1.SearchJobsRequest.page_token] is
      * unset.
@@ -6576,8 +6519,7 @@ public Builder clearOffset() {
      *
      *
      * 
-     * Optional.
-     * A limit on the number of jobs returned in the search results.
+     * Optional. A limit on the number of jobs returned in the search results.
      * Increasing this value above the default value of 10 can increase search
      * response time. The value can be between 1 and 100.
      * 
@@ -6591,8 +6533,7 @@ public int getPageSize() { * * *
-     * Optional.
-     * A limit on the number of jobs returned in the search results.
+     * Optional. A limit on the number of jobs returned in the search results.
      * Increasing this value above the default value of 10 can increase search
      * response time. The value can be between 1 and 100.
      * 
@@ -6609,8 +6550,7 @@ public Builder setPageSize(int value) { * * *
-     * Optional.
-     * A limit on the number of jobs returned in the search results.
+     * Optional. A limit on the number of jobs returned in the search results.
      * Increasing this value above the default value of 10 can increase search
      * response time. The value can be between 1 and 100.
      * 
@@ -6629,8 +6569,7 @@ public Builder clearPageSize() { * * *
-     * Optional.
-     * The token specifying the current offset within
+     * Optional. The token specifying the current offset within
      * search results. See
      * [SearchJobsResponse.next_page_token][google.cloud.talent.v4beta1.SearchJobsResponse.next_page_token]
      * for an explanation of how to obtain the next set of query results.
@@ -6653,8 +6592,7 @@ public java.lang.String getPageToken() {
      *
      *
      * 
-     * Optional.
-     * The token specifying the current offset within
+     * Optional. The token specifying the current offset within
      * search results. See
      * [SearchJobsResponse.next_page_token][google.cloud.talent.v4beta1.SearchJobsResponse.next_page_token]
      * for an explanation of how to obtain the next set of query results.
@@ -6677,8 +6615,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
      *
      *
      * 
-     * Optional.
-     * The token specifying the current offset within
+     * Optional. The token specifying the current offset within
      * search results. See
      * [SearchJobsResponse.next_page_token][google.cloud.talent.v4beta1.SearchJobsResponse.next_page_token]
      * for an explanation of how to obtain the next set of query results.
@@ -6699,8 +6636,7 @@ public Builder setPageToken(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The token specifying the current offset within
+     * Optional. The token specifying the current offset within
      * search results. See
      * [SearchJobsResponse.next_page_token][google.cloud.talent.v4beta1.SearchJobsResponse.next_page_token]
      * for an explanation of how to obtain the next set of query results.
@@ -6718,8 +6654,7 @@ public Builder clearPageToken() {
      *
      *
      * 
-     * Optional.
-     * The token specifying the current offset within
+     * Optional. The token specifying the current offset within
      * search results. See
      * [SearchJobsResponse.next_page_token][google.cloud.talent.v4beta1.SearchJobsResponse.next_page_token]
      * for an explanation of how to obtain the next set of query results.
@@ -6743,56 +6678,59 @@ public Builder setPageTokenBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * The criteria determining how search results are sorted. Default is
-     * "relevance desc".
+     * Optional. The criteria determining how search results are sorted. Default
+     * is
+     * `"relevance desc"`.
      * Supported options are:
-     * * "relevance desc": By relevance descending, as determined by the API
+     * * `"relevance desc"`: By relevance descending, as determined by the API
      *   algorithms. Relevance thresholding of query results is only available
      *   with this ordering.
-     * * "posting`_`publish`_`time desc": By
+     * * `"posting_publish_time desc"`: By
      * [Job.posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time]
      *   descending.
-     * * "posting`_`update`_`time desc": By
+     * * `"posting_update_time desc"`: By
      * [Job.posting_update_time][google.cloud.talent.v4beta1.Job.posting_update_time]
      *   descending.
-     * * "title": By [Job.title][google.cloud.talent.v4beta1.Job.title] ascending.
-     * * "title desc": By [Job.title][google.cloud.talent.v4beta1.Job.title]
+     * * `"title"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
+     * ascending.
+     * * `"title desc"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
      * descending.
-     * * "annualized`_`base`_`compensation": By job's
+     * * `"annualized_base_compensation"`: By job's
      *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
      *   ascending. Jobs whose annualized base compensation is unspecified are put
      *   at the end of search results.
-     * * "annualized`_`base`_`compensation desc": By job's
+     * * `"annualized_base_compensation desc"`: By job's
      *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
      *   descending. Jobs whose annualized base compensation is unspecified are
      *   put at the end of search results.
-     * * "annualized`_`total`_`compensation": By job's
+     * * `"annualized_total_compensation"`: By job's
      *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
      *   ascending. Jobs whose annualized base compensation is unspecified are put
      *   at the end of search results.
-     * * "annualized`_`total`_`compensation desc": By job's
+     * * `"annualized_total_compensation desc"`: By job's
      *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
      *   descending. Jobs whose annualized base compensation is unspecified are
      *   put at the end of search results.
-     * * "custom`_`ranking desc": By the relevance score adjusted to the
+     * * `"custom_ranking desc"`: By the relevance score adjusted to the
      *   [SearchJobsRequest.CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
      *   with weight factor assigned by
      *   [SearchJobsRequest.CustomRankingInfo.importance_level][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.importance_level]
      *   in descending order.
-     * * "location`_`distance": By the distance between the location on jobs and
-     *   locations specified in the
-     *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters].
-     *   When this order is selected, the
-     *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters]
-     *   must not be empty. When a job has multiple locations, the location
-     *   closest to one of the locations specified in the location filter will be
-     *   used to calculate location distance. Distance is calculated by the
-     *   distance between two lat/long coordinates, with a precision of 10e-4
-     *   degrees (11.3 meters). Jobs that don't have locations specified will be
-     *   ranked below jobs having locations. Diversification strategy is still
-     *   applied unless explicitly disabled in
-     *   [SearchJobsRequest.diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
+     * * Location sorting: Use the special syntax to order jobs by distance:<br>
+     *   `"distance_from('Hawaii')"`: Order by distance from Hawaii.<br>
+     *   `"distance_from(19.89, 155.5)"`: Order by distance from a coordinate.<br>
+     *   `"distance_from('Hawaii'), distance_from('Puerto Rico')"`: Order by
+     *   multiple locations. See details below.<br>
+     *   `"distance_from('Hawaii'), distance_from(19.89, 155.5)"`: Order by
+     *   multiple locations. See details below.<br>
+     *   The string can have a maximum of 256 characters. When multiple distance
+     *   centers are provided, a job that is close to any of the distance centers
+     *   would have a high rank. When a job has multiple locations, the job
+     *   location closest to one of the distance centers will be used. Jobs that
+     *   don't have locations will be ranked at the bottom. Distance is calculated
+     *   with a precision of 11.3 meters (37.4 feet). Diversification strategy is
+     *   still applied unless explicitly disabled in
+     *   [diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
      * 
* * string order_by = 12; @@ -6812,56 +6750,59 @@ public java.lang.String getOrderBy() { * * *
-     * Optional.
-     * The criteria determining how search results are sorted. Default is
-     * "relevance desc".
+     * Optional. The criteria determining how search results are sorted. Default
+     * is
+     * `"relevance desc"`.
      * Supported options are:
-     * * "relevance desc": By relevance descending, as determined by the API
+     * * `"relevance desc"`: By relevance descending, as determined by the API
      *   algorithms. Relevance thresholding of query results is only available
      *   with this ordering.
-     * * "posting`_`publish`_`time desc": By
+     * * `"posting_publish_time desc"`: By
      * [Job.posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time]
      *   descending.
-     * * "posting`_`update`_`time desc": By
+     * * `"posting_update_time desc"`: By
      * [Job.posting_update_time][google.cloud.talent.v4beta1.Job.posting_update_time]
      *   descending.
-     * * "title": By [Job.title][google.cloud.talent.v4beta1.Job.title] ascending.
-     * * "title desc": By [Job.title][google.cloud.talent.v4beta1.Job.title]
+     * * `"title"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
+     * ascending.
+     * * `"title desc"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
      * descending.
-     * * "annualized`_`base`_`compensation": By job's
+     * * `"annualized_base_compensation"`: By job's
      *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
      *   ascending. Jobs whose annualized base compensation is unspecified are put
      *   at the end of search results.
-     * * "annualized`_`base`_`compensation desc": By job's
+     * * `"annualized_base_compensation desc"`: By job's
      *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
      *   descending. Jobs whose annualized base compensation is unspecified are
      *   put at the end of search results.
-     * * "annualized`_`total`_`compensation": By job's
+     * * `"annualized_total_compensation"`: By job's
      *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
      *   ascending. Jobs whose annualized base compensation is unspecified are put
      *   at the end of search results.
-     * * "annualized`_`total`_`compensation desc": By job's
+     * * `"annualized_total_compensation desc"`: By job's
      *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
      *   descending. Jobs whose annualized base compensation is unspecified are
      *   put at the end of search results.
-     * * "custom`_`ranking desc": By the relevance score adjusted to the
+     * * `"custom_ranking desc"`: By the relevance score adjusted to the
      *   [SearchJobsRequest.CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
      *   with weight factor assigned by
      *   [SearchJobsRequest.CustomRankingInfo.importance_level][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.importance_level]
      *   in descending order.
-     * * "location`_`distance": By the distance between the location on jobs and
-     *   locations specified in the
-     *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters].
-     *   When this order is selected, the
-     *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters]
-     *   must not be empty. When a job has multiple locations, the location
-     *   closest to one of the locations specified in the location filter will be
-     *   used to calculate location distance. Distance is calculated by the
-     *   distance between two lat/long coordinates, with a precision of 10e-4
-     *   degrees (11.3 meters). Jobs that don't have locations specified will be
-     *   ranked below jobs having locations. Diversification strategy is still
-     *   applied unless explicitly disabled in
-     *   [SearchJobsRequest.diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
+     * * Location sorting: Use the special syntax to order jobs by distance:<br>
+     *   `"distance_from('Hawaii')"`: Order by distance from Hawaii.<br>
+     *   `"distance_from(19.89, 155.5)"`: Order by distance from a coordinate.<br>
+     *   `"distance_from('Hawaii'), distance_from('Puerto Rico')"`: Order by
+     *   multiple locations. See details below.<br>
+     *   `"distance_from('Hawaii'), distance_from(19.89, 155.5)"`: Order by
+     *   multiple locations. See details below.<br>
+     *   The string can have a maximum of 256 characters. When multiple distance
+     *   centers are provided, a job that is close to any of the distance centers
+     *   would have a high rank. When a job has multiple locations, the job
+     *   location closest to one of the distance centers will be used. Jobs that
+     *   don't have locations will be ranked at the bottom. Distance is calculated
+     *   with a precision of 11.3 meters (37.4 feet). Diversification strategy is
+     *   still applied unless explicitly disabled in
+     *   [diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
      * 
* * string order_by = 12; @@ -6881,56 +6822,59 @@ public com.google.protobuf.ByteString getOrderByBytes() { * * *
-     * Optional.
-     * The criteria determining how search results are sorted. Default is
-     * "relevance desc".
+     * Optional. The criteria determining how search results are sorted. Default
+     * is
+     * `"relevance desc"`.
      * Supported options are:
-     * * "relevance desc": By relevance descending, as determined by the API
+     * * `"relevance desc"`: By relevance descending, as determined by the API
      *   algorithms. Relevance thresholding of query results is only available
      *   with this ordering.
-     * * "posting`_`publish`_`time desc": By
+     * * `"posting_publish_time desc"`: By
      * [Job.posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time]
      *   descending.
-     * * "posting`_`update`_`time desc": By
+     * * `"posting_update_time desc"`: By
      * [Job.posting_update_time][google.cloud.talent.v4beta1.Job.posting_update_time]
      *   descending.
-     * * "title": By [Job.title][google.cloud.talent.v4beta1.Job.title] ascending.
-     * * "title desc": By [Job.title][google.cloud.talent.v4beta1.Job.title]
+     * * `"title"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
+     * ascending.
+     * * `"title desc"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
      * descending.
-     * * "annualized`_`base`_`compensation": By job's
+     * * `"annualized_base_compensation"`: By job's
      *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
      *   ascending. Jobs whose annualized base compensation is unspecified are put
      *   at the end of search results.
-     * * "annualized`_`base`_`compensation desc": By job's
+     * * `"annualized_base_compensation desc"`: By job's
      *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
      *   descending. Jobs whose annualized base compensation is unspecified are
      *   put at the end of search results.
-     * * "annualized`_`total`_`compensation": By job's
+     * * `"annualized_total_compensation"`: By job's
      *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
      *   ascending. Jobs whose annualized base compensation is unspecified are put
      *   at the end of search results.
-     * * "annualized`_`total`_`compensation desc": By job's
+     * * `"annualized_total_compensation desc"`: By job's
      *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
      *   descending. Jobs whose annualized base compensation is unspecified are
      *   put at the end of search results.
-     * * "custom`_`ranking desc": By the relevance score adjusted to the
+     * * `"custom_ranking desc"`: By the relevance score adjusted to the
      *   [SearchJobsRequest.CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
      *   with weight factor assigned by
      *   [SearchJobsRequest.CustomRankingInfo.importance_level][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.importance_level]
      *   in descending order.
-     * * "location`_`distance": By the distance between the location on jobs and
-     *   locations specified in the
-     *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters].
-     *   When this order is selected, the
-     *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters]
-     *   must not be empty. When a job has multiple locations, the location
-     *   closest to one of the locations specified in the location filter will be
-     *   used to calculate location distance. Distance is calculated by the
-     *   distance between two lat/long coordinates, with a precision of 10e-4
-     *   degrees (11.3 meters). Jobs that don't have locations specified will be
-     *   ranked below jobs having locations. Diversification strategy is still
-     *   applied unless explicitly disabled in
-     *   [SearchJobsRequest.diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
+     * * Location sorting: Use the special syntax to order jobs by distance:<br>
+     *   `"distance_from('Hawaii')"`: Order by distance from Hawaii.<br>
+     *   `"distance_from(19.89, 155.5)"`: Order by distance from a coordinate.<br>
+     *   `"distance_from('Hawaii'), distance_from('Puerto Rico')"`: Order by
+     *   multiple locations. See details below.<br>
+     *   `"distance_from('Hawaii'), distance_from(19.89, 155.5)"`: Order by
+     *   multiple locations. See details below.<br>
+     *   The string can have a maximum of 256 characters. When multiple distance
+     *   centers are provided, a job that is close to any of the distance centers
+     *   would have a high rank. When a job has multiple locations, the job
+     *   location closest to one of the distance centers will be used. Jobs that
+     *   don't have locations will be ranked at the bottom. Distance is calculated
+     *   with a precision of 11.3 meters (37.4 feet). Diversification strategy is
+     *   still applied unless explicitly disabled in
+     *   [diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
      * 
* * string order_by = 12; @@ -6948,56 +6892,59 @@ public Builder setOrderBy(java.lang.String value) { * * *
-     * Optional.
-     * The criteria determining how search results are sorted. Default is
-     * "relevance desc".
+     * Optional. The criteria determining how search results are sorted. Default
+     * is
+     * `"relevance desc"`.
      * Supported options are:
-     * * "relevance desc": By relevance descending, as determined by the API
+     * * `"relevance desc"`: By relevance descending, as determined by the API
      *   algorithms. Relevance thresholding of query results is only available
      *   with this ordering.
-     * * "posting`_`publish`_`time desc": By
+     * * `"posting_publish_time desc"`: By
      * [Job.posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time]
      *   descending.
-     * * "posting`_`update`_`time desc": By
+     * * `"posting_update_time desc"`: By
      * [Job.posting_update_time][google.cloud.talent.v4beta1.Job.posting_update_time]
      *   descending.
-     * * "title": By [Job.title][google.cloud.talent.v4beta1.Job.title] ascending.
-     * * "title desc": By [Job.title][google.cloud.talent.v4beta1.Job.title]
+     * * `"title"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
+     * ascending.
+     * * `"title desc"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
      * descending.
-     * * "annualized`_`base`_`compensation": By job's
+     * * `"annualized_base_compensation"`: By job's
      *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
      *   ascending. Jobs whose annualized base compensation is unspecified are put
      *   at the end of search results.
-     * * "annualized`_`base`_`compensation desc": By job's
+     * * `"annualized_base_compensation desc"`: By job's
      *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
      *   descending. Jobs whose annualized base compensation is unspecified are
      *   put at the end of search results.
-     * * "annualized`_`total`_`compensation": By job's
+     * * `"annualized_total_compensation"`: By job's
      *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
      *   ascending. Jobs whose annualized base compensation is unspecified are put
      *   at the end of search results.
-     * * "annualized`_`total`_`compensation desc": By job's
+     * * `"annualized_total_compensation desc"`: By job's
      *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
      *   descending. Jobs whose annualized base compensation is unspecified are
      *   put at the end of search results.
-     * * "custom`_`ranking desc": By the relevance score adjusted to the
+     * * `"custom_ranking desc"`: By the relevance score adjusted to the
      *   [SearchJobsRequest.CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
      *   with weight factor assigned by
      *   [SearchJobsRequest.CustomRankingInfo.importance_level][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.importance_level]
      *   in descending order.
-     * * "location`_`distance": By the distance between the location on jobs and
-     *   locations specified in the
-     *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters].
-     *   When this order is selected, the
-     *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters]
-     *   must not be empty. When a job has multiple locations, the location
-     *   closest to one of the locations specified in the location filter will be
-     *   used to calculate location distance. Distance is calculated by the
-     *   distance between two lat/long coordinates, with a precision of 10e-4
-     *   degrees (11.3 meters). Jobs that don't have locations specified will be
-     *   ranked below jobs having locations. Diversification strategy is still
-     *   applied unless explicitly disabled in
-     *   [SearchJobsRequest.diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
+     * * Location sorting: Use the special syntax to order jobs by distance:<br>
+     *   `"distance_from('Hawaii')"`: Order by distance from Hawaii.<br>
+     *   `"distance_from(19.89, 155.5)"`: Order by distance from a coordinate.<br>
+     *   `"distance_from('Hawaii'), distance_from('Puerto Rico')"`: Order by
+     *   multiple locations. See details below.<br>
+     *   `"distance_from('Hawaii'), distance_from(19.89, 155.5)"`: Order by
+     *   multiple locations. See details below.<br>
+     *   The string can have a maximum of 256 characters. When multiple distance
+     *   centers are provided, a job that is close to any of the distance centers
+     *   would have a high rank. When a job has multiple locations, the job
+     *   location closest to one of the distance centers will be used. Jobs that
+     *   don't have locations will be ranked at the bottom. Distance is calculated
+     *   with a precision of 11.3 meters (37.4 feet). Diversification strategy is
+     *   still applied unless explicitly disabled in
+     *   [diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
      * 
* * string order_by = 12; @@ -7012,56 +6959,59 @@ public Builder clearOrderBy() { * * *
-     * Optional.
-     * The criteria determining how search results are sorted. Default is
-     * "relevance desc".
+     * Optional. The criteria determining how search results are sorted. Default
+     * is
+     * `"relevance desc"`.
      * Supported options are:
-     * * "relevance desc": By relevance descending, as determined by the API
+     * * `"relevance desc"`: By relevance descending, as determined by the API
      *   algorithms. Relevance thresholding of query results is only available
      *   with this ordering.
-     * * "posting`_`publish`_`time desc": By
+     * * `"posting_publish_time desc"`: By
      * [Job.posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time]
      *   descending.
-     * * "posting`_`update`_`time desc": By
+     * * `"posting_update_time desc"`: By
      * [Job.posting_update_time][google.cloud.talent.v4beta1.Job.posting_update_time]
      *   descending.
-     * * "title": By [Job.title][google.cloud.talent.v4beta1.Job.title] ascending.
-     * * "title desc": By [Job.title][google.cloud.talent.v4beta1.Job.title]
+     * * `"title"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
+     * ascending.
+     * * `"title desc"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
      * descending.
-     * * "annualized`_`base`_`compensation": By job's
+     * * `"annualized_base_compensation"`: By job's
      *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
      *   ascending. Jobs whose annualized base compensation is unspecified are put
      *   at the end of search results.
-     * * "annualized`_`base`_`compensation desc": By job's
+     * * `"annualized_base_compensation desc"`: By job's
      *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
      *   descending. Jobs whose annualized base compensation is unspecified are
      *   put at the end of search results.
-     * * "annualized`_`total`_`compensation": By job's
+     * * `"annualized_total_compensation"`: By job's
      *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
      *   ascending. Jobs whose annualized base compensation is unspecified are put
      *   at the end of search results.
-     * * "annualized`_`total`_`compensation desc": By job's
+     * * `"annualized_total_compensation desc"`: By job's
      *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
      *   descending. Jobs whose annualized base compensation is unspecified are
      *   put at the end of search results.
-     * * "custom`_`ranking desc": By the relevance score adjusted to the
+     * * `"custom_ranking desc"`: By the relevance score adjusted to the
      *   [SearchJobsRequest.CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
      *   with weight factor assigned by
      *   [SearchJobsRequest.CustomRankingInfo.importance_level][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.importance_level]
      *   in descending order.
-     * * "location`_`distance": By the distance between the location on jobs and
-     *   locations specified in the
-     *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters].
-     *   When this order is selected, the
-     *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters]
-     *   must not be empty. When a job has multiple locations, the location
-     *   closest to one of the locations specified in the location filter will be
-     *   used to calculate location distance. Distance is calculated by the
-     *   distance between two lat/long coordinates, with a precision of 10e-4
-     *   degrees (11.3 meters). Jobs that don't have locations specified will be
-     *   ranked below jobs having locations. Diversification strategy is still
-     *   applied unless explicitly disabled in
-     *   [SearchJobsRequest.diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
+     * * Location sorting: Use the special syntax to order jobs by distance:<br>
+     *   `"distance_from('Hawaii')"`: Order by distance from Hawaii.<br>
+     *   `"distance_from(19.89, 155.5)"`: Order by distance from a coordinate.<br>
+     *   `"distance_from('Hawaii'), distance_from('Puerto Rico')"`: Order by
+     *   multiple locations. See details below.<br>
+     *   `"distance_from('Hawaii'), distance_from(19.89, 155.5)"`: Order by
+     *   multiple locations. See details below.<br>
+     *   The string can have a maximum of 256 characters. When multiple distance
+     *   centers are provided, a job that is close to any of the distance centers
+     *   would have a high rank. When a job has multiple locations, the job
+     *   location closest to one of the distance centers will be used. Jobs that
+     *   don't have locations will be ranked at the bottom. Distance is calculated
+     *   with a precision of 11.3 meters (37.4 feet). Diversification strategy is
+     *   still applied unless explicitly disabled in
+     *   [diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
      * 
* * string order_by = 12; @@ -7082,9 +7032,8 @@ public Builder setOrderByBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Controls whether highly similar jobs are returned next to each other in
-     * the search results. Jobs are identified as highly similar based on
+     * Optional. Controls whether highly similar jobs are returned next to each
+     * other in the search results. Jobs are identified as highly similar based on
      * their titles, job categories, and locations. Highly similar results are
      * clustered so that only one representative job of the cluster is
      * displayed to the job seeker higher up in the results, with the other jobs
@@ -7105,9 +7054,8 @@ public int getDiversificationLevelValue() {
      *
      *
      * 
-     * Optional.
-     * Controls whether highly similar jobs are returned next to each other in
-     * the search results. Jobs are identified as highly similar based on
+     * Optional. Controls whether highly similar jobs are returned next to each
+     * other in the search results. Jobs are identified as highly similar based on
      * their titles, job categories, and locations. Highly similar results are
      * clustered so that only one representative job of the cluster is
      * displayed to the job seeker higher up in the results, with the other jobs
@@ -7130,9 +7078,8 @@ public Builder setDiversificationLevelValue(int value) {
      *
      *
      * 
-     * Optional.
-     * Controls whether highly similar jobs are returned next to each other in
-     * the search results. Jobs are identified as highly similar based on
+     * Optional. Controls whether highly similar jobs are returned next to each
+     * other in the search results. Jobs are identified as highly similar based on
      * their titles, job categories, and locations. Highly similar results are
      * clustered so that only one representative job of the cluster is
      * displayed to the job seeker higher up in the results, with the other jobs
@@ -7160,9 +7107,8 @@ public Builder setDiversificationLevelValue(int value) {
      *
      *
      * 
-     * Optional.
-     * Controls whether highly similar jobs are returned next to each other in
-     * the search results. Jobs are identified as highly similar based on
+     * Optional. Controls whether highly similar jobs are returned next to each
+     * other in the search results. Jobs are identified as highly similar based on
      * their titles, job categories, and locations. Highly similar results are
      * clustered so that only one representative job of the cluster is
      * displayed to the job seeker higher up in the results, with the other jobs
@@ -7190,9 +7136,8 @@ public Builder setDiversificationLevel(
      *
      *
      * 
-     * Optional.
-     * Controls whether highly similar jobs are returned next to each other in
-     * the search results. Jobs are identified as highly similar based on
+     * Optional. Controls whether highly similar jobs are returned next to each
+     * other in the search results. Jobs are identified as highly similar based on
      * their titles, job categories, and locations. Highly similar results are
      * clustered so that only one representative job of the cluster is
      * displayed to the job seeker higher up in the results, with the other jobs
@@ -7223,9 +7168,8 @@ public Builder clearDiversificationLevel() {
      *
      *
      * 
-     * Optional.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm).
+     * Optional. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm).
      * 
* * @@ -7239,9 +7183,8 @@ public boolean hasCustomRankingInfo() { * * *
-     * Optional.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm).
+     * Optional. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm).
      * 
* * @@ -7263,9 +7206,8 @@ public boolean hasCustomRankingInfo() { * * *
-     * Optional.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm).
+     * Optional. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm).
      * 
* * @@ -7290,9 +7232,8 @@ public Builder setCustomRankingInfo( * * *
-     * Optional.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm).
+     * Optional. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm).
      * 
* * @@ -7315,9 +7256,8 @@ public Builder setCustomRankingInfo( * * *
-     * Optional.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm).
+     * Optional. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm).
      * 
* * @@ -7347,9 +7287,8 @@ public Builder mergeCustomRankingInfo( * * *
-     * Optional.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm).
+     * Optional. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm).
      * 
* * @@ -7371,9 +7310,8 @@ public Builder clearCustomRankingInfo() { * * *
-     * Optional.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm).
+     * Optional. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm).
      * 
* * @@ -7390,9 +7328,8 @@ public Builder clearCustomRankingInfo() { * * *
-     * Optional.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm).
+     * Optional. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm).
      * 
* * @@ -7414,9 +7351,8 @@ public Builder clearCustomRankingInfo() { * * *
-     * Optional.
-     * Controls over how job documents get ranked on top of existing relevance
-     * score (determined by API algorithm).
+     * Optional. Controls over how job documents get ranked on top of existing
+     * relevance score (determined by API algorithm).
      * 
* * @@ -7445,8 +7381,7 @@ public Builder clearCustomRankingInfo() { * * *
-     * Optional.
-     * Controls whether to disable exact keyword match on
+     * Optional. Controls whether to disable exact keyword match on
      * [Job.title][google.cloud.talent.v4beta1.Job.title],
      * [Job.description][google.cloud.talent.v4beta1.Job.description],
      * [Job.company_display_name][google.cloud.talent.v4beta1.Job.company_display_name],
@@ -7478,8 +7413,7 @@ public boolean getDisableKeywordMatch() {
      *
      *
      * 
-     * Optional.
-     * Controls whether to disable exact keyword match on
+     * Optional. Controls whether to disable exact keyword match on
      * [Job.title][google.cloud.talent.v4beta1.Job.title],
      * [Job.description][google.cloud.talent.v4beta1.Job.description],
      * [Job.company_display_name][google.cloud.talent.v4beta1.Job.company_display_name],
@@ -7514,8 +7448,7 @@ public Builder setDisableKeywordMatch(boolean value) {
      *
      *
      * 
-     * Optional.
-     * Controls whether to disable exact keyword match on
+     * Optional. Controls whether to disable exact keyword match on
      * [Job.title][google.cloud.talent.v4beta1.Job.title],
      * [Job.description][google.cloud.talent.v4beta1.Job.description],
      * [Job.company_display_name][google.cloud.talent.v4beta1.Job.company_display_name],
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchJobsRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchJobsRequestOrBuilder.java
index d67b7ebe528f..1ec18e8fd9b1 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchJobsRequestOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchJobsRequestOrBuilder.java
@@ -12,8 +12,7 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant to search within.
+   * Required. The resource name of the tenant to search within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -27,8 +26,7 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant to search within.
+   * Required. The resource name of the tenant to search within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenant/foo".
    * Tenant id is optional and the default tenant is used if unspecified, for
@@ -43,8 +41,7 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * Mode of a search.
+   * Optional. Mode of a search.
    * Defaults to
    * [SearchMode.JOB_SEARCH][google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode.JOB_SEARCH].
    * 
@@ -56,8 +53,7 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * Mode of a search.
+   * Optional. Mode of a search.
    * Defaults to
    * [SearchMode.JOB_SEARCH][google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode.JOB_SEARCH].
    * 
@@ -70,10 +66,9 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Required.
-   * The meta information collected about the job searcher, used to improve the
-   * search quality of the service.. The identifiers, (such as `user_id`) are
-   * provided by users, and must be unique and consistent.
+   * Required. The meta information collected about the job searcher, used to
+   * improve the search quality of the service. The identifiers (such as
+   * `user_id`) are provided by users, and must be unique and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -83,10 +78,9 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Required.
-   * The meta information collected about the job searcher, used to improve the
-   * search quality of the service.. The identifiers, (such as `user_id`) are
-   * provided by users, and must be unique and consistent.
+   * Required. The meta information collected about the job searcher, used to
+   * improve the search quality of the service. The identifiers (such as
+   * `user_id`) are provided by users, and must be unique and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -96,10 +90,9 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Required.
-   * The meta information collected about the job searcher, used to improve the
-   * search quality of the service.. The identifiers, (such as `user_id`) are
-   * provided by users, and must be unique and consistent.
+   * Required. The meta information collected about the job searcher, used to
+   * improve the search quality of the service. The identifiers (such as
+   * `user_id`) are provided by users, and must be unique and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 3; @@ -110,8 +103,8 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * Query used to search against jobs, such as keyword, location filters, etc.
+   * Optional. Query used to search against jobs, such as keyword, location
+   * filters, etc.
    * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -121,8 +114,8 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * Query used to search against jobs, such as keyword, location filters, etc.
+   * Optional. Query used to search against jobs, such as keyword, location
+   * filters, etc.
    * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -132,8 +125,8 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * Query used to search against jobs, such as keyword, location filters, etc.
+   * Optional. Query used to search against jobs, such as keyword, location
+   * filters, etc.
    * 
* * .google.cloud.talent.v4beta1.JobQuery job_query = 4; @@ -144,10 +137,9 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * Controls whether to broaden the search when it produces sparse results.
-   * Broadened queries append results to the end of the matching results
-   * list.
+   * Optional. Controls whether to broaden the search when it produces sparse
+   * results. Broadened queries append results to the end of the matching
+   * results list.
    * Defaults to false.
    * 
* @@ -159,9 +151,8 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * Controls if the search job request requires the return of a precise
-   * count of the first 300 results. Setting this to `true` ensures
+   * Optional. Controls if the search job request requires the return of a
+   * precise count of the first 300 results. Setting this to `true` ensures
    * consistency in the number of results per page. Best practice is to set this
    * value to true if a client allows users to jump directly to a
    * non-sequential search results page.
@@ -177,8 +168,8 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * An expression specifies a histogram request against matching jobs.
+   * Optional. An expression specifies a histogram request against matching
+   * jobs.
    * Expression syntax is an aggregation function call with histogram facets and
    * other options.
    * Available aggregation function calls are:
@@ -282,8 +273,8 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * An expression specifies a histogram request against matching jobs.
+   * Optional. An expression specifies a histogram request against matching
+   * jobs.
    * Expression syntax is an aggregation function call with histogram facets and
    * other options.
    * Available aggregation function calls are:
@@ -387,8 +378,8 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * An expression specifies a histogram request against matching jobs.
+   * Optional. An expression specifies a histogram request against matching
+   * jobs.
    * Expression syntax is an aggregation function call with histogram facets and
    * other options.
    * Available aggregation function calls are:
@@ -492,8 +483,8 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * An expression specifies a histogram request against matching jobs.
+   * Optional. An expression specifies a histogram request against matching
+   * jobs.
    * Expression syntax is an aggregation function call with histogram facets and
    * other options.
    * Available aggregation function calls are:
@@ -598,8 +589,8 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * An expression specifies a histogram request against matching jobs.
+   * Optional. An expression specifies a histogram request against matching
+   * jobs.
    * Expression syntax is an aggregation function call with histogram facets and
    * other options.
    * Available aggregation function calls are:
@@ -704,9 +695,8 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The desired job attributes returned for jobs in the search response.
-   * Defaults to
+   * Optional. The desired job attributes returned for jobs in the search
+   * response. Defaults to
    * [JobView.JOB_VIEW_SMALL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_SMALL]
    * if no value is specified.
    * 
@@ -718,9 +708,8 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * The desired job attributes returned for jobs in the search response.
-   * Defaults to
+   * Optional. The desired job attributes returned for jobs in the search
+   * response. Defaults to
    * [JobView.JOB_VIEW_SMALL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_SMALL]
    * if no value is specified.
    * 
@@ -733,9 +722,8 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * An integer that specifies the current offset (that is, starting result
-   * location, amongst the jobs deemed by the API as relevant) in search
+   * Optional. An integer that specifies the current offset (that is, starting
+   * result location, amongst the jobs deemed by the API as relevant) in search
    * results. This field is only considered if
    * [page_token][google.cloud.talent.v4beta1.SearchJobsRequest.page_token] is
    * unset.
@@ -753,8 +741,7 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * A limit on the number of jobs returned in the search results.
+   * Optional. A limit on the number of jobs returned in the search results.
    * Increasing this value above the default value of 10 can increase search
    * response time. The value can be between 1 and 100.
    * 
@@ -767,8 +754,7 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * The token specifying the current offset within
+   * Optional. The token specifying the current offset within
    * search results. See
    * [SearchJobsResponse.next_page_token][google.cloud.talent.v4beta1.SearchJobsResponse.next_page_token]
    * for an explanation of how to obtain the next set of query results.
@@ -781,8 +767,7 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The token specifying the current offset within
+   * Optional. The token specifying the current offset within
    * search results. See
    * [SearchJobsResponse.next_page_token][google.cloud.talent.v4beta1.SearchJobsResponse.next_page_token]
    * for an explanation of how to obtain the next set of query results.
@@ -796,56 +781,59 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The criteria determining how search results are sorted. Default is
-   * "relevance desc".
+   * Optional. The criteria determining how search results are sorted. Default
+   * is
+   * `"relevance desc"`.
    * Supported options are:
-   * * "relevance desc": By relevance descending, as determined by the API
+   * * `"relevance desc"`: By relevance descending, as determined by the API
    *   algorithms. Relevance thresholding of query results is only available
    *   with this ordering.
-   * * "posting`_`publish`_`time desc": By
+   * * `"posting_publish_time desc"`: By
    * [Job.posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time]
    *   descending.
-   * * "posting`_`update`_`time desc": By
+   * * `"posting_update_time desc"`: By
    * [Job.posting_update_time][google.cloud.talent.v4beta1.Job.posting_update_time]
    *   descending.
-   * * "title": By [Job.title][google.cloud.talent.v4beta1.Job.title] ascending.
-   * * "title desc": By [Job.title][google.cloud.talent.v4beta1.Job.title]
+   * * `"title"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
+   * ascending.
+   * * `"title desc"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
    * descending.
-   * * "annualized`_`base`_`compensation": By job's
+   * * `"annualized_base_compensation"`: By job's
    *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
    *   ascending. Jobs whose annualized base compensation is unspecified are put
    *   at the end of search results.
-   * * "annualized`_`base`_`compensation desc": By job's
+   * * `"annualized_base_compensation desc"`: By job's
    *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
    *   descending. Jobs whose annualized base compensation is unspecified are
    *   put at the end of search results.
-   * * "annualized`_`total`_`compensation": By job's
+   * * `"annualized_total_compensation"`: By job's
    *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
    *   ascending. Jobs whose annualized base compensation is unspecified are put
    *   at the end of search results.
-   * * "annualized`_`total`_`compensation desc": By job's
+   * * `"annualized_total_compensation desc"`: By job's
    *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
    *   descending. Jobs whose annualized base compensation is unspecified are
    *   put at the end of search results.
-   * * "custom`_`ranking desc": By the relevance score adjusted to the
+   * * `"custom_ranking desc"`: By the relevance score adjusted to the
    *   [SearchJobsRequest.CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
    *   with weight factor assigned by
    *   [SearchJobsRequest.CustomRankingInfo.importance_level][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.importance_level]
    *   in descending order.
-   * * "location`_`distance": By the distance between the location on jobs and
-   *   locations specified in the
-   *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters].
-   *   When this order is selected, the
-   *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters]
-   *   must not be empty. When a job has multiple locations, the location
-   *   closest to one of the locations specified in the location filter will be
-   *   used to calculate location distance. Distance is calculated by the
-   *   distance between two lat/long coordinates, with a precision of 10e-4
-   *   degrees (11.3 meters). Jobs that don't have locations specified will be
-   *   ranked below jobs having locations. Diversification strategy is still
-   *   applied unless explicitly disabled in
-   *   [SearchJobsRequest.diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
+   * * Location sorting: Use the special syntax to order jobs by distance:<br>
+   *   `"distance_from('Hawaii')"`: Order by distance from Hawaii.<br>
+   *   `"distance_from(19.89, 155.5)"`: Order by distance from a coordinate.<br>
+   *   `"distance_from('Hawaii'), distance_from('Puerto Rico')"`: Order by
+   *   multiple locations. See details below.<br>
+   *   `"distance_from('Hawaii'), distance_from(19.89, 155.5)"`: Order by
+   *   multiple locations. See details below.<br>
+   *   The string can have a maximum of 256 characters. When multiple distance
+   *   centers are provided, a job that is close to any of the distance centers
+   *   would have a high rank. When a job has multiple locations, the job
+   *   location closest to one of the distance centers will be used. Jobs that
+   *   don't have locations will be ranked at the bottom. Distance is calculated
+   *   with a precision of 11.3 meters (37.4 feet). Diversification strategy is
+   *   still applied unless explicitly disabled in
+   *   [diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
    * 
* * string order_by = 12; @@ -855,56 +843,59 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * The criteria determining how search results are sorted. Default is
-   * "relevance desc".
+   * Optional. The criteria determining how search results are sorted. Default
+   * is
+   * `"relevance desc"`.
    * Supported options are:
-   * * "relevance desc": By relevance descending, as determined by the API
+   * * `"relevance desc"`: By relevance descending, as determined by the API
    *   algorithms. Relevance thresholding of query results is only available
    *   with this ordering.
-   * * "posting`_`publish`_`time desc": By
+   * * `"posting_publish_time desc"`: By
    * [Job.posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time]
    *   descending.
-   * * "posting`_`update`_`time desc": By
+   * * `"posting_update_time desc"`: By
    * [Job.posting_update_time][google.cloud.talent.v4beta1.Job.posting_update_time]
    *   descending.
-   * * "title": By [Job.title][google.cloud.talent.v4beta1.Job.title] ascending.
-   * * "title desc": By [Job.title][google.cloud.talent.v4beta1.Job.title]
+   * * `"title"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
+   * ascending.
+   * * `"title desc"`: By [Job.title][google.cloud.talent.v4beta1.Job.title]
    * descending.
-   * * "annualized`_`base`_`compensation": By job's
+   * * `"annualized_base_compensation"`: By job's
    *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
    *   ascending. Jobs whose annualized base compensation is unspecified are put
    *   at the end of search results.
-   * * "annualized`_`base`_`compensation desc": By job's
+   * * `"annualized_base_compensation desc"`: By job's
    *   [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range]
    *   descending. Jobs whose annualized base compensation is unspecified are
    *   put at the end of search results.
-   * * "annualized`_`total`_`compensation": By job's
+   * * `"annualized_total_compensation"`: By job's
    *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
    *   ascending. Jobs whose annualized base compensation is unspecified are put
    *   at the end of search results.
-   * * "annualized`_`total`_`compensation desc": By job's
+   * * `"annualized_total_compensation desc"`: By job's
    *   [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range]
    *   descending. Jobs whose annualized base compensation is unspecified are
    *   put at the end of search results.
-   * * "custom`_`ranking desc": By the relevance score adjusted to the
+   * * `"custom_ranking desc"`: By the relevance score adjusted to the
    *   [SearchJobsRequest.CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression]
    *   with weight factor assigned by
    *   [SearchJobsRequest.CustomRankingInfo.importance_level][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.importance_level]
    *   in descending order.
-   * * "location`_`distance": By the distance between the location on jobs and
-   *   locations specified in the
-   *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters].
-   *   When this order is selected, the
-   *   [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters]
-   *   must not be empty. When a job has multiple locations, the location
-   *   closest to one of the locations specified in the location filter will be
-   *   used to calculate location distance. Distance is calculated by the
-   *   distance between two lat/long coordinates, with a precision of 10e-4
-   *   degrees (11.3 meters). Jobs that don't have locations specified will be
-   *   ranked below jobs having locations. Diversification strategy is still
-   *   applied unless explicitly disabled in
-   *   [SearchJobsRequest.diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
+   * * Location sorting: Use the special syntax to order jobs by distance:<br>
+   *   `"distance_from('Hawaii')"`: Order by distance from Hawaii.<br>
+   *   `"distance_from(19.89, 155.5)"`: Order by distance from a coordinate.<br>
+   *   `"distance_from('Hawaii'), distance_from('Puerto Rico')"`: Order by
+   *   multiple locations. See details below.<br>
+   *   `"distance_from('Hawaii'), distance_from(19.89, 155.5)"`: Order by
+   *   multiple locations. See details below.<br>
+   *   The string can have a maximum of 256 characters. When multiple distance
+   *   centers are provided, a job that is close to any of the distance centers
+   *   would have a high rank. When a job has multiple locations, the job
+   *   location closest to one of the distance centers will be used. Jobs that
+   *   don't have locations will be ranked at the bottom. Distance is calculated
+   *   with a precision of 11.3 meters (37.4 feet). Diversification strategy is
+   *   still applied unless explicitly disabled in
+   *   [diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level].
    * 
* * string order_by = 12; @@ -915,9 +906,8 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * Controls whether highly similar jobs are returned next to each other in
-   * the search results. Jobs are identified as highly similar based on
+   * Optional. Controls whether highly similar jobs are returned next to each
+   * other in the search results. Jobs are identified as highly similar based on
    * their titles, job categories, and locations. Highly similar results are
    * clustered so that only one representative job of the cluster is
    * displayed to the job seeker higher up in the results, with the other jobs
@@ -936,9 +926,8 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * Controls whether highly similar jobs are returned next to each other in
-   * the search results. Jobs are identified as highly similar based on
+   * Optional. Controls whether highly similar jobs are returned next to each
+   * other in the search results. Jobs are identified as highly similar based on
    * their titles, job categories, and locations. Highly similar results are
    * clustered so that only one representative job of the cluster is
    * displayed to the job seeker higher up in the results, with the other jobs
@@ -958,9 +947,8 @@ public interface SearchJobsRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * Controls over how job documents get ranked on top of existing relevance
-   * score (determined by API algorithm).
+   * Optional. Controls over how job documents get ranked on top of existing
+   * relevance score (determined by API algorithm).
    * 
* * @@ -972,9 +960,8 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * Controls over how job documents get ranked on top of existing relevance
-   * score (determined by API algorithm).
+   * Optional. Controls over how job documents get ranked on top of existing
+   * relevance score (determined by API algorithm).
    * 
* * @@ -986,9 +973,8 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * Controls over how job documents get ranked on top of existing relevance
-   * score (determined by API algorithm).
+   * Optional. Controls over how job documents get ranked on top of existing
+   * relevance score (determined by API algorithm).
    * 
* * @@ -1002,8 +988,7 @@ public interface SearchJobsRequestOrBuilder * * *
-   * Optional.
-   * Controls whether to disable exact keyword match on
+   * Optional. Controls whether to disable exact keyword match on
    * [Job.title][google.cloud.talent.v4beta1.Job.title],
    * [Job.description][google.cloud.talent.v4beta1.Job.description],
    * [Job.company_display_name][google.cloud.talent.v4beta1.Job.company_display_name],
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesRequest.java
index 23db036b7180..5c7eecd7976f 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesRequest.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesRequest.java
@@ -27,6 +27,7 @@ private SearchProfilesRequest() {
     pageToken_ = "";
     orderBy_ = "";
     histogramQueries_ = java.util.Collections.emptyList();
+    resultSetId_ = "";
   }
 
   @java.lang.Override
@@ -138,6 +139,13 @@ private SearchProfilesRequest(
                       com.google.cloud.talent.v4beta1.HistogramQuery.parser(), extensionRegistry));
               break;
             }
+          case 98:
+            {
+              java.lang.String s = input.readStringRequireUtf8();
+
+              resultSetId_ = s;
+              break;
+            }
           default:
             {
               if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) {
@@ -182,8 +190,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required.
-   * The resource name of the tenant to search within.
+   * Required. The resource name of the tenant to search within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -205,8 +212,7 @@ public java.lang.String getParent() { * * *
-   * Required.
-   * The resource name of the tenant to search within.
+   * Required. The resource name of the tenant to search within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -231,10 +237,9 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-   * Required.
-   * The meta information collected about the profile search user. This is used
-   * to improve the search quality of the service. These values are provided by
-   * users, and must be precise and consistent.
+   * Required. The meta information collected about the profile search user.
+   * This is used to improve the search quality of the service. These values are
+   * provided by users, and must be precise and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -246,10 +251,9 @@ public boolean hasRequestMetadata() { * * *
-   * Required.
-   * The meta information collected about the profile search user. This is used
-   * to improve the search quality of the service. These values are provided by
-   * users, and must be precise and consistent.
+   * Required. The meta information collected about the profile search user.
+   * This is used to improve the search quality of the service. These values are
+   * provided by users, and must be precise and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -263,10 +267,9 @@ public com.google.cloud.talent.v4beta1.RequestMetadata getRequestMetadata() { * * *
-   * Required.
-   * The meta information collected about the profile search user. This is used
-   * to improve the search quality of the service. These values are provided by
-   * users, and must be precise and consistent.
+   * Required. The meta information collected about the profile search user.
+   * This is used to improve the search quality of the service. These values are
+   * provided by users, and must be precise and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -281,8 +284,7 @@ public com.google.cloud.talent.v4beta1.RequestMetadataOrBuilder getRequestMetada * * *
-   * Optional.
-   * Search query to execute. See
+   * Optional. Search query to execute. See
    * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
    * 
* @@ -295,8 +297,7 @@ public boolean hasProfileQuery() { * * *
-   * Optional.
-   * Search query to execute. See
+   * Optional. Search query to execute. See
    * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
    * 
* @@ -311,8 +312,7 @@ public com.google.cloud.talent.v4beta1.ProfileQuery getProfileQuery() { * * *
-   * Optional.
-   * Search query to execute. See
+   * Optional. Search query to execute. See
    * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
    * 
* @@ -328,8 +328,7 @@ public com.google.cloud.talent.v4beta1.ProfileQueryOrBuilder getProfileQueryOrBu * * *
-   * Optional.
-   * A limit on the number of profiles returned in the search results.
+   * Optional. A limit on the number of profiles returned in the search results.
    * A value above the default value 10 can increase search response time.
    * The maximum value allowed is 100. Otherwise an error is thrown.
    * 
@@ -346,10 +345,9 @@ public int getPageSize() { * * *
-   * Optional.
-   * The pageToken, similar to offset enables users of the API to paginate
-   * through the search results. To retrieve the first page of results, set the
-   * pageToken to empty. The search response includes a
+   * Optional. The pageToken, similar to offset enables users of the API to
+   * paginate through the search results. To retrieve the first page of results,
+   * set the pageToken to empty. The search response includes a
    * [nextPageToken][google.cloud.talent.v4beta1.SearchProfilesResponse.next_page_token]
    * field that can be used to populate the pageToken field for the next page of
    * results. Using pageToken instead of offset increases the performance of the
@@ -373,10 +371,9 @@ public java.lang.String getPageToken() {
    *
    *
    * 
-   * Optional.
-   * The pageToken, similar to offset enables users of the API to paginate
-   * through the search results. To retrieve the first page of results, set the
-   * pageToken to empty. The search response includes a
+   * Optional. The pageToken, similar to offset enables users of the API to
+   * paginate through the search results. To retrieve the first page of results,
+   * set the pageToken to empty. The search response includes a
    * [nextPageToken][google.cloud.talent.v4beta1.SearchProfilesResponse.next_page_token]
    * field that can be used to populate the pageToken field for the next page of
    * results. Using pageToken instead of offset increases the performance of the
@@ -403,9 +400,8 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
    *
    *
    * 
-   * Optional.
-   * An integer that specifies the current offset (that is, starting result) in
-   * search results. This field is only considered if
+   * Optional. An integer that specifies the current offset (that is, starting
+   * result) in search results. This field is only considered if
    * [page_token][google.cloud.talent.v4beta1.SearchProfilesRequest.page_token]
    * is unset.
    * The maximum allowed value is 5000. Otherwise an error is thrown.
@@ -426,8 +422,7 @@ public int getOffset() {
    *
    *
    * 
-   * Optional.
-   * This flag controls the spell-check feature. If `false`, the
+   * Optional. This flag controls the spell-check feature. If `false`, the
    * service attempts to correct a misspelled query.
    * For example, "enginee" is corrected to "engineer".
    * 
@@ -444,8 +439,7 @@ public boolean getDisableSpellCheck() { * * *
-   * Optional.
-   * The criteria that determines how search results are sorted.
+   * Optional. The criteria that determines how search results are sorted.
    * Defaults is "relevance desc" if no value is specified.
    * Supported options are:
    * * "relevance desc": By descending relevance, as determined by the API
@@ -491,8 +485,7 @@ public java.lang.String getOrderBy() {
    *
    *
    * 
-   * Optional.
-   * The criteria that determines how search results are sorted.
+   * Optional. The criteria that determines how search results are sorted.
    * Defaults is "relevance desc" if no value is specified.
    * Supported options are:
    * * "relevance desc": By descending relevance, as determined by the API
@@ -541,10 +534,9 @@ public com.google.protobuf.ByteString getOrderByBytes() {
    *
    *
    * 
-   * Optional.
-   * When sort by field is based on alphabetical order, sort values case
-   * sensitively (based on ASCII) when the value is set to true. Default value
-   * is case in-sensitive sort (false).
+   * Optional. When sort by field is based on alphabetical order, sort values
+   * case sensitively (based on ASCII) when the value is set to true. Default
+   * value is case in-sensitive sort (false).
    * 
* * bool case_sensitive_sort = 9; @@ -559,9 +551,8 @@ public boolean getCaseSensitiveSort() { * * *
-   * Optional.
-   * A list of expressions specifies histogram requests against matching
-   * profiles for
+   * Optional. A list of expressions specifies histogram requests against
+   * matching profiles for
    * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
    * The expression syntax looks like a function definition with optional
    * parameters.
@@ -641,9 +632,8 @@ public java.util.List getHistogr
    *
    *
    * 
-   * Optional.
-   * A list of expressions specifies histogram requests against matching
-   * profiles for
+   * Optional. A list of expressions specifies histogram requests against
+   * matching profiles for
    * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
    * The expression syntax looks like a function definition with optional
    * parameters.
@@ -724,9 +714,8 @@ public java.util.List getHistogr
    *
    *
    * 
-   * Optional.
-   * A list of expressions specifies histogram requests against matching
-   * profiles for
+   * Optional. A list of expressions specifies histogram requests against
+   * matching profiles for
    * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
    * The expression syntax looks like a function definition with optional
    * parameters.
@@ -806,9 +795,8 @@ public int getHistogramQueriesCount() {
    *
    *
    * 
-   * Optional.
-   * A list of expressions specifies histogram requests against matching
-   * profiles for
+   * Optional. A list of expressions specifies histogram requests against
+   * matching profiles for
    * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
    * The expression syntax looks like a function definition with optional
    * parameters.
@@ -888,9 +876,8 @@ public com.google.cloud.talent.v4beta1.HistogramQuery getHistogramQueries(int in
    *
    *
    * 
-   * Optional.
-   * A list of expressions specifies histogram requests against matching
-   * profiles for
+   * Optional. A list of expressions specifies histogram requests against
+   * matching profiles for
    * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
    * The expression syntax looks like a function definition with optional
    * parameters.
@@ -968,6 +955,91 @@ public com.google.cloud.talent.v4beta1.HistogramQueryOrBuilder getHistogramQueri
     return histogramQueries_.get(index);
   }
 
+  public static final int RESULT_SET_ID_FIELD_NUMBER = 12;
+  private volatile java.lang.Object resultSetId_;
+  /**
+   *
+   *
+   * 
+   * Optional. An id that uniquely identifies the result set of a
+   * [SearchProfiles][] call.  The id should be retrieved from the
+   * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+   * message returned from a previous invocation of [SearchProfiles][].
+   * A result set is an ordered list of search results.
+   * If this field is not set, a new result set is computed based on the
+   * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query].
+   * A new
+   * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+   * is returned as a handle to access this result set.
+   * If this field is set, the service will ignore the resource and
+   * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query]
+   * values, and simply retrieve a page of results from the corresponding result
+   * set.  In this case, one and only one of [page_token] or [offset] must be
+   * set.
+   * A typical use case is to invoke
+   * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest]
+   * without this field, then use the resulting
+   * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+   * in
+   * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+   * to page through the results.
+   * 
+ * + * string result_set_id = 12; + */ + public java.lang.String getResultSetId() { + java.lang.Object ref = resultSetId_; + 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(); + resultSetId_ = s; + return s; + } + } + /** + * + * + *
+   * Optional. An id that uniquely identifies the result set of a
+   * [SearchProfiles][] call.  The id should be retrieved from the
+   * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+   * message returned from a previous invocation of [SearchProfiles][].
+   * A result set is an ordered list of search results.
+   * If this field is not set, a new result set is computed based on the
+   * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query].
+   * A new
+   * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+   * is returned as a handle to access this result set.
+   * If this field is set, the service will ignore the resource and
+   * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query]
+   * values, and simply retrieve a page of results from the corresponding result
+   * set.  In this case, one and only one of [page_token] or [offset] must be
+   * set.
+   * A typical use case is to invoke
+   * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest]
+   * without this field, then use the resulting
+   * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+   * in
+   * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+   * to page through the results.
+   * 
+ * + * string result_set_id = 12; + */ + public com.google.protobuf.ByteString getResultSetIdBytes() { + java.lang.Object ref = resultSetId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + resultSetId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -1012,6 +1084,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io for (int i = 0; i < histogramQueries_.size(); i++) { output.writeMessage(10, histogramQueries_.get(i)); } + if (!getResultSetIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 12, resultSetId_); + } unknownFields.writeTo(output); } @@ -1052,6 +1127,9 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream.computeMessageSize(10, histogramQueries_.get(i)); } + if (!getResultSetIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(12, resultSetId_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -1084,6 +1162,7 @@ public boolean equals(final java.lang.Object obj) { if (!getOrderBy().equals(other.getOrderBy())) return false; if (getCaseSensitiveSort() != other.getCaseSensitiveSort()) return false; if (!getHistogramQueriesList().equals(other.getHistogramQueriesList())) return false; + if (!getResultSetId().equals(other.getResultSetId())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -1121,6 +1200,8 @@ public int hashCode() { hash = (37 * hash) + HISTOGRAM_QUERIES_FIELD_NUMBER; hash = (53 * hash) + getHistogramQueriesList().hashCode(); } + hash = (37 * hash) + RESULT_SET_ID_FIELD_NUMBER; + hash = (53 * hash) + getResultSetId().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -1301,6 +1382,8 @@ public Builder clear() { } else { histogramQueriesBuilder_.clear(); } + resultSetId_ = ""; + return this; } @@ -1356,6 +1439,7 @@ public com.google.cloud.talent.v4beta1.SearchProfilesRequest buildPartial() { } else { result.histogramQueries_ = histogramQueriesBuilder_.build(); } + result.resultSetId_ = resultSetId_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -1464,6 +1548,10 @@ public Builder mergeFrom(com.google.cloud.talent.v4beta1.SearchProfilesRequest o } } } + if (!other.getResultSetId().isEmpty()) { + resultSetId_ = other.resultSetId_; + onChanged(); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1501,8 +1589,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The resource name of the tenant to search within.
+     * Required. The resource name of the tenant to search within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -1524,8 +1611,7 @@ public java.lang.String getParent() { * * *
-     * Required.
-     * The resource name of the tenant to search within.
+     * Required. The resource name of the tenant to search within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -1547,8 +1633,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-     * Required.
-     * The resource name of the tenant to search within.
+     * Required. The resource name of the tenant to search within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -1568,8 +1653,7 @@ public Builder setParent(java.lang.String value) { * * *
-     * Required.
-     * The resource name of the tenant to search within.
+     * Required. The resource name of the tenant to search within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -1586,8 +1670,7 @@ public Builder clearParent() { * * *
-     * Required.
-     * The resource name of the tenant to search within.
+     * Required. The resource name of the tenant to search within.
      * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
      * "projects/api-test-project/tenants/foo".
      * 
@@ -1615,10 +1698,9 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) { * * *
-     * Required.
-     * The meta information collected about the profile search user. This is used
-     * to improve the search quality of the service. These values are provided by
-     * users, and must be precise and consistent.
+     * Required. The meta information collected about the profile search user.
+     * This is used to improve the search quality of the service. These values are
+     * provided by users, and must be precise and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -1630,10 +1712,9 @@ public boolean hasRequestMetadata() { * * *
-     * Required.
-     * The meta information collected about the profile search user. This is used
-     * to improve the search quality of the service. These values are provided by
-     * users, and must be precise and consistent.
+     * Required. The meta information collected about the profile search user.
+     * This is used to improve the search quality of the service. These values are
+     * provided by users, and must be precise and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -1651,10 +1732,9 @@ public com.google.cloud.talent.v4beta1.RequestMetadata getRequestMetadata() { * * *
-     * Required.
-     * The meta information collected about the profile search user. This is used
-     * to improve the search quality of the service. These values are provided by
-     * users, and must be precise and consistent.
+     * Required. The meta information collected about the profile search user.
+     * This is used to improve the search quality of the service. These values are
+     * provided by users, and must be precise and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -1676,10 +1756,9 @@ public Builder setRequestMetadata(com.google.cloud.talent.v4beta1.RequestMetadat * * *
-     * Required.
-     * The meta information collected about the profile search user. This is used
-     * to improve the search quality of the service. These values are provided by
-     * users, and must be precise and consistent.
+     * Required. The meta information collected about the profile search user.
+     * This is used to improve the search quality of the service. These values are
+     * provided by users, and must be precise and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -1699,10 +1778,9 @@ public Builder setRequestMetadata( * * *
-     * Required.
-     * The meta information collected about the profile search user. This is used
-     * to improve the search quality of the service. These values are provided by
-     * users, and must be precise and consistent.
+     * Required. The meta information collected about the profile search user.
+     * This is used to improve the search quality of the service. These values are
+     * provided by users, and must be precise and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -1728,10 +1806,9 @@ public Builder mergeRequestMetadata(com.google.cloud.talent.v4beta1.RequestMetad * * *
-     * Required.
-     * The meta information collected about the profile search user. This is used
-     * to improve the search quality of the service. These values are provided by
-     * users, and must be precise and consistent.
+     * Required. The meta information collected about the profile search user.
+     * This is used to improve the search quality of the service. These values are
+     * provided by users, and must be precise and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -1751,10 +1828,9 @@ public Builder clearRequestMetadata() { * * *
-     * Required.
-     * The meta information collected about the profile search user. This is used
-     * to improve the search quality of the service. These values are provided by
-     * users, and must be precise and consistent.
+     * Required. The meta information collected about the profile search user.
+     * This is used to improve the search quality of the service. These values are
+     * provided by users, and must be precise and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -1768,10 +1844,9 @@ public com.google.cloud.talent.v4beta1.RequestMetadata.Builder getRequestMetadat * * *
-     * Required.
-     * The meta information collected about the profile search user. This is used
-     * to improve the search quality of the service. These values are provided by
-     * users, and must be precise and consistent.
+     * Required. The meta information collected about the profile search user.
+     * This is used to improve the search quality of the service. These values are
+     * provided by users, and must be precise and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -1789,10 +1864,9 @@ public com.google.cloud.talent.v4beta1.RequestMetadataOrBuilder getRequestMetada * * *
-     * Required.
-     * The meta information collected about the profile search user. This is used
-     * to improve the search quality of the service. These values are provided by
-     * users, and must be precise and consistent.
+     * Required. The meta information collected about the profile search user.
+     * This is used to improve the search quality of the service. These values are
+     * provided by users, and must be precise and consistent.
      * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -1824,8 +1898,7 @@ public com.google.cloud.talent.v4beta1.RequestMetadataOrBuilder getRequestMetada * * *
-     * Optional.
-     * Search query to execute. See
+     * Optional. Search query to execute. See
      * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
      * 
* @@ -1838,8 +1911,7 @@ public boolean hasProfileQuery() { * * *
-     * Optional.
-     * Search query to execute. See
+     * Optional. Search query to execute. See
      * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
      * 
* @@ -1858,8 +1930,7 @@ public com.google.cloud.talent.v4beta1.ProfileQuery getProfileQuery() { * * *
-     * Optional.
-     * Search query to execute. See
+     * Optional. Search query to execute. See
      * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
      * 
* @@ -1882,8 +1953,7 @@ public Builder setProfileQuery(com.google.cloud.talent.v4beta1.ProfileQuery valu * * *
-     * Optional.
-     * Search query to execute. See
+     * Optional. Search query to execute. See
      * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
      * 
* @@ -1904,8 +1974,7 @@ public Builder setProfileQuery( * * *
-     * Optional.
-     * Search query to execute. See
+     * Optional. Search query to execute. See
      * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
      * 
* @@ -1932,8 +2001,7 @@ public Builder mergeProfileQuery(com.google.cloud.talent.v4beta1.ProfileQuery va * * *
-     * Optional.
-     * Search query to execute. See
+     * Optional. Search query to execute. See
      * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
      * 
* @@ -1954,8 +2022,7 @@ public Builder clearProfileQuery() { * * *
-     * Optional.
-     * Search query to execute. See
+     * Optional. Search query to execute. See
      * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
      * 
* @@ -1970,8 +2037,7 @@ public com.google.cloud.talent.v4beta1.ProfileQuery.Builder getProfileQueryBuild * * *
-     * Optional.
-     * Search query to execute. See
+     * Optional. Search query to execute. See
      * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
      * 
* @@ -1990,8 +2056,7 @@ public com.google.cloud.talent.v4beta1.ProfileQueryOrBuilder getProfileQueryOrBu * * *
-     * Optional.
-     * Search query to execute. See
+     * Optional. Search query to execute. See
      * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
      * 
* @@ -2019,8 +2084,7 @@ public com.google.cloud.talent.v4beta1.ProfileQueryOrBuilder getProfileQueryOrBu * * *
-     * Optional.
-     * A limit on the number of profiles returned in the search results.
+     * Optional. A limit on the number of profiles returned in the search results.
      * A value above the default value 10 can increase search response time.
      * The maximum value allowed is 100. Otherwise an error is thrown.
      * 
@@ -2034,8 +2098,7 @@ public int getPageSize() { * * *
-     * Optional.
-     * A limit on the number of profiles returned in the search results.
+     * Optional. A limit on the number of profiles returned in the search results.
      * A value above the default value 10 can increase search response time.
      * The maximum value allowed is 100. Otherwise an error is thrown.
      * 
@@ -2052,8 +2115,7 @@ public Builder setPageSize(int value) { * * *
-     * Optional.
-     * A limit on the number of profiles returned in the search results.
+     * Optional. A limit on the number of profiles returned in the search results.
      * A value above the default value 10 can increase search response time.
      * The maximum value allowed is 100. Otherwise an error is thrown.
      * 
@@ -2072,10 +2134,9 @@ public Builder clearPageSize() { * * *
-     * Optional.
-     * The pageToken, similar to offset enables users of the API to paginate
-     * through the search results. To retrieve the first page of results, set the
-     * pageToken to empty. The search response includes a
+     * Optional. The pageToken, similar to offset enables users of the API to
+     * paginate through the search results. To retrieve the first page of results,
+     * set the pageToken to empty. The search response includes a
      * [nextPageToken][google.cloud.talent.v4beta1.SearchProfilesResponse.next_page_token]
      * field that can be used to populate the pageToken field for the next page of
      * results. Using pageToken instead of offset increases the performance of the
@@ -2099,10 +2160,9 @@ public java.lang.String getPageToken() {
      *
      *
      * 
-     * Optional.
-     * The pageToken, similar to offset enables users of the API to paginate
-     * through the search results. To retrieve the first page of results, set the
-     * pageToken to empty. The search response includes a
+     * Optional. The pageToken, similar to offset enables users of the API to
+     * paginate through the search results. To retrieve the first page of results,
+     * set the pageToken to empty. The search response includes a
      * [nextPageToken][google.cloud.talent.v4beta1.SearchProfilesResponse.next_page_token]
      * field that can be used to populate the pageToken field for the next page of
      * results. Using pageToken instead of offset increases the performance of the
@@ -2126,10 +2186,9 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
      *
      *
      * 
-     * Optional.
-     * The pageToken, similar to offset enables users of the API to paginate
-     * through the search results. To retrieve the first page of results, set the
-     * pageToken to empty. The search response includes a
+     * Optional. The pageToken, similar to offset enables users of the API to
+     * paginate through the search results. To retrieve the first page of results,
+     * set the pageToken to empty. The search response includes a
      * [nextPageToken][google.cloud.talent.v4beta1.SearchProfilesResponse.next_page_token]
      * field that can be used to populate the pageToken field for the next page of
      * results. Using pageToken instead of offset increases the performance of the
@@ -2151,10 +2210,9 @@ public Builder setPageToken(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The pageToken, similar to offset enables users of the API to paginate
-     * through the search results. To retrieve the first page of results, set the
-     * pageToken to empty. The search response includes a
+     * Optional. The pageToken, similar to offset enables users of the API to
+     * paginate through the search results. To retrieve the first page of results,
+     * set the pageToken to empty. The search response includes a
      * [nextPageToken][google.cloud.talent.v4beta1.SearchProfilesResponse.next_page_token]
      * field that can be used to populate the pageToken field for the next page of
      * results. Using pageToken instead of offset increases the performance of the
@@ -2173,10 +2231,9 @@ public Builder clearPageToken() {
      *
      *
      * 
-     * Optional.
-     * The pageToken, similar to offset enables users of the API to paginate
-     * through the search results. To retrieve the first page of results, set the
-     * pageToken to empty. The search response includes a
+     * Optional. The pageToken, similar to offset enables users of the API to
+     * paginate through the search results. To retrieve the first page of results,
+     * set the pageToken to empty. The search response includes a
      * [nextPageToken][google.cloud.talent.v4beta1.SearchProfilesResponse.next_page_token]
      * field that can be used to populate the pageToken field for the next page of
      * results. Using pageToken instead of offset increases the performance of the
@@ -2201,9 +2258,8 @@ public Builder setPageTokenBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * An integer that specifies the current offset (that is, starting result) in
-     * search results. This field is only considered if
+     * Optional. An integer that specifies the current offset (that is, starting
+     * result) in search results. This field is only considered if
      * [page_token][google.cloud.talent.v4beta1.SearchProfilesRequest.page_token]
      * is unset.
      * The maximum allowed value is 5000. Otherwise an error is thrown.
@@ -2221,9 +2277,8 @@ public int getOffset() {
      *
      *
      * 
-     * Optional.
-     * An integer that specifies the current offset (that is, starting result) in
-     * search results. This field is only considered if
+     * Optional. An integer that specifies the current offset (that is, starting
+     * result) in search results. This field is only considered if
      * [page_token][google.cloud.talent.v4beta1.SearchProfilesRequest.page_token]
      * is unset.
      * The maximum allowed value is 5000. Otherwise an error is thrown.
@@ -2244,9 +2299,8 @@ public Builder setOffset(int value) {
      *
      *
      * 
-     * Optional.
-     * An integer that specifies the current offset (that is, starting result) in
-     * search results. This field is only considered if
+     * Optional. An integer that specifies the current offset (that is, starting
+     * result) in search results. This field is only considered if
      * [page_token][google.cloud.talent.v4beta1.SearchProfilesRequest.page_token]
      * is unset.
      * The maximum allowed value is 5000. Otherwise an error is thrown.
@@ -2269,8 +2323,7 @@ public Builder clearOffset() {
      *
      *
      * 
-     * Optional.
-     * This flag controls the spell-check feature. If `false`, the
+     * Optional. This flag controls the spell-check feature. If `false`, the
      * service attempts to correct a misspelled query.
      * For example, "enginee" is corrected to "engineer".
      * 
@@ -2284,8 +2337,7 @@ public boolean getDisableSpellCheck() { * * *
-     * Optional.
-     * This flag controls the spell-check feature. If `false`, the
+     * Optional. This flag controls the spell-check feature. If `false`, the
      * service attempts to correct a misspelled query.
      * For example, "enginee" is corrected to "engineer".
      * 
@@ -2302,8 +2354,7 @@ public Builder setDisableSpellCheck(boolean value) { * * *
-     * Optional.
-     * This flag controls the spell-check feature. If `false`, the
+     * Optional. This flag controls the spell-check feature. If `false`, the
      * service attempts to correct a misspelled query.
      * For example, "enginee" is corrected to "engineer".
      * 
@@ -2322,8 +2373,7 @@ public Builder clearDisableSpellCheck() { * * *
-     * Optional.
-     * The criteria that determines how search results are sorted.
+     * Optional. The criteria that determines how search results are sorted.
      * Defaults is "relevance desc" if no value is specified.
      * Supported options are:
      * * "relevance desc": By descending relevance, as determined by the API
@@ -2369,8 +2419,7 @@ public java.lang.String getOrderBy() {
      *
      *
      * 
-     * Optional.
-     * The criteria that determines how search results are sorted.
+     * Optional. The criteria that determines how search results are sorted.
      * Defaults is "relevance desc" if no value is specified.
      * Supported options are:
      * * "relevance desc": By descending relevance, as determined by the API
@@ -2416,8 +2465,7 @@ public com.google.protobuf.ByteString getOrderByBytes() {
      *
      *
      * 
-     * Optional.
-     * The criteria that determines how search results are sorted.
+     * Optional. The criteria that determines how search results are sorted.
      * Defaults is "relevance desc" if no value is specified.
      * Supported options are:
      * * "relevance desc": By descending relevance, as determined by the API
@@ -2461,8 +2509,7 @@ public Builder setOrderBy(java.lang.String value) {
      *
      *
      * 
-     * Optional.
-     * The criteria that determines how search results are sorted.
+     * Optional. The criteria that determines how search results are sorted.
      * Defaults is "relevance desc" if no value is specified.
      * Supported options are:
      * * "relevance desc": By descending relevance, as determined by the API
@@ -2503,8 +2550,7 @@ public Builder clearOrderBy() {
      *
      *
      * 
-     * Optional.
-     * The criteria that determines how search results are sorted.
+     * Optional. The criteria that determines how search results are sorted.
      * Defaults is "relevance desc" if no value is specified.
      * Supported options are:
      * * "relevance desc": By descending relevance, as determined by the API
@@ -2551,10 +2597,9 @@ public Builder setOrderByBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Optional.
-     * When sort by field is based on alphabetical order, sort values case
-     * sensitively (based on ASCII) when the value is set to true. Default value
-     * is case in-sensitive sort (false).
+     * Optional. When sort by field is based on alphabetical order, sort values
+     * case sensitively (based on ASCII) when the value is set to true. Default
+     * value is case in-sensitive sort (false).
      * 
* * bool case_sensitive_sort = 9; @@ -2566,10 +2611,9 @@ public boolean getCaseSensitiveSort() { * * *
-     * Optional.
-     * When sort by field is based on alphabetical order, sort values case
-     * sensitively (based on ASCII) when the value is set to true. Default value
-     * is case in-sensitive sort (false).
+     * Optional. When sort by field is based on alphabetical order, sort values
+     * case sensitively (based on ASCII) when the value is set to true. Default
+     * value is case in-sensitive sort (false).
      * 
* * bool case_sensitive_sort = 9; @@ -2584,10 +2628,9 @@ public Builder setCaseSensitiveSort(boolean value) { * * *
-     * Optional.
-     * When sort by field is based on alphabetical order, sort values case
-     * sensitively (based on ASCII) when the value is set to true. Default value
-     * is case in-sensitive sort (false).
+     * Optional. When sort by field is based on alphabetical order, sort values
+     * case sensitively (based on ASCII) when the value is set to true. Default
+     * value is case in-sensitive sort (false).
      * 
* * bool case_sensitive_sort = 9; @@ -2621,9 +2664,8 @@ private void ensureHistogramQueriesIsMutable() { * * *
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -2708,9 +2750,8 @@ private void ensureHistogramQueriesIsMutable() {
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -2794,9 +2835,8 @@ public int getHistogramQueriesCount() {
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -2880,9 +2920,8 @@ public com.google.cloud.talent.v4beta1.HistogramQuery getHistogramQueries(int in
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -2973,9 +3012,8 @@ public Builder setHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -3063,9 +3101,8 @@ public Builder setHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -3155,9 +3192,8 @@ public Builder addHistogramQueries(com.google.cloud.talent.v4beta1.HistogramQuer
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -3248,9 +3284,8 @@ public Builder addHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -3338,9 +3373,8 @@ public Builder addHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -3428,9 +3462,8 @@ public Builder addHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -3518,9 +3551,8 @@ public Builder addAllHistogramQueries(
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -3607,9 +3639,8 @@ public Builder clearHistogramQueries() {
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -3696,9 +3727,8 @@ public Builder removeHistogramQueries(int index) {
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -3779,9 +3809,8 @@ public com.google.cloud.talent.v4beta1.HistogramQuery.Builder getHistogramQuerie
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -3866,9 +3895,8 @@ public com.google.cloud.talent.v4beta1.HistogramQueryOrBuilder getHistogramQueri
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -3953,9 +3981,8 @@ public com.google.cloud.talent.v4beta1.HistogramQueryOrBuilder getHistogramQueri
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -4036,9 +4063,8 @@ public com.google.cloud.talent.v4beta1.HistogramQuery.Builder addHistogramQuerie
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -4120,9 +4146,8 @@ public com.google.cloud.talent.v4beta1.HistogramQuery.Builder addHistogramQuerie
      *
      *
      * 
-     * Optional.
-     * A list of expressions specifies histogram requests against matching
-     * profiles for
+     * Optional. A list of expressions specifies histogram requests against
+     * matching profiles for
      * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
      * The expression syntax looks like a function definition with optional
      * parameters.
@@ -4220,6 +4245,205 @@ public com.google.cloud.talent.v4beta1.HistogramQuery.Builder addHistogramQuerie
       return histogramQueriesBuilder_;
     }
 
+    private java.lang.Object resultSetId_ = "";
+    /**
+     *
+     *
+     * 
+     * Optional. An id that uniquely identifies the result set of a
+     * [SearchProfiles][] call.  The id should be retrieved from the
+     * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+     * message returned from a previous invocation of [SearchProfiles][].
+     * A result set is an ordered list of search results.
+     * If this field is not set, a new result set is computed based on the
+     * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query].
+     * A new
+     * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+     * is returned as a handle to access this result set.
+     * If this field is set, the service will ignore the resource and
+     * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query]
+     * values, and simply retrieve a page of results from the corresponding result
+     * set.  In this case, one and only one of [page_token] or [offset] must be
+     * set.
+     * A typical use case is to invoke
+     * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest]
+     * without this field, then use the resulting
+     * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+     * in
+     * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+     * to page through the results.
+     * 
+ * + * string result_set_id = 12; + */ + public java.lang.String getResultSetId() { + java.lang.Object ref = resultSetId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + resultSetId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * + * + *
+     * Optional. An id that uniquely identifies the result set of a
+     * [SearchProfiles][] call.  The id should be retrieved from the
+     * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+     * message returned from a previous invocation of [SearchProfiles][].
+     * A result set is an ordered list of search results.
+     * If this field is not set, a new result set is computed based on the
+     * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query].
+     * A new
+     * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+     * is returned as a handle to access this result set.
+     * If this field is set, the service will ignore the resource and
+     * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query]
+     * values, and simply retrieve a page of results from the corresponding result
+     * set.  In this case, one and only one of [page_token] or [offset] must be
+     * set.
+     * A typical use case is to invoke
+     * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest]
+     * without this field, then use the resulting
+     * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+     * in
+     * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+     * to page through the results.
+     * 
+ * + * string result_set_id = 12; + */ + public com.google.protobuf.ByteString getResultSetIdBytes() { + java.lang.Object ref = resultSetId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + resultSetId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * + * + *
+     * Optional. An id that uniquely identifies the result set of a
+     * [SearchProfiles][] call.  The id should be retrieved from the
+     * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+     * message returned from a previous invocation of [SearchProfiles][].
+     * A result set is an ordered list of search results.
+     * If this field is not set, a new result set is computed based on the
+     * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query].
+     * A new
+     * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+     * is returned as a handle to access this result set.
+     * If this field is set, the service will ignore the resource and
+     * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query]
+     * values, and simply retrieve a page of results from the corresponding result
+     * set.  In this case, one and only one of [page_token] or [offset] must be
+     * set.
+     * A typical use case is to invoke
+     * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest]
+     * without this field, then use the resulting
+     * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+     * in
+     * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+     * to page through the results.
+     * 
+ * + * string result_set_id = 12; + */ + public Builder setResultSetId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + resultSetId_ = value; + onChanged(); + return this; + } + /** + * + * + *
+     * Optional. An id that uniquely identifies the result set of a
+     * [SearchProfiles][] call.  The id should be retrieved from the
+     * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+     * message returned from a previous invocation of [SearchProfiles][].
+     * A result set is an ordered list of search results.
+     * If this field is not set, a new result set is computed based on the
+     * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query].
+     * A new
+     * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+     * is returned as a handle to access this result set.
+     * If this field is set, the service will ignore the resource and
+     * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query]
+     * values, and simply retrieve a page of results from the corresponding result
+     * set.  In this case, one and only one of [page_token] or [offset] must be
+     * set.
+     * A typical use case is to invoke
+     * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest]
+     * without this field, then use the resulting
+     * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+     * in
+     * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+     * to page through the results.
+     * 
+ * + * string result_set_id = 12; + */ + public Builder clearResultSetId() { + + resultSetId_ = getDefaultInstance().getResultSetId(); + onChanged(); + return this; + } + /** + * + * + *
+     * Optional. An id that uniquely identifies the result set of a
+     * [SearchProfiles][] call.  The id should be retrieved from the
+     * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+     * message returned from a previous invocation of [SearchProfiles][].
+     * A result set is an ordered list of search results.
+     * If this field is not set, a new result set is computed based on the
+     * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query].
+     * A new
+     * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+     * is returned as a handle to access this result set.
+     * If this field is set, the service will ignore the resource and
+     * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query]
+     * values, and simply retrieve a page of results from the corresponding result
+     * set.  In this case, one and only one of [page_token] or [offset] must be
+     * set.
+     * A typical use case is to invoke
+     * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest]
+     * without this field, then use the resulting
+     * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+     * in
+     * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+     * to page through the results.
+     * 
+ * + * string result_set_id = 12; + */ + public Builder setResultSetIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + resultSetId_ = value; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesRequestOrBuilder.java index de2f110db0d9..c53c7c9a4b8f 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Required.
-   * The resource name of the tenant to search within.
+   * Required. The resource name of the tenant to search within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -25,8 +24,7 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Required.
-   * The resource name of the tenant to search within.
+   * Required. The resource name of the tenant to search within.
    * The format is "projects/{project_id}/tenants/{tenant_id}", for example,
    * "projects/api-test-project/tenants/foo".
    * 
@@ -39,10 +37,9 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Required.
-   * The meta information collected about the profile search user. This is used
-   * to improve the search quality of the service. These values are provided by
-   * users, and must be precise and consistent.
+   * Required. The meta information collected about the profile search user.
+   * This is used to improve the search quality of the service. These values are
+   * provided by users, and must be precise and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -52,10 +49,9 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Required.
-   * The meta information collected about the profile search user. This is used
-   * to improve the search quality of the service. These values are provided by
-   * users, and must be precise and consistent.
+   * Required. The meta information collected about the profile search user.
+   * This is used to improve the search quality of the service. These values are
+   * provided by users, and must be precise and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -65,10 +61,9 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Required.
-   * The meta information collected about the profile search user. This is used
-   * to improve the search quality of the service. These values are provided by
-   * users, and must be precise and consistent.
+   * Required. The meta information collected about the profile search user.
+   * This is used to improve the search quality of the service. These values are
+   * provided by users, and must be precise and consistent.
    * 
* * .google.cloud.talent.v4beta1.RequestMetadata request_metadata = 2; @@ -79,8 +74,7 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Optional.
-   * Search query to execute. See
+   * Optional. Search query to execute. See
    * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
    * 
* @@ -91,8 +85,7 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Optional.
-   * Search query to execute. See
+   * Optional. Search query to execute. See
    * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
    * 
* @@ -103,8 +96,7 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Optional.
-   * Search query to execute. See
+   * Optional. Search query to execute. See
    * [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details.
    * 
* @@ -116,8 +108,7 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Optional.
-   * A limit on the number of profiles returned in the search results.
+   * Optional. A limit on the number of profiles returned in the search results.
    * A value above the default value 10 can increase search response time.
    * The maximum value allowed is 100. Otherwise an error is thrown.
    * 
@@ -130,10 +121,9 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Optional.
-   * The pageToken, similar to offset enables users of the API to paginate
-   * through the search results. To retrieve the first page of results, set the
-   * pageToken to empty. The search response includes a
+   * Optional. The pageToken, similar to offset enables users of the API to
+   * paginate through the search results. To retrieve the first page of results,
+   * set the pageToken to empty. The search response includes a
    * [nextPageToken][google.cloud.talent.v4beta1.SearchProfilesResponse.next_page_token]
    * field that can be used to populate the pageToken field for the next page of
    * results. Using pageToken instead of offset increases the performance of the
@@ -147,10 +137,9 @@ public interface SearchProfilesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The pageToken, similar to offset enables users of the API to paginate
-   * through the search results. To retrieve the first page of results, set the
-   * pageToken to empty. The search response includes a
+   * Optional. The pageToken, similar to offset enables users of the API to
+   * paginate through the search results. To retrieve the first page of results,
+   * set the pageToken to empty. The search response includes a
    * [nextPageToken][google.cloud.talent.v4beta1.SearchProfilesResponse.next_page_token]
    * field that can be used to populate the pageToken field for the next page of
    * results. Using pageToken instead of offset increases the performance of the
@@ -165,9 +154,8 @@ public interface SearchProfilesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * An integer that specifies the current offset (that is, starting result) in
-   * search results. This field is only considered if
+   * Optional. An integer that specifies the current offset (that is, starting
+   * result) in search results. This field is only considered if
    * [page_token][google.cloud.talent.v4beta1.SearchProfilesRequest.page_token]
    * is unset.
    * The maximum allowed value is 5000. Otherwise an error is thrown.
@@ -184,8 +172,7 @@ public interface SearchProfilesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * This flag controls the spell-check feature. If `false`, the
+   * Optional. This flag controls the spell-check feature. If `false`, the
    * service attempts to correct a misspelled query.
    * For example, "enginee" is corrected to "engineer".
    * 
@@ -198,8 +185,7 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Optional.
-   * The criteria that determines how search results are sorted.
+   * Optional. The criteria that determines how search results are sorted.
    * Defaults is "relevance desc" if no value is specified.
    * Supported options are:
    * * "relevance desc": By descending relevance, as determined by the API
@@ -235,8 +221,7 @@ public interface SearchProfilesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * The criteria that determines how search results are sorted.
+   * Optional. The criteria that determines how search results are sorted.
    * Defaults is "relevance desc" if no value is specified.
    * Supported options are:
    * * "relevance desc": By descending relevance, as determined by the API
@@ -273,10 +258,9 @@ public interface SearchProfilesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * When sort by field is based on alphabetical order, sort values case
-   * sensitively (based on ASCII) when the value is set to true. Default value
-   * is case in-sensitive sort (false).
+   * Optional. When sort by field is based on alphabetical order, sort values
+   * case sensitively (based on ASCII) when the value is set to true. Default
+   * value is case in-sensitive sort (false).
    * 
* * bool case_sensitive_sort = 9; @@ -287,9 +271,8 @@ public interface SearchProfilesRequestOrBuilder * * *
-   * Optional.
-   * A list of expressions specifies histogram requests against matching
-   * profiles for
+   * Optional. A list of expressions specifies histogram requests against
+   * matching profiles for
    * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
    * The expression syntax looks like a function definition with optional
    * parameters.
@@ -367,9 +350,8 @@ public interface SearchProfilesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * A list of expressions specifies histogram requests against matching
-   * profiles for
+   * Optional. A list of expressions specifies histogram requests against
+   * matching profiles for
    * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
    * The expression syntax looks like a function definition with optional
    * parameters.
@@ -447,9 +429,8 @@ public interface SearchProfilesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * A list of expressions specifies histogram requests against matching
-   * profiles for
+   * Optional. A list of expressions specifies histogram requests against
+   * matching profiles for
    * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
    * The expression syntax looks like a function definition with optional
    * parameters.
@@ -527,9 +508,8 @@ public interface SearchProfilesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * A list of expressions specifies histogram requests against matching
-   * profiles for
+   * Optional. A list of expressions specifies histogram requests against
+   * matching profiles for
    * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
    * The expression syntax looks like a function definition with optional
    * parameters.
@@ -608,9 +588,8 @@ public interface SearchProfilesRequestOrBuilder
    *
    *
    * 
-   * Optional.
-   * A list of expressions specifies histogram requests against matching
-   * profiles for
+   * Optional. A list of expressions specifies histogram requests against
+   * matching profiles for
    * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].
    * The expression syntax looks like a function definition with optional
    * parameters.
@@ -684,4 +663,67 @@ public interface SearchProfilesRequestOrBuilder
    * repeated .google.cloud.talent.v4beta1.HistogramQuery histogram_queries = 10;
    */
   com.google.cloud.talent.v4beta1.HistogramQueryOrBuilder getHistogramQueriesOrBuilder(int index);
+
+  /**
+   *
+   *
+   * 
+   * Optional. An id that uniquely identifies the result set of a
+   * [SearchProfiles][] call.  The id should be retrieved from the
+   * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+   * message returned from a previous invocation of [SearchProfiles][].
+   * A result set is an ordered list of search results.
+   * If this field is not set, a new result set is computed based on the
+   * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query].
+   * A new
+   * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+   * is returned as a handle to access this result set.
+   * If this field is set, the service will ignore the resource and
+   * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query]
+   * values, and simply retrieve a page of results from the corresponding result
+   * set.  In this case, one and only one of [page_token] or [offset] must be
+   * set.
+   * A typical use case is to invoke
+   * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest]
+   * without this field, then use the resulting
+   * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+   * in
+   * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+   * to page through the results.
+   * 
+ * + * string result_set_id = 12; + */ + java.lang.String getResultSetId(); + /** + * + * + *
+   * Optional. An id that uniquely identifies the result set of a
+   * [SearchProfiles][] call.  The id should be retrieved from the
+   * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+   * message returned from a previous invocation of [SearchProfiles][].
+   * A result set is an ordered list of search results.
+   * If this field is not set, a new result set is computed based on the
+   * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query].
+   * A new
+   * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+   * is returned as a handle to access this result set.
+   * If this field is set, the service will ignore the resource and
+   * [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query]
+   * values, and simply retrieve a page of results from the corresponding result
+   * set.  In this case, one and only one of [page_token] or [offset] must be
+   * set.
+   * A typical use case is to invoke
+   * [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest]
+   * without this field, then use the resulting
+   * [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id]
+   * in
+   * [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse]
+   * to page through the results.
+   * 
+ * + * string result_set_id = 12; + */ + com.google.protobuf.ByteString getResultSetIdBytes(); } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesResponse.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesResponse.java index d3b2cb3aa92f..d6da4dc245d1 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesResponse.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesResponse.java @@ -26,6 +26,7 @@ private SearchProfilesResponse() { nextPageToken_ = ""; histogramQueryResults_ = java.util.Collections.emptyList(); summarizedProfiles_ = java.util.Collections.emptyList(); + resultSetId_ = ""; } @java.lang.Override @@ -123,6 +124,13 @@ private SearchProfilesResponse( extensionRegistry)); break; } + case 58: + { + java.lang.String s = input.readStringRequireUtf8(); + + resultSetId_ = s; + break; + } default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { @@ -458,6 +466,53 @@ public com.google.cloud.talent.v4beta1.SummarizedProfileOrBuilder getSummarizedP return summarizedProfiles_.get(index); } + public static final int RESULT_SET_ID_FIELD_NUMBER = 7; + private volatile java.lang.Object resultSetId_; + /** + * + * + *
+   * An id that uniquely identifies the result set of a
+   * [SearchProfiles][google.cloud.talent.v4beta1.ProfileService.SearchProfiles]
+   * call for consistent results.
+   * 
+ * + * string result_set_id = 7; + */ + public java.lang.String getResultSetId() { + java.lang.Object ref = resultSetId_; + 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(); + resultSetId_ = s; + return s; + } + } + /** + * + * + *
+   * An id that uniquely identifies the result set of a
+   * [SearchProfiles][google.cloud.talent.v4beta1.ProfileService.SearchProfiles]
+   * call for consistent results.
+   * 
+ * + * string result_set_id = 7; + */ + public com.google.protobuf.ByteString getResultSetIdBytes() { + java.lang.Object ref = resultSetId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + resultSetId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -490,6 +545,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io for (int i = 0; i < summarizedProfiles_.size(); i++) { output.writeMessage(6, summarizedProfiles_.get(i)); } + if (!getResultSetIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 7, resultSetId_); + } unknownFields.writeTo(output); } @@ -520,6 +578,9 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, summarizedProfiles_.get(i)); } + if (!getResultSetIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, resultSetId_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -548,6 +609,7 @@ public boolean equals(final java.lang.Object obj) { if (!getNextPageToken().equals(other.getNextPageToken())) return false; if (!getHistogramQueryResultsList().equals(other.getHistogramQueryResultsList())) return false; if (!getSummarizedProfilesList().equals(other.getSummarizedProfilesList())) return false; + if (!getResultSetId().equals(other.getResultSetId())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -579,6 +641,8 @@ public int hashCode() { hash = (37 * hash) + SUMMARIZED_PROFILES_FIELD_NUMBER; hash = (53 * hash) + getSummarizedProfilesList().hashCode(); } + hash = (37 * hash) + RESULT_SET_ID_FIELD_NUMBER; + hash = (53 * hash) + getResultSetId().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -756,6 +820,8 @@ public Builder clear() { } else { summarizedProfilesBuilder_.clear(); } + resultSetId_ = ""; + return this; } @@ -815,6 +881,7 @@ public com.google.cloud.talent.v4beta1.SearchProfilesResponse buildPartial() { } else { result.summarizedProfiles_ = summarizedProfilesBuilder_.build(); } + result.resultSetId_ = resultSetId_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -933,6 +1000,10 @@ public Builder mergeFrom(com.google.cloud.talent.v4beta1.SearchProfilesResponse } } } + if (!other.getResultSetId().isEmpty()) { + resultSetId_ = other.resultSetId_; + onChanged(); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -2267,6 +2338,110 @@ public com.google.cloud.talent.v4beta1.SummarizedProfile.Builder addSummarizedPr return summarizedProfilesBuilder_; } + private java.lang.Object resultSetId_ = ""; + /** + * + * + *
+     * An id that uniquely identifies the result set of a
+     * [SearchProfiles][google.cloud.talent.v4beta1.ProfileService.SearchProfiles]
+     * call for consistent results.
+     * 
+ * + * string result_set_id = 7; + */ + public java.lang.String getResultSetId() { + java.lang.Object ref = resultSetId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + resultSetId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * + * + *
+     * An id that uniquely identifies the result set of a
+     * [SearchProfiles][google.cloud.talent.v4beta1.ProfileService.SearchProfiles]
+     * call for consistent results.
+     * 
+ * + * string result_set_id = 7; + */ + public com.google.protobuf.ByteString getResultSetIdBytes() { + java.lang.Object ref = resultSetId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + resultSetId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * + * + *
+     * An id that uniquely identifies the result set of a
+     * [SearchProfiles][google.cloud.talent.v4beta1.ProfileService.SearchProfiles]
+     * call for consistent results.
+     * 
+ * + * string result_set_id = 7; + */ + public Builder setResultSetId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + resultSetId_ = value; + onChanged(); + return this; + } + /** + * + * + *
+     * An id that uniquely identifies the result set of a
+     * [SearchProfiles][google.cloud.talent.v4beta1.ProfileService.SearchProfiles]
+     * call for consistent results.
+     * 
+ * + * string result_set_id = 7; + */ + public Builder clearResultSetId() { + + resultSetId_ = getDefaultInstance().getResultSetId(); + onChanged(); + return this; + } + /** + * + * + *
+     * An id that uniquely identifies the result set of a
+     * [SearchProfiles][google.cloud.talent.v4beta1.ProfileService.SearchProfiles]
+     * call for consistent results.
+     * 
+ * + * string result_set_id = 7; + */ + public Builder setResultSetIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + resultSetId_ = value; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesResponseOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesResponseOrBuilder.java index 1997cd946d11..81fe2c1ae883 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesResponseOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SearchProfilesResponseOrBuilder.java @@ -229,4 +229,29 @@ com.google.cloud.talent.v4beta1.HistogramQueryResultOrBuilder getHistogramQueryR */ com.google.cloud.talent.v4beta1.SummarizedProfileOrBuilder getSummarizedProfilesOrBuilder( int index); + + /** + * + * + *
+   * An id that uniquely identifies the result set of a
+   * [SearchProfiles][google.cloud.talent.v4beta1.ProfileService.SearchProfiles]
+   * call for consistent results.
+   * 
+ * + * string result_set_id = 7; + */ + java.lang.String getResultSetId(); + /** + * + * + *
+   * An id that uniquely identifies the result set of a
+   * [SearchProfiles][google.cloud.talent.v4beta1.ProfileService.SearchProfiles]
+   * call for consistent results.
+   * 
+ * + * string result_set_id = 7; + */ + com.google.protobuf.ByteString getResultSetIdBytes(); } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Skill.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Skill.java index df33c9230f7a..6b5e87066d93 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Skill.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Skill.java @@ -135,8 +135,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * Skill display name.
+   * Optional. Skill display name.
    * For example, "Java", "Python".
    * Number of characters allowed is 100.
    * 
@@ -158,8 +157,7 @@ public java.lang.String getDisplayName() { * * *
-   * Optional.
-   * Skill display name.
+   * Optional. Skill display name.
    * For example, "Java", "Python".
    * Number of characters allowed is 100.
    * 
@@ -184,8 +182,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-   * Optional.
-   * The last time this skill was used.
+   * Optional. The last time this skill was used.
    * 
* * .google.type.Date last_used_date = 2; @@ -197,8 +194,7 @@ public boolean hasLastUsedDate() { * * *
-   * Optional.
-   * The last time this skill was used.
+   * Optional. The last time this skill was used.
    * 
* * .google.type.Date last_used_date = 2; @@ -210,8 +206,7 @@ public com.google.type.Date getLastUsedDate() { * * *
-   * Optional.
-   * The last time this skill was used.
+   * Optional. The last time this skill was used.
    * 
* * .google.type.Date last_used_date = 2; @@ -226,9 +221,8 @@ public com.google.type.DateOrBuilder getLastUsedDateOrBuilder() { * * *
-   * Optional.
-   * Skill proficiency level which indicates how proficient the candidate is at
-   * this skill.
+   * Optional. Skill proficiency level which indicates how proficient the
+   * candidate is at this skill.
    * 
* * .google.cloud.talent.v4beta1.SkillProficiencyLevel level = 3; @@ -240,9 +234,8 @@ public int getLevelValue() { * * *
-   * Optional.
-   * Skill proficiency level which indicates how proficient the candidate is at
-   * this skill.
+   * Optional. Skill proficiency level which indicates how proficient the
+   * candidate is at this skill.
    * 
* * .google.cloud.talent.v4beta1.SkillProficiencyLevel level = 3; @@ -262,8 +255,7 @@ public com.google.cloud.talent.v4beta1.SkillProficiencyLevel getLevel() { * * *
-   * Optional.
-   * A paragraph describes context of this skill.
+   * Optional. A paragraph describes context of this skill.
    * Number of characters allowed is 100,000.
    * 
* @@ -284,8 +276,7 @@ public java.lang.String getContext() { * * *
-   * Optional.
-   * A paragraph describes context of this skill.
+   * Optional. A paragraph describes context of this skill.
    * Number of characters allowed is 100,000.
    * 
* @@ -752,8 +743,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * Skill display name.
+     * Optional. Skill display name.
      * For example, "Java", "Python".
      * Number of characters allowed is 100.
      * 
@@ -775,8 +765,7 @@ public java.lang.String getDisplayName() { * * *
-     * Optional.
-     * Skill display name.
+     * Optional. Skill display name.
      * For example, "Java", "Python".
      * Number of characters allowed is 100.
      * 
@@ -798,8 +787,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-     * Optional.
-     * Skill display name.
+     * Optional. Skill display name.
      * For example, "Java", "Python".
      * Number of characters allowed is 100.
      * 
@@ -819,8 +807,7 @@ public Builder setDisplayName(java.lang.String value) { * * *
-     * Optional.
-     * Skill display name.
+     * Optional. Skill display name.
      * For example, "Java", "Python".
      * Number of characters allowed is 100.
      * 
@@ -837,8 +824,7 @@ public Builder clearDisplayName() { * * *
-     * Optional.
-     * Skill display name.
+     * Optional. Skill display name.
      * For example, "Java", "Python".
      * Number of characters allowed is 100.
      * 
@@ -864,8 +850,7 @@ public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * The last time this skill was used.
+     * Optional. The last time this skill was used.
      * 
* * .google.type.Date last_used_date = 2; @@ -877,8 +862,7 @@ public boolean hasLastUsedDate() { * * *
-     * Optional.
-     * The last time this skill was used.
+     * Optional. The last time this skill was used.
      * 
* * .google.type.Date last_used_date = 2; @@ -894,8 +878,7 @@ public com.google.type.Date getLastUsedDate() { * * *
-     * Optional.
-     * The last time this skill was used.
+     * Optional. The last time this skill was used.
      * 
* * .google.type.Date last_used_date = 2; @@ -917,8 +900,7 @@ public Builder setLastUsedDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The last time this skill was used.
+     * Optional. The last time this skill was used.
      * 
* * .google.type.Date last_used_date = 2; @@ -937,8 +919,7 @@ public Builder setLastUsedDate(com.google.type.Date.Builder builderForValue) { * * *
-     * Optional.
-     * The last time this skill was used.
+     * Optional. The last time this skill was used.
      * 
* * .google.type.Date last_used_date = 2; @@ -962,8 +943,7 @@ public Builder mergeLastUsedDate(com.google.type.Date value) { * * *
-     * Optional.
-     * The last time this skill was used.
+     * Optional. The last time this skill was used.
      * 
* * .google.type.Date last_used_date = 2; @@ -983,8 +963,7 @@ public Builder clearLastUsedDate() { * * *
-     * Optional.
-     * The last time this skill was used.
+     * Optional. The last time this skill was used.
      * 
* * .google.type.Date last_used_date = 2; @@ -998,8 +977,7 @@ public com.google.type.Date.Builder getLastUsedDateBuilder() { * * *
-     * Optional.
-     * The last time this skill was used.
+     * Optional. The last time this skill was used.
      * 
* * .google.type.Date last_used_date = 2; @@ -1015,8 +993,7 @@ public com.google.type.DateOrBuilder getLastUsedDateOrBuilder() { * * *
-     * Optional.
-     * The last time this skill was used.
+     * Optional. The last time this skill was used.
      * 
* * .google.type.Date last_used_date = 2; @@ -1039,9 +1016,8 @@ public com.google.type.DateOrBuilder getLastUsedDateOrBuilder() { * * *
-     * Optional.
-     * Skill proficiency level which indicates how proficient the candidate is at
-     * this skill.
+     * Optional. Skill proficiency level which indicates how proficient the
+     * candidate is at this skill.
      * 
* * .google.cloud.talent.v4beta1.SkillProficiencyLevel level = 3; @@ -1053,9 +1029,8 @@ public int getLevelValue() { * * *
-     * Optional.
-     * Skill proficiency level which indicates how proficient the candidate is at
-     * this skill.
+     * Optional. Skill proficiency level which indicates how proficient the
+     * candidate is at this skill.
      * 
* * .google.cloud.talent.v4beta1.SkillProficiencyLevel level = 3; @@ -1069,9 +1044,8 @@ public Builder setLevelValue(int value) { * * *
-     * Optional.
-     * Skill proficiency level which indicates how proficient the candidate is at
-     * this skill.
+     * Optional. Skill proficiency level which indicates how proficient the
+     * candidate is at this skill.
      * 
* * .google.cloud.talent.v4beta1.SkillProficiencyLevel level = 3; @@ -1088,9 +1062,8 @@ public com.google.cloud.talent.v4beta1.SkillProficiencyLevel getLevel() { * * *
-     * Optional.
-     * Skill proficiency level which indicates how proficient the candidate is at
-     * this skill.
+     * Optional. Skill proficiency level which indicates how proficient the
+     * candidate is at this skill.
      * 
* * .google.cloud.talent.v4beta1.SkillProficiencyLevel level = 3; @@ -1108,9 +1081,8 @@ public Builder setLevel(com.google.cloud.talent.v4beta1.SkillProficiencyLevel va * * *
-     * Optional.
-     * Skill proficiency level which indicates how proficient the candidate is at
-     * this skill.
+     * Optional. Skill proficiency level which indicates how proficient the
+     * candidate is at this skill.
      * 
* * .google.cloud.talent.v4beta1.SkillProficiencyLevel level = 3; @@ -1127,8 +1099,7 @@ public Builder clearLevel() { * * *
-     * Optional.
-     * A paragraph describes context of this skill.
+     * Optional. A paragraph describes context of this skill.
      * Number of characters allowed is 100,000.
      * 
* @@ -1149,8 +1120,7 @@ public java.lang.String getContext() { * * *
-     * Optional.
-     * A paragraph describes context of this skill.
+     * Optional. A paragraph describes context of this skill.
      * Number of characters allowed is 100,000.
      * 
* @@ -1171,8 +1141,7 @@ public com.google.protobuf.ByteString getContextBytes() { * * *
-     * Optional.
-     * A paragraph describes context of this skill.
+     * Optional. A paragraph describes context of this skill.
      * Number of characters allowed is 100,000.
      * 
* @@ -1191,8 +1160,7 @@ public Builder setContext(java.lang.String value) { * * *
-     * Optional.
-     * A paragraph describes context of this skill.
+     * Optional. A paragraph describes context of this skill.
      * Number of characters allowed is 100,000.
      * 
* @@ -1208,8 +1176,7 @@ public Builder clearContext() { * * *
-     * Optional.
-     * A paragraph describes context of this skill.
+     * Optional. A paragraph describes context of this skill.
      * Number of characters allowed is 100,000.
      * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillFilter.java index 7d8eddc10e6d..f8b86ff2a56c 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillFilter.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillFilter.java @@ -103,8 +103,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The skill name. For example, "java", "j2ee", and so on.
+   * Required. The skill name. For example, "java", "j2ee", and so on.
    * 
* * string skill = 1; @@ -124,8 +123,7 @@ public java.lang.String getSkill() { * * *
-   * Required.
-   * The skill name. For example, "java", "j2ee", and so on.
+   * Required. The skill name. For example, "java", "j2ee", and so on.
    * 
* * string skill = 1; @@ -148,9 +146,8 @@ public com.google.protobuf.ByteString getSkillBytes() { * * *
-   * Optional.
-   * Whether to apply negation to the filter so profiles matching the filter
-   * are excluded.
+   * Optional. Whether to apply negation to the filter so profiles matching the
+   * filter are excluded.
    * 
* * bool negated = 2; @@ -496,8 +493,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The skill name. For example, "java", "j2ee", and so on.
+     * Required. The skill name. For example, "java", "j2ee", and so on.
      * 
* * string skill = 1; @@ -517,8 +513,7 @@ public java.lang.String getSkill() { * * *
-     * Required.
-     * The skill name. For example, "java", "j2ee", and so on.
+     * Required. The skill name. For example, "java", "j2ee", and so on.
      * 
* * string skill = 1; @@ -538,8 +533,7 @@ public com.google.protobuf.ByteString getSkillBytes() { * * *
-     * Required.
-     * The skill name. For example, "java", "j2ee", and so on.
+     * Required. The skill name. For example, "java", "j2ee", and so on.
      * 
* * string skill = 1; @@ -557,8 +551,7 @@ public Builder setSkill(java.lang.String value) { * * *
-     * Required.
-     * The skill name. For example, "java", "j2ee", and so on.
+     * Required. The skill name. For example, "java", "j2ee", and so on.
      * 
* * string skill = 1; @@ -573,8 +566,7 @@ public Builder clearSkill() { * * *
-     * Required.
-     * The skill name. For example, "java", "j2ee", and so on.
+     * Required. The skill name. For example, "java", "j2ee", and so on.
      * 
* * string skill = 1; @@ -595,9 +587,8 @@ public Builder setSkillBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * are excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter are excluded.
      * 
* * bool negated = 2; @@ -609,9 +600,8 @@ public boolean getNegated() { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * are excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter are excluded.
      * 
* * bool negated = 2; @@ -626,9 +616,8 @@ public Builder setNegated(boolean value) { * * *
-     * Optional.
-     * Whether to apply negation to the filter so profiles matching the filter
-     * are excluded.
+     * Optional. Whether to apply negation to the filter so profiles matching the
+     * filter are excluded.
      * 
* * bool negated = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillFilterOrBuilder.java index 6eaa08f6f47a..5c5432ac295f 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillFilterOrBuilder.java @@ -12,8 +12,7 @@ public interface SkillFilterOrBuilder * * *
-   * Required.
-   * The skill name. For example, "java", "j2ee", and so on.
+   * Required. The skill name. For example, "java", "j2ee", and so on.
    * 
* * string skill = 1; @@ -23,8 +22,7 @@ public interface SkillFilterOrBuilder * * *
-   * Required.
-   * The skill name. For example, "java", "j2ee", and so on.
+   * Required. The skill name. For example, "java", "j2ee", and so on.
    * 
* * string skill = 1; @@ -35,9 +33,8 @@ public interface SkillFilterOrBuilder * * *
-   * Optional.
-   * Whether to apply negation to the filter so profiles matching the filter
-   * are excluded.
+   * Optional. Whether to apply negation to the filter so profiles matching the
+   * filter are excluded.
    * 
* * bool negated = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillOrBuilder.java index ac9847dc7c97..360eaadf0f3a 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/SkillOrBuilder.java @@ -12,8 +12,7 @@ public interface SkillOrBuilder * * *
-   * Optional.
-   * Skill display name.
+   * Optional. Skill display name.
    * For example, "Java", "Python".
    * Number of characters allowed is 100.
    * 
@@ -25,8 +24,7 @@ public interface SkillOrBuilder * * *
-   * Optional.
-   * Skill display name.
+   * Optional. Skill display name.
    * For example, "Java", "Python".
    * Number of characters allowed is 100.
    * 
@@ -39,8 +37,7 @@ public interface SkillOrBuilder * * *
-   * Optional.
-   * The last time this skill was used.
+   * Optional. The last time this skill was used.
    * 
* * .google.type.Date last_used_date = 2; @@ -50,8 +47,7 @@ public interface SkillOrBuilder * * *
-   * Optional.
-   * The last time this skill was used.
+   * Optional. The last time this skill was used.
    * 
* * .google.type.Date last_used_date = 2; @@ -61,8 +57,7 @@ public interface SkillOrBuilder * * *
-   * Optional.
-   * The last time this skill was used.
+   * Optional. The last time this skill was used.
    * 
* * .google.type.Date last_used_date = 2; @@ -73,9 +68,8 @@ public interface SkillOrBuilder * * *
-   * Optional.
-   * Skill proficiency level which indicates how proficient the candidate is at
-   * this skill.
+   * Optional. Skill proficiency level which indicates how proficient the
+   * candidate is at this skill.
    * 
* * .google.cloud.talent.v4beta1.SkillProficiencyLevel level = 3; @@ -85,9 +79,8 @@ public interface SkillOrBuilder * * *
-   * Optional.
-   * Skill proficiency level which indicates how proficient the candidate is at
-   * this skill.
+   * Optional. Skill proficiency level which indicates how proficient the
+   * candidate is at this skill.
    * 
* * .google.cloud.talent.v4beta1.SkillProficiencyLevel level = 3; @@ -98,8 +91,7 @@ public interface SkillOrBuilder * * *
-   * Optional.
-   * A paragraph describes context of this skill.
+   * Optional. A paragraph describes context of this skill.
    * Number of characters allowed is 100,000.
    * 
* @@ -110,8 +102,7 @@ public interface SkillOrBuilder * * *
-   * Optional.
-   * A paragraph describes context of this skill.
+   * Optional. A paragraph describes context of this skill.
    * Number of characters allowed is 100,000.
    * 
* diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Tenant.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Tenant.java index dd176c4c347d..d48c71e4b85c 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Tenant.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/Tenant.java @@ -333,8 +333,8 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-   * Required.
-   * Client side tenant identifier, used to uniquely identify the tenant.
+   * Required. Client side tenant identifier, used to uniquely identify the
+   * tenant.
    * The maximum number of allowed characters is 255.
    * 
* @@ -355,8 +355,8 @@ public java.lang.String getExternalId() { * * *
-   * Required.
-   * Client side tenant identifier, used to uniquely identify the tenant.
+   * Required. Client side tenant identifier, used to uniquely identify the
+   * tenant.
    * The maximum number of allowed characters is 255.
    * 
* @@ -380,10 +380,11 @@ public com.google.protobuf.ByteString getExternalIdBytes() { * * *
-   * Optional.
-   * Indicates whether data owned by this tenant may be used to provide product
-   * improvements across other tenants.
-   * Defaults behavior is [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED] if it's unset.
+   * Optional. Indicates whether data owned by this tenant may be used to
+   * provide product improvements across other tenants.
+   * Defaults behavior is
+   * [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED]
+   * if it's unset.
    * 
* * .google.cloud.talent.v4beta1.Tenant.DataUsageType usage_type = 3; @@ -395,10 +396,11 @@ public int getUsageTypeValue() { * * *
-   * Optional.
-   * Indicates whether data owned by this tenant may be used to provide product
-   * improvements across other tenants.
-   * Defaults behavior is [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED] if it's unset.
+   * Optional. Indicates whether data owned by this tenant may be used to
+   * provide product improvements across other tenants.
+   * Defaults behavior is
+   * [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED]
+   * if it's unset.
    * 
* * .google.cloud.talent.v4beta1.Tenant.DataUsageType usage_type = 3; @@ -418,10 +420,10 @@ public com.google.cloud.talent.v4beta1.Tenant.DataUsageType getUsageType() { * * *
-   * Optional.
-   * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-   * corresponding `string_values` are used in keyword searches. Profiles with
-   * `string_values` under these specified field keys are returned if any
+   * Optional. A list of keys of filterable
+   * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+   * whose corresponding `string_values` are used in keyword searches. Profiles
+   * with `string_values` under these specified field keys are returned if any
    * of the values match the search keyword. Custom field values with
    * parenthesis, brackets and special symbols are not searchable as-is,
    * and must be surrounded by quotes.
@@ -436,10 +438,10 @@ public com.google.protobuf.ProtocolStringList getKeywordSearchableProfileCustomA
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-   * corresponding `string_values` are used in keyword searches. Profiles with
-   * `string_values` under these specified field keys are returned if any
+   * Optional. A list of keys of filterable
+   * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+   * whose corresponding `string_values` are used in keyword searches. Profiles
+   * with `string_values` under these specified field keys are returned if any
    * of the values match the search keyword. Custom field values with
    * parenthesis, brackets and special symbols are not searchable as-is,
    * and must be surrounded by quotes.
@@ -454,10 +456,10 @@ public int getKeywordSearchableProfileCustomAttributesCount() {
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-   * corresponding `string_values` are used in keyword searches. Profiles with
-   * `string_values` under these specified field keys are returned if any
+   * Optional. A list of keys of filterable
+   * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+   * whose corresponding `string_values` are used in keyword searches. Profiles
+   * with `string_values` under these specified field keys are returned if any
    * of the values match the search keyword. Custom field values with
    * parenthesis, brackets and special symbols are not searchable as-is,
    * and must be surrounded by quotes.
@@ -472,10 +474,10 @@ public java.lang.String getKeywordSearchableProfileCustomAttributes(int index) {
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-   * corresponding `string_values` are used in keyword searches. Profiles with
-   * `string_values` under these specified field keys are returned if any
+   * Optional. A list of keys of filterable
+   * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+   * whose corresponding `string_values` are used in keyword searches. Profiles
+   * with `string_values` under these specified field keys are returned if any
    * of the values match the search keyword. Custom field values with
    * parenthesis, brackets and special symbols are not searchable as-is,
    * and must be surrounded by quotes.
@@ -1003,8 +1005,8 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
      *
      *
      * 
-     * Required.
-     * Client side tenant identifier, used to uniquely identify the tenant.
+     * Required. Client side tenant identifier, used to uniquely identify the
+     * tenant.
      * The maximum number of allowed characters is 255.
      * 
* @@ -1025,8 +1027,8 @@ public java.lang.String getExternalId() { * * *
-     * Required.
-     * Client side tenant identifier, used to uniquely identify the tenant.
+     * Required. Client side tenant identifier, used to uniquely identify the
+     * tenant.
      * The maximum number of allowed characters is 255.
      * 
* @@ -1047,8 +1049,8 @@ public com.google.protobuf.ByteString getExternalIdBytes() { * * *
-     * Required.
-     * Client side tenant identifier, used to uniquely identify the tenant.
+     * Required. Client side tenant identifier, used to uniquely identify the
+     * tenant.
      * The maximum number of allowed characters is 255.
      * 
* @@ -1067,8 +1069,8 @@ public Builder setExternalId(java.lang.String value) { * * *
-     * Required.
-     * Client side tenant identifier, used to uniquely identify the tenant.
+     * Required. Client side tenant identifier, used to uniquely identify the
+     * tenant.
      * The maximum number of allowed characters is 255.
      * 
* @@ -1084,8 +1086,8 @@ public Builder clearExternalId() { * * *
-     * Required.
-     * Client side tenant identifier, used to uniquely identify the tenant.
+     * Required. Client side tenant identifier, used to uniquely identify the
+     * tenant.
      * The maximum number of allowed characters is 255.
      * 
* @@ -1107,10 +1109,11 @@ public Builder setExternalIdBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional.
-     * Indicates whether data owned by this tenant may be used to provide product
-     * improvements across other tenants.
-     * Defaults behavior is [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED] if it's unset.
+     * Optional. Indicates whether data owned by this tenant may be used to
+     * provide product improvements across other tenants.
+     * Defaults behavior is
+     * [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED]
+     * if it's unset.
      * 
* * .google.cloud.talent.v4beta1.Tenant.DataUsageType usage_type = 3; @@ -1122,10 +1125,11 @@ public int getUsageTypeValue() { * * *
-     * Optional.
-     * Indicates whether data owned by this tenant may be used to provide product
-     * improvements across other tenants.
-     * Defaults behavior is [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED] if it's unset.
+     * Optional. Indicates whether data owned by this tenant may be used to
+     * provide product improvements across other tenants.
+     * Defaults behavior is
+     * [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED]
+     * if it's unset.
      * 
* * .google.cloud.talent.v4beta1.Tenant.DataUsageType usage_type = 3; @@ -1139,10 +1143,11 @@ public Builder setUsageTypeValue(int value) { * * *
-     * Optional.
-     * Indicates whether data owned by this tenant may be used to provide product
-     * improvements across other tenants.
-     * Defaults behavior is [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED] if it's unset.
+     * Optional. Indicates whether data owned by this tenant may be used to
+     * provide product improvements across other tenants.
+     * Defaults behavior is
+     * [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED]
+     * if it's unset.
      * 
* * .google.cloud.talent.v4beta1.Tenant.DataUsageType usage_type = 3; @@ -1159,10 +1164,11 @@ public com.google.cloud.talent.v4beta1.Tenant.DataUsageType getUsageType() { * * *
-     * Optional.
-     * Indicates whether data owned by this tenant may be used to provide product
-     * improvements across other tenants.
-     * Defaults behavior is [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED] if it's unset.
+     * Optional. Indicates whether data owned by this tenant may be used to
+     * provide product improvements across other tenants.
+     * Defaults behavior is
+     * [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED]
+     * if it's unset.
      * 
* * .google.cloud.talent.v4beta1.Tenant.DataUsageType usage_type = 3; @@ -1180,10 +1186,11 @@ public Builder setUsageType(com.google.cloud.talent.v4beta1.Tenant.DataUsageType * * *
-     * Optional.
-     * Indicates whether data owned by this tenant may be used to provide product
-     * improvements across other tenants.
-     * Defaults behavior is [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED] if it's unset.
+     * Optional. Indicates whether data owned by this tenant may be used to
+     * provide product improvements across other tenants.
+     * Defaults behavior is
+     * [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED]
+     * if it's unset.
      * 
* * .google.cloud.talent.v4beta1.Tenant.DataUsageType usage_type = 3; @@ -1209,10 +1216,10 @@ private void ensureKeywordSearchableProfileCustomAttributesIsMutable() { * * *
-     * Optional.
-     * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-     * corresponding `string_values` are used in keyword searches. Profiles with
-     * `string_values` under these specified field keys are returned if any
+     * Optional. A list of keys of filterable
+     * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+     * whose corresponding `string_values` are used in keyword searches. Profiles
+     * with `string_values` under these specified field keys are returned if any
      * of the values match the search keyword. Custom field values with
      * parenthesis, brackets and special symbols are not searchable as-is,
      * and must be surrounded by quotes.
@@ -1228,10 +1235,10 @@ private void ensureKeywordSearchableProfileCustomAttributesIsMutable() {
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-     * corresponding `string_values` are used in keyword searches. Profiles with
-     * `string_values` under these specified field keys are returned if any
+     * Optional. A list of keys of filterable
+     * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+     * whose corresponding `string_values` are used in keyword searches. Profiles
+     * with `string_values` under these specified field keys are returned if any
      * of the values match the search keyword. Custom field values with
      * parenthesis, brackets and special symbols are not searchable as-is,
      * and must be surrounded by quotes.
@@ -1246,10 +1253,10 @@ public int getKeywordSearchableProfileCustomAttributesCount() {
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-     * corresponding `string_values` are used in keyword searches. Profiles with
-     * `string_values` under these specified field keys are returned if any
+     * Optional. A list of keys of filterable
+     * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+     * whose corresponding `string_values` are used in keyword searches. Profiles
+     * with `string_values` under these specified field keys are returned if any
      * of the values match the search keyword. Custom field values with
      * parenthesis, brackets and special symbols are not searchable as-is,
      * and must be surrounded by quotes.
@@ -1264,10 +1271,10 @@ public java.lang.String getKeywordSearchableProfileCustomAttributes(int index) {
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-     * corresponding `string_values` are used in keyword searches. Profiles with
-     * `string_values` under these specified field keys are returned if any
+     * Optional. A list of keys of filterable
+     * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+     * whose corresponding `string_values` are used in keyword searches. Profiles
+     * with `string_values` under these specified field keys are returned if any
      * of the values match the search keyword. Custom field values with
      * parenthesis, brackets and special symbols are not searchable as-is,
      * and must be surrounded by quotes.
@@ -1283,10 +1290,10 @@ public com.google.protobuf.ByteString getKeywordSearchableProfileCustomAttribute
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-     * corresponding `string_values` are used in keyword searches. Profiles with
-     * `string_values` under these specified field keys are returned if any
+     * Optional. A list of keys of filterable
+     * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+     * whose corresponding `string_values` are used in keyword searches. Profiles
+     * with `string_values` under these specified field keys are returned if any
      * of the values match the search keyword. Custom field values with
      * parenthesis, brackets and special symbols are not searchable as-is,
      * and must be surrounded by quotes.
@@ -1307,10 +1314,10 @@ public Builder setKeywordSearchableProfileCustomAttributes(int index, java.lang.
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-     * corresponding `string_values` are used in keyword searches. Profiles with
-     * `string_values` under these specified field keys are returned if any
+     * Optional. A list of keys of filterable
+     * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+     * whose corresponding `string_values` are used in keyword searches. Profiles
+     * with `string_values` under these specified field keys are returned if any
      * of the values match the search keyword. Custom field values with
      * parenthesis, brackets and special symbols are not searchable as-is,
      * and must be surrounded by quotes.
@@ -1331,10 +1338,10 @@ public Builder addKeywordSearchableProfileCustomAttributes(java.lang.String valu
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-     * corresponding `string_values` are used in keyword searches. Profiles with
-     * `string_values` under these specified field keys are returned if any
+     * Optional. A list of keys of filterable
+     * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+     * whose corresponding `string_values` are used in keyword searches. Profiles
+     * with `string_values` under these specified field keys are returned if any
      * of the values match the search keyword. Custom field values with
      * parenthesis, brackets and special symbols are not searchable as-is,
      * and must be surrounded by quotes.
@@ -1354,10 +1361,10 @@ public Builder addAllKeywordSearchableProfileCustomAttributes(
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-     * corresponding `string_values` are used in keyword searches. Profiles with
-     * `string_values` under these specified field keys are returned if any
+     * Optional. A list of keys of filterable
+     * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+     * whose corresponding `string_values` are used in keyword searches. Profiles
+     * with `string_values` under these specified field keys are returned if any
      * of the values match the search keyword. Custom field values with
      * parenthesis, brackets and special symbols are not searchable as-is,
      * and must be surrounded by quotes.
@@ -1375,10 +1382,10 @@ public Builder clearKeywordSearchableProfileCustomAttributes() {
      *
      *
      * 
-     * Optional.
-     * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-     * corresponding `string_values` are used in keyword searches. Profiles with
-     * `string_values` under these specified field keys are returned if any
+     * Optional. A list of keys of filterable
+     * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+     * whose corresponding `string_values` are used in keyword searches. Profiles
+     * with `string_values` under these specified field keys are returned if any
      * of the values match the search keyword. Custom field values with
      * parenthesis, brackets and special symbols are not searchable as-is,
      * and must be surrounded by quotes.
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantOrBuilder.java
index 81b48bb83709..86d68b0bc950 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantOrBuilder.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantOrBuilder.java
@@ -41,8 +41,8 @@ public interface TenantOrBuilder
    *
    *
    * 
-   * Required.
-   * Client side tenant identifier, used to uniquely identify the tenant.
+   * Required. Client side tenant identifier, used to uniquely identify the
+   * tenant.
    * The maximum number of allowed characters is 255.
    * 
* @@ -53,8 +53,8 @@ public interface TenantOrBuilder * * *
-   * Required.
-   * Client side tenant identifier, used to uniquely identify the tenant.
+   * Required. Client side tenant identifier, used to uniquely identify the
+   * tenant.
    * The maximum number of allowed characters is 255.
    * 
* @@ -66,10 +66,11 @@ public interface TenantOrBuilder * * *
-   * Optional.
-   * Indicates whether data owned by this tenant may be used to provide product
-   * improvements across other tenants.
-   * Defaults behavior is [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED] if it's unset.
+   * Optional. Indicates whether data owned by this tenant may be used to
+   * provide product improvements across other tenants.
+   * Defaults behavior is
+   * [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED]
+   * if it's unset.
    * 
* * .google.cloud.talent.v4beta1.Tenant.DataUsageType usage_type = 3; @@ -79,10 +80,11 @@ public interface TenantOrBuilder * * *
-   * Optional.
-   * Indicates whether data owned by this tenant may be used to provide product
-   * improvements across other tenants.
-   * Defaults behavior is [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED] if it's unset.
+   * Optional. Indicates whether data owned by this tenant may be used to
+   * provide product improvements across other tenants.
+   * Defaults behavior is
+   * [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED]
+   * if it's unset.
    * 
* * .google.cloud.talent.v4beta1.Tenant.DataUsageType usage_type = 3; @@ -93,10 +95,10 @@ public interface TenantOrBuilder * * *
-   * Optional.
-   * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-   * corresponding `string_values` are used in keyword searches. Profiles with
-   * `string_values` under these specified field keys are returned if any
+   * Optional. A list of keys of filterable
+   * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+   * whose corresponding `string_values` are used in keyword searches. Profiles
+   * with `string_values` under these specified field keys are returned if any
    * of the values match the search keyword. Custom field values with
    * parenthesis, brackets and special symbols are not searchable as-is,
    * and must be surrounded by quotes.
@@ -109,10 +111,10 @@ public interface TenantOrBuilder
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-   * corresponding `string_values` are used in keyword searches. Profiles with
-   * `string_values` under these specified field keys are returned if any
+   * Optional. A list of keys of filterable
+   * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+   * whose corresponding `string_values` are used in keyword searches. Profiles
+   * with `string_values` under these specified field keys are returned if any
    * of the values match the search keyword. Custom field values with
    * parenthesis, brackets and special symbols are not searchable as-is,
    * and must be surrounded by quotes.
@@ -125,10 +127,10 @@ public interface TenantOrBuilder
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-   * corresponding `string_values` are used in keyword searches. Profiles with
-   * `string_values` under these specified field keys are returned if any
+   * Optional. A list of keys of filterable
+   * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+   * whose corresponding `string_values` are used in keyword searches. Profiles
+   * with `string_values` under these specified field keys are returned if any
    * of the values match the search keyword. Custom field values with
    * parenthesis, brackets and special symbols are not searchable as-is,
    * and must be surrounded by quotes.
@@ -141,10 +143,10 @@ public interface TenantOrBuilder
    *
    *
    * 
-   * Optional.
-   * A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose
-   * corresponding `string_values` are used in keyword searches. Profiles with
-   * `string_values` under these specified field keys are returned if any
+   * Optional. A list of keys of filterable
+   * [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes],
+   * whose corresponding `string_values` are used in keyword searches. Profiles
+   * with `string_values` under these specified field keys are returned if any
    * of the values match the search keyword. Custom field values with
    * parenthesis, brackets and special symbols are not searchable as-is,
    * and must be surrounded by quotes.
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantResourceProto.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantResourceProto.java
index 4004c34e8d3f..4431878fad12 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantResourceProto.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantResourceProto.java
@@ -26,9 +26,9 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
   static {
     java.lang.String[] descriptorData = {
       "\n(google/cloud/talent/v4beta1/tenant.pro"
-          + "to\022\033google.cloud.talent.v4beta1\032(google/"
-          + "cloud/talent/v4beta1/common.proto\032\034googl"
-          + "e/api/annotations.proto\"\370\001\n\006Tenant\022\014\n\004na"
+          + "to\022\033google.cloud.talent.v4beta1\032\034google/"
+          + "api/annotations.proto\032(google/cloud/tale"
+          + "nt/v4beta1/common.proto\"\370\001\n\006Tenant\022\014\n\004na"
           + "me\030\001 \001(\t\022\023\n\013external_id\030\002 \001(\t\022E\n\nusage_t"
           + "ype\030\003 \001(\01621.google.cloud.talent.v4beta1."
           + "Tenant.DataUsageType\0224\n,keyword_searchab"
@@ -51,8 +51,8 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors(
     com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
         descriptorData,
         new com.google.protobuf.Descriptors.FileDescriptor[] {
-          com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(),
           com.google.api.AnnotationsProto.getDescriptor(),
+          com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(),
         },
         assigner);
     internal_static_google_cloud_talent_v4beta1_Tenant_descriptor =
@@ -63,8 +63,8 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors(
             new java.lang.String[] {
               "Name", "ExternalId", "UsageType", "KeywordSearchableProfileCustomAttributes",
             });
-    com.google.cloud.talent.v4beta1.CommonProto.getDescriptor();
     com.google.api.AnnotationsProto.getDescriptor();
+    com.google.cloud.talent.v4beta1.CommonProto.getDescriptor();
   }
 
   // @@protoc_insertion_point(outer_class_scope)
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantServiceProto.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantServiceProto.java
index d35e7cddcd15..75a6db05be32 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantServiceProto.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TenantServiceProto.java
@@ -47,47 +47,50 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
     java.lang.String[] descriptorData = {
       "\n0google/cloud/talent/v4beta1/tenant_ser"
           + "vice.proto\022\033google.cloud.talent.v4beta1\032"
-          + "\034google/api/annotations.proto\032(google/cl"
-          + "oud/talent/v4beta1/common.proto\032(google/"
-          + "cloud/talent/v4beta1/tenant.proto\032\033googl"
-          + "e/protobuf/empty.proto\032 google/protobuf/"
-          + "field_mask.proto\"Z\n\023CreateTenantRequest\022"
-          + "\016\n\006parent\030\001 \001(\t\0223\n\006tenant\030\002 \001(\0132#.google"
-          + ".cloud.talent.v4beta1.Tenant\" \n\020GetTenan"
-          + "tRequest\022\014\n\004name\030\001 \001(\t\"{\n\023UpdateTenantRe"
-          + "quest\0223\n\006tenant\030\001 \001(\0132#.google.cloud.tal"
-          + "ent.v4beta1.Tenant\022/\n\013update_mask\030\002 \001(\0132"
-          + "\032.google.protobuf.FieldMask\"#\n\023DeleteTen"
-          + "antRequest\022\014\n\004name\030\001 \001(\t\"K\n\022ListTenantsR"
-          + "equest\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_token\030\002 \001"
-          + "(\t\022\021\n\tpage_size\030\003 \001(\005\"\245\001\n\023ListTenantsRes"
-          + "ponse\0224\n\007tenants\030\001 \003(\0132#.google.cloud.ta"
-          + "lent.v4beta1.Tenant\022\027\n\017next_page_token\030\002"
-          + " \001(\t\022?\n\010metadata\030\003 \001(\0132-.google.cloud.ta"
-          + "lent.v4beta1.ResponseMetadata2\202\006\n\rTenant"
-          + "Service\022\226\001\n\014CreateTenant\0220.google.cloud."
-          + "talent.v4beta1.CreateTenantRequest\032#.goo"
-          + "gle.cloud.talent.v4beta1.Tenant\"/\202\323\344\223\002)\""
-          + "$/v4beta1/{parent=projects/*}/tenants:\001*"
-          + "\022\215\001\n\tGetTenant\022-.google.cloud.talent.v4b"
-          + "eta1.GetTenantRequest\032#.google.cloud.tal"
-          + "ent.v4beta1.Tenant\",\202\323\344\223\002&\022$/v4beta1/{na"
-          + "me=projects/*/tenants/*}\022\235\001\n\014UpdateTenan"
-          + "t\0220.google.cloud.talent.v4beta1.UpdateTe"
-          + "nantRequest\032#.google.cloud.talent.v4beta"
-          + "1.Tenant\"6\202\323\344\223\00202+/v4beta1/{tenant.name="
-          + "projects/*/tenants/*}:\001*\022\206\001\n\014DeleteTenan"
-          + "t\0220.google.cloud.talent.v4beta1.DeleteTe"
-          + "nantRequest\032\026.google.protobuf.Empty\",\202\323\344"
-          + "\223\002&*$/v4beta1/{name=projects/*/tenants/*"
-          + "}\022\236\001\n\013ListTenants\022/.google.cloud.talent."
-          + "v4beta1.ListTenantsRequest\0320.google.clou"
-          + "d.talent.v4beta1.ListTenantsResponse\",\202\323"
-          + "\344\223\002&\022$/v4beta1/{parent=projects/*}/tenan"
-          + "tsB\200\001\n\037com.google.cloud.talent.v4beta1B\022"
-          + "TenantServiceProtoP\001ZAgoogle.golang.org/"
-          + "genproto/googleapis/cloud/talent/v4beta1"
-          + ";talent\242\002\003CTSb\006proto3"
+          + "\034google/api/annotations.proto\032\027google/ap"
+          + "i/client.proto\032(google/cloud/talent/v4be"
+          + "ta1/common.proto\032(google/cloud/talent/v4"
+          + "beta1/tenant.proto\032\033google/protobuf/empt"
+          + "y.proto\032 google/protobuf/field_mask.prot"
+          + "o\"Z\n\023CreateTenantRequest\022\016\n\006parent\030\001 \001(\t"
+          + "\0223\n\006tenant\030\002 \001(\0132#.google.cloud.talent.v"
+          + "4beta1.Tenant\" \n\020GetTenantRequest\022\014\n\004nam"
+          + "e\030\001 \001(\t\"{\n\023UpdateTenantRequest\0223\n\006tenant"
+          + "\030\001 \001(\0132#.google.cloud.talent.v4beta1.Ten"
+          + "ant\022/\n\013update_mask\030\002 \001(\0132\032.google.protob"
+          + "uf.FieldMask\"#\n\023DeleteTenantRequest\022\014\n\004n"
+          + "ame\030\001 \001(\t\"K\n\022ListTenantsRequest\022\016\n\006paren"
+          + "t\030\001 \001(\t\022\022\n\npage_token\030\002 \001(\t\022\021\n\tpage_size"
+          + "\030\003 \001(\005\"\245\001\n\023ListTenantsResponse\0224\n\007tenant"
+          + "s\030\001 \003(\0132#.google.cloud.talent.v4beta1.Te"
+          + "nant\022\027\n\017next_page_token\030\002 \001(\t\022?\n\010metadat"
+          + "a\030\003 \001(\0132-.google.cloud.talent.v4beta1.Re"
+          + "sponseMetadata2\360\006\n\rTenantService\022\226\001\n\014Cre"
+          + "ateTenant\0220.google.cloud.talent.v4beta1."
+          + "CreateTenantRequest\032#.google.cloud.talen"
+          + "t.v4beta1.Tenant\"/\202\323\344\223\002)\"$/v4beta1/{pare"
+          + "nt=projects/*}/tenants:\001*\022\215\001\n\tGetTenant\022"
+          + "-.google.cloud.talent.v4beta1.GetTenantR"
+          + "equest\032#.google.cloud.talent.v4beta1.Ten"
+          + "ant\",\202\323\344\223\002&\022$/v4beta1/{name=projects/*/t"
+          + "enants/*}\022\235\001\n\014UpdateTenant\0220.google.clou"
+          + "d.talent.v4beta1.UpdateTenantRequest\032#.g"
+          + "oogle.cloud.talent.v4beta1.Tenant\"6\202\323\344\223\002"
+          + "02+/v4beta1/{tenant.name=projects/*/tena"
+          + "nts/*}:\001*\022\206\001\n\014DeleteTenant\0220.google.clou"
+          + "d.talent.v4beta1.DeleteTenantRequest\032\026.g"
+          + "oogle.protobuf.Empty\",\202\323\344\223\002&*$/v4beta1/{"
+          + "name=projects/*/tenants/*}\022\236\001\n\013ListTenan"
+          + "ts\022/.google.cloud.talent.v4beta1.ListTen"
+          + "antsRequest\0320.google.cloud.talent.v4beta"
+          + "1.ListTenantsResponse\",\202\323\344\223\002&\022$/v4beta1/"
+          + "{parent=projects/*}/tenants\032l\312A\023jobs.goo"
+          + "gleapis.com\322AShttps://www.googleapis.com"
+          + "/auth/cloud-platform,https://www.googlea"
+          + "pis.com/auth/jobsB\200\001\n\037com.google.cloud.t"
+          + "alent.v4beta1B\022TenantServiceProtoP\001ZAgoo"
+          + "gle.golang.org/genproto/googleapis/cloud"
+          + "/talent/v4beta1;talent\242\002\003CTSb\006proto3"
     };
     com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
         new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
@@ -101,6 +104,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors(
         descriptorData,
         new com.google.protobuf.Descriptors.FileDescriptor[] {
           com.google.api.AnnotationsProto.getDescriptor(),
+          com.google.api.ClientProto.getDescriptor(),
           com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(),
           com.google.cloud.talent.v4beta1.TenantResourceProto.getDescriptor(),
           com.google.protobuf.EmptyProto.getDescriptor(),
@@ -157,10 +161,13 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors(
             });
     com.google.protobuf.ExtensionRegistry registry =
         com.google.protobuf.ExtensionRegistry.newInstance();
+    registry.add(com.google.api.ClientProto.defaultHost);
     registry.add(com.google.api.AnnotationsProto.http);
+    registry.add(com.google.api.ClientProto.oauthScopes);
     com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor(
         descriptor, registry);
     com.google.api.AnnotationsProto.getDescriptor();
+    com.google.api.ClientProto.getDescriptor();
     com.google.cloud.talent.v4beta1.CommonProto.getDescriptor();
     com.google.cloud.talent.v4beta1.TenantResourceProto.getDescriptor();
     com.google.protobuf.EmptyProto.getDescriptor();
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TimeFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TimeFilter.java
index 6dfc20ac7c05..887f2535d409 100644
--- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TimeFilter.java
+++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TimeFilter.java
@@ -273,10 +273,9 @@ private TimeField(int value) {
    *
    *
    * 
-   * Optional.
-   * Start timestamp, matching profiles with the start time. If this field
-   * missing, The API matches profiles with create / update timestamp before the
-   * end timestamp.
+   * Optional. Start timestamp, matching profiles with the start time. If this
+   * field missing, The API matches profiles with create / update timestamp
+   * before the end timestamp.
    * 
* * .google.protobuf.Timestamp start_time = 1; @@ -288,10 +287,9 @@ public boolean hasStartTime() { * * *
-   * Optional.
-   * Start timestamp, matching profiles with the start time. If this field
-   * missing, The API matches profiles with create / update timestamp before the
-   * end timestamp.
+   * Optional. Start timestamp, matching profiles with the start time. If this
+   * field missing, The API matches profiles with create / update timestamp
+   * before the end timestamp.
    * 
* * .google.protobuf.Timestamp start_time = 1; @@ -303,10 +301,9 @@ public com.google.protobuf.Timestamp getStartTime() { * * *
-   * Optional.
-   * Start timestamp, matching profiles with the start time. If this field
-   * missing, The API matches profiles with create / update timestamp before the
-   * end timestamp.
+   * Optional. Start timestamp, matching profiles with the start time. If this
+   * field missing, The API matches profiles with create / update timestamp
+   * before the end timestamp.
    * 
* * .google.protobuf.Timestamp start_time = 1; @@ -321,8 +318,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() { * * *
-   * Optional.
-   * End timestamp, matching profiles with the end time. If this field
+   * Optional. End timestamp, matching profiles with the end time. If this field
    * missing, The API matches profiles with create / update timestamp after the
    * start timestamp.
    * 
@@ -336,8 +332,7 @@ public boolean hasEndTime() { * * *
-   * Optional.
-   * End timestamp, matching profiles with the end time. If this field
+   * Optional. End timestamp, matching profiles with the end time. If this field
    * missing, The API matches profiles with create / update timestamp after the
    * start timestamp.
    * 
@@ -351,8 +346,7 @@ public com.google.protobuf.Timestamp getEndTime() { * * *
-   * Optional.
-   * End timestamp, matching profiles with the end time. If this field
+   * Optional. End timestamp, matching profiles with the end time. If this field
    * missing, The API matches profiles with create / update timestamp after the
    * start timestamp.
    * 
@@ -369,8 +363,7 @@ public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() { * * *
-   * Optional.
-   * Specifies which time field to filter profiles.
+   * Optional. Specifies which time field to filter profiles.
    * Defaults to
    * [TimeField.CREATE_TIME][google.cloud.talent.v4beta1.TimeFilter.TimeField.CREATE_TIME].
    * 
@@ -384,8 +377,7 @@ public int getTimeFieldValue() { * * *
-   * Optional.
-   * Specifies which time field to filter profiles.
+   * Optional. Specifies which time field to filter profiles.
    * Defaults to
    * [TimeField.CREATE_TIME][google.cloud.talent.v4beta1.TimeFilter.TimeField.CREATE_TIME].
    * 
@@ -787,10 +779,9 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * Start timestamp, matching profiles with the start time. If this field
-     * missing, The API matches profiles with create / update timestamp before the
-     * end timestamp.
+     * Optional. Start timestamp, matching profiles with the start time. If this
+     * field missing, The API matches profiles with create / update timestamp
+     * before the end timestamp.
      * 
* * .google.protobuf.Timestamp start_time = 1; @@ -802,10 +793,9 @@ public boolean hasStartTime() { * * *
-     * Optional.
-     * Start timestamp, matching profiles with the start time. If this field
-     * missing, The API matches profiles with create / update timestamp before the
-     * end timestamp.
+     * Optional. Start timestamp, matching profiles with the start time. If this
+     * field missing, The API matches profiles with create / update timestamp
+     * before the end timestamp.
      * 
* * .google.protobuf.Timestamp start_time = 1; @@ -821,10 +811,9 @@ public com.google.protobuf.Timestamp getStartTime() { * * *
-     * Optional.
-     * Start timestamp, matching profiles with the start time. If this field
-     * missing, The API matches profiles with create / update timestamp before the
-     * end timestamp.
+     * Optional. Start timestamp, matching profiles with the start time. If this
+     * field missing, The API matches profiles with create / update timestamp
+     * before the end timestamp.
      * 
* * .google.protobuf.Timestamp start_time = 1; @@ -846,10 +835,9 @@ public Builder setStartTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * Start timestamp, matching profiles with the start time. If this field
-     * missing, The API matches profiles with create / update timestamp before the
-     * end timestamp.
+     * Optional. Start timestamp, matching profiles with the start time. If this
+     * field missing, The API matches profiles with create / update timestamp
+     * before the end timestamp.
      * 
* * .google.protobuf.Timestamp start_time = 1; @@ -868,10 +856,9 @@ public Builder setStartTime(com.google.protobuf.Timestamp.Builder builderForValu * * *
-     * Optional.
-     * Start timestamp, matching profiles with the start time. If this field
-     * missing, The API matches profiles with create / update timestamp before the
-     * end timestamp.
+     * Optional. Start timestamp, matching profiles with the start time. If this
+     * field missing, The API matches profiles with create / update timestamp
+     * before the end timestamp.
      * 
* * .google.protobuf.Timestamp start_time = 1; @@ -895,10 +882,9 @@ public Builder mergeStartTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * Start timestamp, matching profiles with the start time. If this field
-     * missing, The API matches profiles with create / update timestamp before the
-     * end timestamp.
+     * Optional. Start timestamp, matching profiles with the start time. If this
+     * field missing, The API matches profiles with create / update timestamp
+     * before the end timestamp.
      * 
* * .google.protobuf.Timestamp start_time = 1; @@ -918,10 +904,9 @@ public Builder clearStartTime() { * * *
-     * Optional.
-     * Start timestamp, matching profiles with the start time. If this field
-     * missing, The API matches profiles with create / update timestamp before the
-     * end timestamp.
+     * Optional. Start timestamp, matching profiles with the start time. If this
+     * field missing, The API matches profiles with create / update timestamp
+     * before the end timestamp.
      * 
* * .google.protobuf.Timestamp start_time = 1; @@ -935,10 +920,9 @@ public com.google.protobuf.Timestamp.Builder getStartTimeBuilder() { * * *
-     * Optional.
-     * Start timestamp, matching profiles with the start time. If this field
-     * missing, The API matches profiles with create / update timestamp before the
-     * end timestamp.
+     * Optional. Start timestamp, matching profiles with the start time. If this
+     * field missing, The API matches profiles with create / update timestamp
+     * before the end timestamp.
      * 
* * .google.protobuf.Timestamp start_time = 1; @@ -954,10 +938,9 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() { * * *
-     * Optional.
-     * Start timestamp, matching profiles with the start time. If this field
-     * missing, The API matches profiles with create / update timestamp before the
-     * end timestamp.
+     * Optional. Start timestamp, matching profiles with the start time. If this
+     * field missing, The API matches profiles with create / update timestamp
+     * before the end timestamp.
      * 
* * .google.protobuf.Timestamp start_time = 1; @@ -989,8 +972,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() { * * *
-     * Optional.
-     * End timestamp, matching profiles with the end time. If this field
+     * Optional. End timestamp, matching profiles with the end time. If this field
      * missing, The API matches profiles with create / update timestamp after the
      * start timestamp.
      * 
@@ -1004,8 +986,7 @@ public boolean hasEndTime() { * * *
-     * Optional.
-     * End timestamp, matching profiles with the end time. If this field
+     * Optional. End timestamp, matching profiles with the end time. If this field
      * missing, The API matches profiles with create / update timestamp after the
      * start timestamp.
      * 
@@ -1023,8 +1004,7 @@ public com.google.protobuf.Timestamp getEndTime() { * * *
-     * Optional.
-     * End timestamp, matching profiles with the end time. If this field
+     * Optional. End timestamp, matching profiles with the end time. If this field
      * missing, The API matches profiles with create / update timestamp after the
      * start timestamp.
      * 
@@ -1048,8 +1028,7 @@ public Builder setEndTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * End timestamp, matching profiles with the end time. If this field
+     * Optional. End timestamp, matching profiles with the end time. If this field
      * missing, The API matches profiles with create / update timestamp after the
      * start timestamp.
      * 
@@ -1070,8 +1049,7 @@ public Builder setEndTime(com.google.protobuf.Timestamp.Builder builderForValue) * * *
-     * Optional.
-     * End timestamp, matching profiles with the end time. If this field
+     * Optional. End timestamp, matching profiles with the end time. If this field
      * missing, The API matches profiles with create / update timestamp after the
      * start timestamp.
      * 
@@ -1097,8 +1075,7 @@ public Builder mergeEndTime(com.google.protobuf.Timestamp value) { * * *
-     * Optional.
-     * End timestamp, matching profiles with the end time. If this field
+     * Optional. End timestamp, matching profiles with the end time. If this field
      * missing, The API matches profiles with create / update timestamp after the
      * start timestamp.
      * 
@@ -1120,8 +1097,7 @@ public Builder clearEndTime() { * * *
-     * Optional.
-     * End timestamp, matching profiles with the end time. If this field
+     * Optional. End timestamp, matching profiles with the end time. If this field
      * missing, The API matches profiles with create / update timestamp after the
      * start timestamp.
      * 
@@ -1137,8 +1113,7 @@ public com.google.protobuf.Timestamp.Builder getEndTimeBuilder() { * * *
-     * Optional.
-     * End timestamp, matching profiles with the end time. If this field
+     * Optional. End timestamp, matching profiles with the end time. If this field
      * missing, The API matches profiles with create / update timestamp after the
      * start timestamp.
      * 
@@ -1156,8 +1131,7 @@ public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() { * * *
-     * Optional.
-     * End timestamp, matching profiles with the end time. If this field
+     * Optional. End timestamp, matching profiles with the end time. If this field
      * missing, The API matches profiles with create / update timestamp after the
      * start timestamp.
      * 
@@ -1186,8 +1160,7 @@ public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() { * * *
-     * Optional.
-     * Specifies which time field to filter profiles.
+     * Optional. Specifies which time field to filter profiles.
      * Defaults to
      * [TimeField.CREATE_TIME][google.cloud.talent.v4beta1.TimeFilter.TimeField.CREATE_TIME].
      * 
@@ -1201,8 +1174,7 @@ public int getTimeFieldValue() { * * *
-     * Optional.
-     * Specifies which time field to filter profiles.
+     * Optional. Specifies which time field to filter profiles.
      * Defaults to
      * [TimeField.CREATE_TIME][google.cloud.talent.v4beta1.TimeFilter.TimeField.CREATE_TIME].
      * 
@@ -1218,8 +1190,7 @@ public Builder setTimeFieldValue(int value) { * * *
-     * Optional.
-     * Specifies which time field to filter profiles.
+     * Optional. Specifies which time field to filter profiles.
      * Defaults to
      * [TimeField.CREATE_TIME][google.cloud.talent.v4beta1.TimeFilter.TimeField.CREATE_TIME].
      * 
@@ -1238,8 +1209,7 @@ public com.google.cloud.talent.v4beta1.TimeFilter.TimeField getTimeField() { * * *
-     * Optional.
-     * Specifies which time field to filter profiles.
+     * Optional. Specifies which time field to filter profiles.
      * Defaults to
      * [TimeField.CREATE_TIME][google.cloud.talent.v4beta1.TimeFilter.TimeField.CREATE_TIME].
      * 
@@ -1259,8 +1229,7 @@ public Builder setTimeField(com.google.cloud.talent.v4beta1.TimeFilter.TimeField * * *
-     * Optional.
-     * Specifies which time field to filter profiles.
+     * Optional. Specifies which time field to filter profiles.
      * Defaults to
      * [TimeField.CREATE_TIME][google.cloud.talent.v4beta1.TimeFilter.TimeField.CREATE_TIME].
      * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TimeFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TimeFilterOrBuilder.java index 676b7e48763c..e0113da53648 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TimeFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/TimeFilterOrBuilder.java @@ -12,10 +12,9 @@ public interface TimeFilterOrBuilder * * *
-   * Optional.
-   * Start timestamp, matching profiles with the start time. If this field
-   * missing, The API matches profiles with create / update timestamp before the
-   * end timestamp.
+   * Optional. Start timestamp, matching profiles with the start time. If this
+   * field missing, The API matches profiles with create / update timestamp
+   * before the end timestamp.
    * 
* * .google.protobuf.Timestamp start_time = 1; @@ -25,10 +24,9 @@ public interface TimeFilterOrBuilder * * *
-   * Optional.
-   * Start timestamp, matching profiles with the start time. If this field
-   * missing, The API matches profiles with create / update timestamp before the
-   * end timestamp.
+   * Optional. Start timestamp, matching profiles with the start time. If this
+   * field missing, The API matches profiles with create / update timestamp
+   * before the end timestamp.
    * 
* * .google.protobuf.Timestamp start_time = 1; @@ -38,10 +36,9 @@ public interface TimeFilterOrBuilder * * *
-   * Optional.
-   * Start timestamp, matching profiles with the start time. If this field
-   * missing, The API matches profiles with create / update timestamp before the
-   * end timestamp.
+   * Optional. Start timestamp, matching profiles with the start time. If this
+   * field missing, The API matches profiles with create / update timestamp
+   * before the end timestamp.
    * 
* * .google.protobuf.Timestamp start_time = 1; @@ -52,8 +49,7 @@ public interface TimeFilterOrBuilder * * *
-   * Optional.
-   * End timestamp, matching profiles with the end time. If this field
+   * Optional. End timestamp, matching profiles with the end time. If this field
    * missing, The API matches profiles with create / update timestamp after the
    * start timestamp.
    * 
@@ -65,8 +61,7 @@ public interface TimeFilterOrBuilder * * *
-   * Optional.
-   * End timestamp, matching profiles with the end time. If this field
+   * Optional. End timestamp, matching profiles with the end time. If this field
    * missing, The API matches profiles with create / update timestamp after the
    * start timestamp.
    * 
@@ -78,8 +73,7 @@ public interface TimeFilterOrBuilder * * *
-   * Optional.
-   * End timestamp, matching profiles with the end time. If this field
+   * Optional. End timestamp, matching profiles with the end time. If this field
    * missing, The API matches profiles with create / update timestamp after the
    * start timestamp.
    * 
@@ -92,8 +86,7 @@ public interface TimeFilterOrBuilder * * *
-   * Optional.
-   * Specifies which time field to filter profiles.
+   * Optional. Specifies which time field to filter profiles.
    * Defaults to
    * [TimeField.CREATE_TIME][google.cloud.talent.v4beta1.TimeFilter.TimeField.CREATE_TIME].
    * 
@@ -105,8 +98,7 @@ public interface TimeFilterOrBuilder * * *
-   * Optional.
-   * Specifies which time field to filter profiles.
+   * Optional. Specifies which time field to filter profiles.
    * Defaults to
    * [TimeField.CREATE_TIME][google.cloud.talent.v4beta1.TimeFilter.TimeField.CREATE_TIME].
    * 
diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateApplicationRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateApplicationRequest.java index d343afeb2abd..95879704d063 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateApplicationRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateApplicationRequest.java @@ -119,8 +119,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The application resource to replace the current resource in the system.
+   * Required. The application resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -132,8 +132,8 @@ public boolean hasApplication() { * * *
-   * Required.
-   * The application resource to replace the current resource in the system.
+   * Required. The application resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -147,8 +147,8 @@ public com.google.cloud.talent.v4beta1.Application getApplication() { * * *
-   * Required.
-   * The application resource to replace the current resource in the system.
+   * Required. The application resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -165,10 +165,14 @@ public com.google.cloud.talent.v4beta1.ApplicationOrBuilder getApplicationOrBuil *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+   * is provided, only the specified fields in
+   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+   * are updated. Otherwise all the fields are updated.
    * A field mask to specify the application fields to be updated. Only
-   * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+   * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+   * are supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -182,10 +186,14 @@ public boolean hasUpdateMask() { *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+   * is provided, only the specified fields in
+   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+   * are updated. Otherwise all the fields are updated.
    * A field mask to specify the application fields to be updated. Only
-   * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+   * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+   * are supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -199,10 +207,14 @@ public com.google.protobuf.FieldMask getUpdateMask() { *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+   * is provided, only the specified fields in
+   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+   * are updated. Otherwise all the fields are updated.
    * A field mask to specify the application fields to be updated. Only
-   * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+   * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+   * are supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -580,8 +592,8 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The application resource to replace the current resource in the system.
+     * Required. The application resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -593,8 +605,8 @@ public boolean hasApplication() { * * *
-     * Required.
-     * The application resource to replace the current resource in the system.
+     * Required. The application resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -612,8 +624,8 @@ public com.google.cloud.talent.v4beta1.Application getApplication() { * * *
-     * Required.
-     * The application resource to replace the current resource in the system.
+     * Required. The application resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -635,8 +647,8 @@ public Builder setApplication(com.google.cloud.talent.v4beta1.Application value) * * *
-     * Required.
-     * The application resource to replace the current resource in the system.
+     * Required. The application resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -656,8 +668,8 @@ public Builder setApplication( * * *
-     * Required.
-     * The application resource to replace the current resource in the system.
+     * Required. The application resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -683,8 +695,8 @@ public Builder mergeApplication(com.google.cloud.talent.v4beta1.Application valu * * *
-     * Required.
-     * The application resource to replace the current resource in the system.
+     * Required. The application resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -704,8 +716,8 @@ public Builder clearApplication() { * * *
-     * Required.
-     * The application resource to replace the current resource in the system.
+     * Required. The application resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -719,8 +731,8 @@ public com.google.cloud.talent.v4beta1.Application.Builder getApplicationBuilder * * *
-     * Required.
-     * The application resource to replace the current resource in the system.
+     * Required. The application resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -738,8 +750,8 @@ public com.google.cloud.talent.v4beta1.ApplicationOrBuilder getApplicationOrBuil * * *
-     * Required.
-     * The application resource to replace the current resource in the system.
+     * Required. The application resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -773,10 +785,14 @@ public com.google.cloud.talent.v4beta1.ApplicationOrBuilder getApplicationOrBuil *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+     * is provided, only the specified fields in
+     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+     * are updated. Otherwise all the fields are updated.
      * A field mask to specify the application fields to be updated. Only
-     * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+     * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+     * are supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -790,10 +806,14 @@ public boolean hasUpdateMask() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+     * is provided, only the specified fields in
+     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+     * are updated. Otherwise all the fields are updated.
      * A field mask to specify the application fields to be updated. Only
-     * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+     * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+     * are supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -813,10 +833,14 @@ public com.google.protobuf.FieldMask getUpdateMask() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+     * is provided, only the specified fields in
+     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+     * are updated. Otherwise all the fields are updated.
      * A field mask to specify the application fields to be updated. Only
-     * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+     * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+     * are supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -840,10 +864,14 @@ public Builder setUpdateMask(com.google.protobuf.FieldMask value) { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+     * is provided, only the specified fields in
+     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+     * are updated. Otherwise all the fields are updated.
      * A field mask to specify the application fields to be updated. Only
-     * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+     * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+     * are supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -864,10 +892,14 @@ public Builder setUpdateMask(com.google.protobuf.FieldMask.Builder builderForVal *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+     * is provided, only the specified fields in
+     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+     * are updated. Otherwise all the fields are updated.
      * A field mask to specify the application fields to be updated. Only
-     * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+     * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+     * are supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -893,10 +925,14 @@ public Builder mergeUpdateMask(com.google.protobuf.FieldMask value) { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+     * is provided, only the specified fields in
+     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+     * are updated. Otherwise all the fields are updated.
      * A field mask to specify the application fields to be updated. Only
-     * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+     * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+     * are supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -918,10 +954,14 @@ public Builder clearUpdateMask() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+     * is provided, only the specified fields in
+     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+     * are updated. Otherwise all the fields are updated.
      * A field mask to specify the application fields to be updated. Only
-     * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+     * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+     * are supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -937,10 +977,14 @@ public com.google.protobuf.FieldMask.Builder getUpdateMaskBuilder() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+     * is provided, only the specified fields in
+     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+     * are updated. Otherwise all the fields are updated.
      * A field mask to specify the application fields to be updated. Only
-     * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+     * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+     * are supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -960,10 +1004,14 @@ public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+     * is provided, only the specified fields in
+     * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+     * are updated. Otherwise all the fields are updated.
      * A field mask to specify the application fields to be updated. Only
-     * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+     * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+     * are supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateApplicationRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateApplicationRequestOrBuilder.java index 7daeff4dd0d4..b8dfb3cadea6 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateApplicationRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateApplicationRequestOrBuilder.java @@ -12,8 +12,8 @@ public interface UpdateApplicationRequestOrBuilder * * *
-   * Required.
-   * The application resource to replace the current resource in the system.
+   * Required. The application resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -23,8 +23,8 @@ public interface UpdateApplicationRequestOrBuilder * * *
-   * Required.
-   * The application resource to replace the current resource in the system.
+   * Required. The application resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -34,8 +34,8 @@ public interface UpdateApplicationRequestOrBuilder * * *
-   * Required.
-   * The application resource to replace the current resource in the system.
+   * Required. The application resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Application application = 1; @@ -48,10 +48,14 @@ public interface UpdateApplicationRequestOrBuilder *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+   * is provided, only the specified fields in
+   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+   * are updated. Otherwise all the fields are updated.
    * A field mask to specify the application fields to be updated. Only
-   * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+   * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+   * are supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -63,10 +67,14 @@ public interface UpdateApplicationRequestOrBuilder *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+   * is provided, only the specified fields in
+   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+   * are updated. Otherwise all the fields are updated.
    * A field mask to specify the application fields to be updated. Only
-   * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+   * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+   * are supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -78,10 +86,14 @@ public interface UpdateApplicationRequestOrBuilder *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in
-   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask]
+   * is provided, only the specified fields in
+   * [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application]
+   * are updated. Otherwise all the fields are updated.
    * A field mask to specify the application fields to be updated. Only
-   * top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported.
+   * top level fields of [Application][google.cloud.talent.v4beta1.Application]
+   * are supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateCompanyRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateCompanyRequest.java index dce7961e9c17..150ce663160b 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateCompanyRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateCompanyRequest.java @@ -119,8 +119,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The company resource to replace the current resource in the system.
+   * Required. The company resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -132,8 +132,8 @@ public boolean hasCompany() { * * *
-   * Required.
-   * The company resource to replace the current resource in the system.
+   * Required. The company resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -147,8 +147,8 @@ public com.google.cloud.talent.v4beta1.Company getCompany() { * * *
-   * Required.
-   * The company resource to replace the current resource in the system.
+   * Required. The company resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -165,10 +165,14 @@ public com.google.cloud.talent.v4beta1.CompanyOrBuilder getCompanyOrBuilder() { *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+   * is provided, only the specified fields in
+   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the company fields to be updated. Only
-   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -182,10 +186,14 @@ public boolean hasUpdateMask() { *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+   * is provided, only the specified fields in
+   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the company fields to be updated. Only
-   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -199,10 +207,14 @@ public com.google.protobuf.FieldMask getUpdateMask() { *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+   * is provided, only the specified fields in
+   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the company fields to be updated. Only
-   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -579,8 +591,8 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The company resource to replace the current resource in the system.
+     * Required. The company resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -592,8 +604,8 @@ public boolean hasCompany() { * * *
-     * Required.
-     * The company resource to replace the current resource in the system.
+     * Required. The company resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -611,8 +623,8 @@ public com.google.cloud.talent.v4beta1.Company getCompany() { * * *
-     * Required.
-     * The company resource to replace the current resource in the system.
+     * Required. The company resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -634,8 +646,8 @@ public Builder setCompany(com.google.cloud.talent.v4beta1.Company value) { * * *
-     * Required.
-     * The company resource to replace the current resource in the system.
+     * Required. The company resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -654,8 +666,8 @@ public Builder setCompany(com.google.cloud.talent.v4beta1.Company.Builder builde * * *
-     * Required.
-     * The company resource to replace the current resource in the system.
+     * Required. The company resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -681,8 +693,8 @@ public Builder mergeCompany(com.google.cloud.talent.v4beta1.Company value) { * * *
-     * Required.
-     * The company resource to replace the current resource in the system.
+     * Required. The company resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -702,8 +714,8 @@ public Builder clearCompany() { * * *
-     * Required.
-     * The company resource to replace the current resource in the system.
+     * Required. The company resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -717,8 +729,8 @@ public com.google.cloud.talent.v4beta1.Company.Builder getCompanyBuilder() { * * *
-     * Required.
-     * The company resource to replace the current resource in the system.
+     * Required. The company resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -736,8 +748,8 @@ public com.google.cloud.talent.v4beta1.CompanyOrBuilder getCompanyOrBuilder() { * * *
-     * Required.
-     * The company resource to replace the current resource in the system.
+     * Required. The company resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -771,10 +783,14 @@ public com.google.cloud.talent.v4beta1.CompanyOrBuilder getCompanyOrBuilder() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+     * is provided, only the specified fields in
+     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the company fields to be updated. Only
-     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -788,10 +804,14 @@ public boolean hasUpdateMask() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+     * is provided, only the specified fields in
+     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the company fields to be updated. Only
-     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -811,10 +831,14 @@ public com.google.protobuf.FieldMask getUpdateMask() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+     * is provided, only the specified fields in
+     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the company fields to be updated. Only
-     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -838,10 +862,14 @@ public Builder setUpdateMask(com.google.protobuf.FieldMask value) { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+     * is provided, only the specified fields in
+     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the company fields to be updated. Only
-     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -862,10 +890,14 @@ public Builder setUpdateMask(com.google.protobuf.FieldMask.Builder builderForVal *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+     * is provided, only the specified fields in
+     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the company fields to be updated. Only
-     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -891,10 +923,14 @@ public Builder mergeUpdateMask(com.google.protobuf.FieldMask value) { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+     * is provided, only the specified fields in
+     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the company fields to be updated. Only
-     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -916,10 +952,14 @@ public Builder clearUpdateMask() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+     * is provided, only the specified fields in
+     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the company fields to be updated. Only
-     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -935,10 +975,14 @@ public com.google.protobuf.FieldMask.Builder getUpdateMaskBuilder() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+     * is provided, only the specified fields in
+     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the company fields to be updated. Only
-     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -958,10 +1002,14 @@ public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+     * is provided, only the specified fields in
+     * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the company fields to be updated. Only
-     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+     * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateCompanyRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateCompanyRequestOrBuilder.java index d3475b895181..e93800f0bc6c 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateCompanyRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateCompanyRequestOrBuilder.java @@ -12,8 +12,8 @@ public interface UpdateCompanyRequestOrBuilder * * *
-   * Required.
-   * The company resource to replace the current resource in the system.
+   * Required. The company resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -23,8 +23,8 @@ public interface UpdateCompanyRequestOrBuilder * * *
-   * Required.
-   * The company resource to replace the current resource in the system.
+   * Required. The company resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -34,8 +34,8 @@ public interface UpdateCompanyRequestOrBuilder * * *
-   * Required.
-   * The company resource to replace the current resource in the system.
+   * Required. The company resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Company company = 1; @@ -48,10 +48,14 @@ public interface UpdateCompanyRequestOrBuilder *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+   * is provided, only the specified fields in
+   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the company fields to be updated. Only
-   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -63,10 +67,14 @@ public interface UpdateCompanyRequestOrBuilder *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+   * is provided, only the specified fields in
+   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the company fields to be updated. Only
-   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -78,10 +86,14 @@ public interface UpdateCompanyRequestOrBuilder *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
-   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
+   * is provided, only the specified fields in
+   * [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the company fields to be updated. Only
-   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
+   * top level fields of [Company][google.cloud.talent.v4beta1.Company] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateJobRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateJobRequest.java index b5b60e4c6737..8376bac57292 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateJobRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateJobRequest.java @@ -120,8 +120,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The Job to be updated.
+   * Required. The Job to be updated.
    * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -133,8 +132,7 @@ public boolean hasJob() { * * *
-   * Required.
-   * The Job to be updated.
+   * Required. The Job to be updated.
    * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -146,8 +144,7 @@ public com.google.cloud.talent.v4beta1.Job getJob() { * * *
-   * Required.
-   * The Job to be updated.
+   * Required. The Job to be updated.
    * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -584,8 +581,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The Job to be updated.
+     * Required. The Job to be updated.
      * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -597,8 +593,7 @@ public boolean hasJob() { * * *
-     * Required.
-     * The Job to be updated.
+     * Required. The Job to be updated.
      * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -614,8 +609,7 @@ public com.google.cloud.talent.v4beta1.Job getJob() { * * *
-     * Required.
-     * The Job to be updated.
+     * Required. The Job to be updated.
      * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -637,8 +631,7 @@ public Builder setJob(com.google.cloud.talent.v4beta1.Job value) { * * *
-     * Required.
-     * The Job to be updated.
+     * Required. The Job to be updated.
      * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -657,8 +650,7 @@ public Builder setJob(com.google.cloud.talent.v4beta1.Job.Builder builderForValu * * *
-     * Required.
-     * The Job to be updated.
+     * Required. The Job to be updated.
      * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -682,8 +674,7 @@ public Builder mergeJob(com.google.cloud.talent.v4beta1.Job value) { * * *
-     * Required.
-     * The Job to be updated.
+     * Required. The Job to be updated.
      * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -703,8 +694,7 @@ public Builder clearJob() { * * *
-     * Required.
-     * The Job to be updated.
+     * Required. The Job to be updated.
      * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -718,8 +708,7 @@ public com.google.cloud.talent.v4beta1.Job.Builder getJobBuilder() { * * *
-     * Required.
-     * The Job to be updated.
+     * Required. The Job to be updated.
      * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -735,8 +724,7 @@ public com.google.cloud.talent.v4beta1.JobOrBuilder getJobOrBuilder() { * * *
-     * Required.
-     * The Job to be updated.
+     * Required. The Job to be updated.
      * 
* * .google.cloud.talent.v4beta1.Job job = 1; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateJobRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateJobRequestOrBuilder.java index dc28ba2a0d01..50b650cfaaae 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateJobRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateJobRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface UpdateJobRequestOrBuilder * * *
-   * Required.
-   * The Job to be updated.
+   * Required. The Job to be updated.
    * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -23,8 +22,7 @@ public interface UpdateJobRequestOrBuilder * * *
-   * Required.
-   * The Job to be updated.
+   * Required. The Job to be updated.
    * 
* * .google.cloud.talent.v4beta1.Job job = 1; @@ -34,8 +32,7 @@ public interface UpdateJobRequestOrBuilder * * *
-   * Required.
-   * The Job to be updated.
+   * Required. The Job to be updated.
    * 
* * .google.cloud.talent.v4beta1.Job job = 1; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateProfileRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateProfileRequest.java index 4a21a7e5e738..15117af5eece 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateProfileRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateProfileRequest.java @@ -119,8 +119,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * Profile to be updated.
+   * Required. Profile to be updated.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -132,8 +131,7 @@ public boolean hasProfile() { * * *
-   * Required.
-   * Profile to be updated.
+   * Required. Profile to be updated.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -147,8 +145,7 @@ public com.google.cloud.talent.v4beta1.Profile getProfile() { * * *
-   * Required.
-   * Profile to be updated.
+   * Required. Profile to be updated.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -163,33 +160,32 @@ public com.google.cloud.talent.v4beta1.ProfileOrBuilder getProfileOrBuilder() { * * *
-   * Optional.
-   * A field mask to specify the profile fields to update.
+   * Optional. A field mask to specify the profile fields to update.
    * A full update is performed if it is unset.
    * Valid values are:
-   * * externalId
+   * * external_id
    * * source
    * * uri
-   * * isHirable
-   * * createTime
-   * * updateTime
-   * * resumeHrxml
-   * * personNames
+   * * is_hirable
+   * * create_time
+   * * update_time
+   * * resume
+   * * person_names
    * * addresses
-   * * emailAddresses
-   * * phoneNumbers
-   * * personalUris
-   * * additionalContactInfo
-   * * employmentRecords
-   * * educationRecords
+   * * email_addresses
+   * * phone_numbers
+   * * personal_uris
+   * * additional_contact_info
+   * * employment_records
+   * * education_records
    * * skills
    * * projects
    * * publications
    * * patents
    * * certifications
-   * * recruitingNotes
-   * * customAttributes
-   * * groupId
+   * * recruiting_notes
+   * * custom_attributes
+   * * group_id
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -201,33 +197,32 @@ public boolean hasUpdateMask() { * * *
-   * Optional.
-   * A field mask to specify the profile fields to update.
+   * Optional. A field mask to specify the profile fields to update.
    * A full update is performed if it is unset.
    * Valid values are:
-   * * externalId
+   * * external_id
    * * source
    * * uri
-   * * isHirable
-   * * createTime
-   * * updateTime
-   * * resumeHrxml
-   * * personNames
+   * * is_hirable
+   * * create_time
+   * * update_time
+   * * resume
+   * * person_names
    * * addresses
-   * * emailAddresses
-   * * phoneNumbers
-   * * personalUris
-   * * additionalContactInfo
-   * * employmentRecords
-   * * educationRecords
+   * * email_addresses
+   * * phone_numbers
+   * * personal_uris
+   * * additional_contact_info
+   * * employment_records
+   * * education_records
    * * skills
    * * projects
    * * publications
    * * patents
    * * certifications
-   * * recruitingNotes
-   * * customAttributes
-   * * groupId
+   * * recruiting_notes
+   * * custom_attributes
+   * * group_id
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -239,33 +234,32 @@ public com.google.protobuf.FieldMask getUpdateMask() { * * *
-   * Optional.
-   * A field mask to specify the profile fields to update.
+   * Optional. A field mask to specify the profile fields to update.
    * A full update is performed if it is unset.
    * Valid values are:
-   * * externalId
+   * * external_id
    * * source
    * * uri
-   * * isHirable
-   * * createTime
-   * * updateTime
-   * * resumeHrxml
-   * * personNames
+   * * is_hirable
+   * * create_time
+   * * update_time
+   * * resume
+   * * person_names
    * * addresses
-   * * emailAddresses
-   * * phoneNumbers
-   * * personalUris
-   * * additionalContactInfo
-   * * employmentRecords
-   * * educationRecords
+   * * email_addresses
+   * * phone_numbers
+   * * personal_uris
+   * * additional_contact_info
+   * * employment_records
+   * * education_records
    * * skills
    * * projects
    * * publications
    * * patents
    * * certifications
-   * * recruitingNotes
-   * * customAttributes
-   * * groupId
+   * * recruiting_notes
+   * * custom_attributes
+   * * group_id
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -642,8 +636,7 @@ public Builder mergeFrom( * * *
-     * Required.
-     * Profile to be updated.
+     * Required. Profile to be updated.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -655,8 +648,7 @@ public boolean hasProfile() { * * *
-     * Required.
-     * Profile to be updated.
+     * Required. Profile to be updated.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -674,8 +666,7 @@ public com.google.cloud.talent.v4beta1.Profile getProfile() { * * *
-     * Required.
-     * Profile to be updated.
+     * Required. Profile to be updated.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -697,8 +688,7 @@ public Builder setProfile(com.google.cloud.talent.v4beta1.Profile value) { * * *
-     * Required.
-     * Profile to be updated.
+     * Required. Profile to be updated.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -717,8 +707,7 @@ public Builder setProfile(com.google.cloud.talent.v4beta1.Profile.Builder builde * * *
-     * Required.
-     * Profile to be updated.
+     * Required. Profile to be updated.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -744,8 +733,7 @@ public Builder mergeProfile(com.google.cloud.talent.v4beta1.Profile value) { * * *
-     * Required.
-     * Profile to be updated.
+     * Required. Profile to be updated.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -765,8 +753,7 @@ public Builder clearProfile() { * * *
-     * Required.
-     * Profile to be updated.
+     * Required. Profile to be updated.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -780,8 +767,7 @@ public com.google.cloud.talent.v4beta1.Profile.Builder getProfileBuilder() { * * *
-     * Required.
-     * Profile to be updated.
+     * Required. Profile to be updated.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -799,8 +785,7 @@ public com.google.cloud.talent.v4beta1.ProfileOrBuilder getProfileOrBuilder() { * * *
-     * Required.
-     * Profile to be updated.
+     * Required. Profile to be updated.
      * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -832,33 +817,32 @@ public com.google.cloud.talent.v4beta1.ProfileOrBuilder getProfileOrBuilder() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to update.
+     * Optional. A field mask to specify the profile fields to update.
      * A full update is performed if it is unset.
      * Valid values are:
-     * * externalId
+     * * external_id
      * * source
      * * uri
-     * * isHirable
-     * * createTime
-     * * updateTime
-     * * resumeHrxml
-     * * personNames
+     * * is_hirable
+     * * create_time
+     * * update_time
+     * * resume
+     * * person_names
      * * addresses
-     * * emailAddresses
-     * * phoneNumbers
-     * * personalUris
-     * * additionalContactInfo
-     * * employmentRecords
-     * * educationRecords
+     * * email_addresses
+     * * phone_numbers
+     * * personal_uris
+     * * additional_contact_info
+     * * employment_records
+     * * education_records
      * * skills
      * * projects
      * * publications
      * * patents
      * * certifications
-     * * recruitingNotes
-     * * customAttributes
-     * * groupId
+     * * recruiting_notes
+     * * custom_attributes
+     * * group_id
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -870,33 +854,32 @@ public boolean hasUpdateMask() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to update.
+     * Optional. A field mask to specify the profile fields to update.
      * A full update is performed if it is unset.
      * Valid values are:
-     * * externalId
+     * * external_id
      * * source
      * * uri
-     * * isHirable
-     * * createTime
-     * * updateTime
-     * * resumeHrxml
-     * * personNames
+     * * is_hirable
+     * * create_time
+     * * update_time
+     * * resume
+     * * person_names
      * * addresses
-     * * emailAddresses
-     * * phoneNumbers
-     * * personalUris
-     * * additionalContactInfo
-     * * employmentRecords
-     * * educationRecords
+     * * email_addresses
+     * * phone_numbers
+     * * personal_uris
+     * * additional_contact_info
+     * * employment_records
+     * * education_records
      * * skills
      * * projects
      * * publications
      * * patents
      * * certifications
-     * * recruitingNotes
-     * * customAttributes
-     * * groupId
+     * * recruiting_notes
+     * * custom_attributes
+     * * group_id
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -914,33 +897,32 @@ public com.google.protobuf.FieldMask getUpdateMask() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to update.
+     * Optional. A field mask to specify the profile fields to update.
      * A full update is performed if it is unset.
      * Valid values are:
-     * * externalId
+     * * external_id
      * * source
      * * uri
-     * * isHirable
-     * * createTime
-     * * updateTime
-     * * resumeHrxml
-     * * personNames
+     * * is_hirable
+     * * create_time
+     * * update_time
+     * * resume
+     * * person_names
      * * addresses
-     * * emailAddresses
-     * * phoneNumbers
-     * * personalUris
-     * * additionalContactInfo
-     * * employmentRecords
-     * * educationRecords
+     * * email_addresses
+     * * phone_numbers
+     * * personal_uris
+     * * additional_contact_info
+     * * employment_records
+     * * education_records
      * * skills
      * * projects
      * * publications
      * * patents
      * * certifications
-     * * recruitingNotes
-     * * customAttributes
-     * * groupId
+     * * recruiting_notes
+     * * custom_attributes
+     * * group_id
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -962,33 +944,32 @@ public Builder setUpdateMask(com.google.protobuf.FieldMask value) { * * *
-     * Optional.
-     * A field mask to specify the profile fields to update.
+     * Optional. A field mask to specify the profile fields to update.
      * A full update is performed if it is unset.
      * Valid values are:
-     * * externalId
+     * * external_id
      * * source
      * * uri
-     * * isHirable
-     * * createTime
-     * * updateTime
-     * * resumeHrxml
-     * * personNames
+     * * is_hirable
+     * * create_time
+     * * update_time
+     * * resume
+     * * person_names
      * * addresses
-     * * emailAddresses
-     * * phoneNumbers
-     * * personalUris
-     * * additionalContactInfo
-     * * employmentRecords
-     * * educationRecords
+     * * email_addresses
+     * * phone_numbers
+     * * personal_uris
+     * * additional_contact_info
+     * * employment_records
+     * * education_records
      * * skills
      * * projects
      * * publications
      * * patents
      * * certifications
-     * * recruitingNotes
-     * * customAttributes
-     * * groupId
+     * * recruiting_notes
+     * * custom_attributes
+     * * group_id
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -1007,33 +988,32 @@ public Builder setUpdateMask(com.google.protobuf.FieldMask.Builder builderForVal * * *
-     * Optional.
-     * A field mask to specify the profile fields to update.
+     * Optional. A field mask to specify the profile fields to update.
      * A full update is performed if it is unset.
      * Valid values are:
-     * * externalId
+     * * external_id
      * * source
      * * uri
-     * * isHirable
-     * * createTime
-     * * updateTime
-     * * resumeHrxml
-     * * personNames
+     * * is_hirable
+     * * create_time
+     * * update_time
+     * * resume
+     * * person_names
      * * addresses
-     * * emailAddresses
-     * * phoneNumbers
-     * * personalUris
-     * * additionalContactInfo
-     * * employmentRecords
-     * * educationRecords
+     * * email_addresses
+     * * phone_numbers
+     * * personal_uris
+     * * additional_contact_info
+     * * employment_records
+     * * education_records
      * * skills
      * * projects
      * * publications
      * * patents
      * * certifications
-     * * recruitingNotes
-     * * customAttributes
-     * * groupId
+     * * recruiting_notes
+     * * custom_attributes
+     * * group_id
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -1057,33 +1037,32 @@ public Builder mergeUpdateMask(com.google.protobuf.FieldMask value) { * * *
-     * Optional.
-     * A field mask to specify the profile fields to update.
+     * Optional. A field mask to specify the profile fields to update.
      * A full update is performed if it is unset.
      * Valid values are:
-     * * externalId
+     * * external_id
      * * source
      * * uri
-     * * isHirable
-     * * createTime
-     * * updateTime
-     * * resumeHrxml
-     * * personNames
+     * * is_hirable
+     * * create_time
+     * * update_time
+     * * resume
+     * * person_names
      * * addresses
-     * * emailAddresses
-     * * phoneNumbers
-     * * personalUris
-     * * additionalContactInfo
-     * * employmentRecords
-     * * educationRecords
+     * * email_addresses
+     * * phone_numbers
+     * * personal_uris
+     * * additional_contact_info
+     * * employment_records
+     * * education_records
      * * skills
      * * projects
      * * publications
      * * patents
      * * certifications
-     * * recruitingNotes
-     * * customAttributes
-     * * groupId
+     * * recruiting_notes
+     * * custom_attributes
+     * * group_id
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -1103,33 +1082,32 @@ public Builder clearUpdateMask() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to update.
+     * Optional. A field mask to specify the profile fields to update.
      * A full update is performed if it is unset.
      * Valid values are:
-     * * externalId
+     * * external_id
      * * source
      * * uri
-     * * isHirable
-     * * createTime
-     * * updateTime
-     * * resumeHrxml
-     * * personNames
+     * * is_hirable
+     * * create_time
+     * * update_time
+     * * resume
+     * * person_names
      * * addresses
-     * * emailAddresses
-     * * phoneNumbers
-     * * personalUris
-     * * additionalContactInfo
-     * * employmentRecords
-     * * educationRecords
+     * * email_addresses
+     * * phone_numbers
+     * * personal_uris
+     * * additional_contact_info
+     * * employment_records
+     * * education_records
      * * skills
      * * projects
      * * publications
      * * patents
      * * certifications
-     * * recruitingNotes
-     * * customAttributes
-     * * groupId
+     * * recruiting_notes
+     * * custom_attributes
+     * * group_id
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -1143,33 +1121,32 @@ public com.google.protobuf.FieldMask.Builder getUpdateMaskBuilder() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to update.
+     * Optional. A field mask to specify the profile fields to update.
      * A full update is performed if it is unset.
      * Valid values are:
-     * * externalId
+     * * external_id
      * * source
      * * uri
-     * * isHirable
-     * * createTime
-     * * updateTime
-     * * resumeHrxml
-     * * personNames
+     * * is_hirable
+     * * create_time
+     * * update_time
+     * * resume
+     * * person_names
      * * addresses
-     * * emailAddresses
-     * * phoneNumbers
-     * * personalUris
-     * * additionalContactInfo
-     * * employmentRecords
-     * * educationRecords
+     * * email_addresses
+     * * phone_numbers
+     * * personal_uris
+     * * additional_contact_info
+     * * employment_records
+     * * education_records
      * * skills
      * * projects
      * * publications
      * * patents
      * * certifications
-     * * recruitingNotes
-     * * customAttributes
-     * * groupId
+     * * recruiting_notes
+     * * custom_attributes
+     * * group_id
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -1187,33 +1164,32 @@ public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() { * * *
-     * Optional.
-     * A field mask to specify the profile fields to update.
+     * Optional. A field mask to specify the profile fields to update.
      * A full update is performed if it is unset.
      * Valid values are:
-     * * externalId
+     * * external_id
      * * source
      * * uri
-     * * isHirable
-     * * createTime
-     * * updateTime
-     * * resumeHrxml
-     * * personNames
+     * * is_hirable
+     * * create_time
+     * * update_time
+     * * resume
+     * * person_names
      * * addresses
-     * * emailAddresses
-     * * phoneNumbers
-     * * personalUris
-     * * additionalContactInfo
-     * * employmentRecords
-     * * educationRecords
+     * * email_addresses
+     * * phone_numbers
+     * * personal_uris
+     * * additional_contact_info
+     * * employment_records
+     * * education_records
      * * skills
      * * projects
      * * publications
      * * patents
      * * certifications
-     * * recruitingNotes
-     * * customAttributes
-     * * groupId
+     * * recruiting_notes
+     * * custom_attributes
+     * * group_id
      * 
* * .google.protobuf.FieldMask update_mask = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateProfileRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateProfileRequestOrBuilder.java index 61424cccf504..cc9368dcab1a 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateProfileRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateProfileRequestOrBuilder.java @@ -12,8 +12,7 @@ public interface UpdateProfileRequestOrBuilder * * *
-   * Required.
-   * Profile to be updated.
+   * Required. Profile to be updated.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -23,8 +22,7 @@ public interface UpdateProfileRequestOrBuilder * * *
-   * Required.
-   * Profile to be updated.
+   * Required. Profile to be updated.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -34,8 +32,7 @@ public interface UpdateProfileRequestOrBuilder * * *
-   * Required.
-   * Profile to be updated.
+   * Required. Profile to be updated.
    * 
* * .google.cloud.talent.v4beta1.Profile profile = 1; @@ -46,33 +43,32 @@ public interface UpdateProfileRequestOrBuilder * * *
-   * Optional.
-   * A field mask to specify the profile fields to update.
+   * Optional. A field mask to specify the profile fields to update.
    * A full update is performed if it is unset.
    * Valid values are:
-   * * externalId
+   * * external_id
    * * source
    * * uri
-   * * isHirable
-   * * createTime
-   * * updateTime
-   * * resumeHrxml
-   * * personNames
+   * * is_hirable
+   * * create_time
+   * * update_time
+   * * resume
+   * * person_names
    * * addresses
-   * * emailAddresses
-   * * phoneNumbers
-   * * personalUris
-   * * additionalContactInfo
-   * * employmentRecords
-   * * educationRecords
+   * * email_addresses
+   * * phone_numbers
+   * * personal_uris
+   * * additional_contact_info
+   * * employment_records
+   * * education_records
    * * skills
    * * projects
    * * publications
    * * patents
    * * certifications
-   * * recruitingNotes
-   * * customAttributes
-   * * groupId
+   * * recruiting_notes
+   * * custom_attributes
+   * * group_id
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -82,33 +78,32 @@ public interface UpdateProfileRequestOrBuilder * * *
-   * Optional.
-   * A field mask to specify the profile fields to update.
+   * Optional. A field mask to specify the profile fields to update.
    * A full update is performed if it is unset.
    * Valid values are:
-   * * externalId
+   * * external_id
    * * source
    * * uri
-   * * isHirable
-   * * createTime
-   * * updateTime
-   * * resumeHrxml
-   * * personNames
+   * * is_hirable
+   * * create_time
+   * * update_time
+   * * resume
+   * * person_names
    * * addresses
-   * * emailAddresses
-   * * phoneNumbers
-   * * personalUris
-   * * additionalContactInfo
-   * * employmentRecords
-   * * educationRecords
+   * * email_addresses
+   * * phone_numbers
+   * * personal_uris
+   * * additional_contact_info
+   * * employment_records
+   * * education_records
    * * skills
    * * projects
    * * publications
    * * patents
    * * certifications
-   * * recruitingNotes
-   * * customAttributes
-   * * groupId
+   * * recruiting_notes
+   * * custom_attributes
+   * * group_id
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -118,33 +113,32 @@ public interface UpdateProfileRequestOrBuilder * * *
-   * Optional.
-   * A field mask to specify the profile fields to update.
+   * Optional. A field mask to specify the profile fields to update.
    * A full update is performed if it is unset.
    * Valid values are:
-   * * externalId
+   * * external_id
    * * source
    * * uri
-   * * isHirable
-   * * createTime
-   * * updateTime
-   * * resumeHrxml
-   * * personNames
+   * * is_hirable
+   * * create_time
+   * * update_time
+   * * resume
+   * * person_names
    * * addresses
-   * * emailAddresses
-   * * phoneNumbers
-   * * personalUris
-   * * additionalContactInfo
-   * * employmentRecords
-   * * educationRecords
+   * * email_addresses
+   * * phone_numbers
+   * * personal_uris
+   * * additional_contact_info
+   * * employment_records
+   * * education_records
    * * skills
    * * projects
    * * publications
    * * patents
    * * certifications
-   * * recruitingNotes
-   * * customAttributes
-   * * groupId
+   * * recruiting_notes
+   * * custom_attributes
+   * * group_id
    * 
* * .google.protobuf.FieldMask update_mask = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateTenantRequest.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateTenantRequest.java index a6fb2694c243..99561472cad5 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateTenantRequest.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateTenantRequest.java @@ -119,8 +119,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required.
-   * The tenant resource to replace the current resource in the system.
+   * Required. The tenant resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -132,8 +132,8 @@ public boolean hasTenant() { * * *
-   * Required.
-   * The tenant resource to replace the current resource in the system.
+   * Required. The tenant resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -145,8 +145,8 @@ public com.google.cloud.talent.v4beta1.Tenant getTenant() { * * *
-   * Required.
-   * The tenant resource to replace the current resource in the system.
+   * Required. The tenant resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -163,10 +163,14 @@ public com.google.cloud.talent.v4beta1.TenantOrBuilder getTenantOrBuilder() { *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+   * is provided, only the specified fields in
+   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the tenant fields to be updated. Only
-   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -180,10 +184,14 @@ public boolean hasUpdateMask() { *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+   * is provided, only the specified fields in
+   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the tenant fields to be updated. Only
-   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -197,10 +205,14 @@ public com.google.protobuf.FieldMask getUpdateMask() { *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+   * is provided, only the specified fields in
+   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the tenant fields to be updated. Only
-   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -577,8 +589,8 @@ public Builder mergeFrom( * * *
-     * Required.
-     * The tenant resource to replace the current resource in the system.
+     * Required. The tenant resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -590,8 +602,8 @@ public boolean hasTenant() { * * *
-     * Required.
-     * The tenant resource to replace the current resource in the system.
+     * Required. The tenant resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -609,8 +621,8 @@ public com.google.cloud.talent.v4beta1.Tenant getTenant() { * * *
-     * Required.
-     * The tenant resource to replace the current resource in the system.
+     * Required. The tenant resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -632,8 +644,8 @@ public Builder setTenant(com.google.cloud.talent.v4beta1.Tenant value) { * * *
-     * Required.
-     * The tenant resource to replace the current resource in the system.
+     * Required. The tenant resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -652,8 +664,8 @@ public Builder setTenant(com.google.cloud.talent.v4beta1.Tenant.Builder builderF * * *
-     * Required.
-     * The tenant resource to replace the current resource in the system.
+     * Required. The tenant resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -679,8 +691,8 @@ public Builder mergeTenant(com.google.cloud.talent.v4beta1.Tenant value) { * * *
-     * Required.
-     * The tenant resource to replace the current resource in the system.
+     * Required. The tenant resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -700,8 +712,8 @@ public Builder clearTenant() { * * *
-     * Required.
-     * The tenant resource to replace the current resource in the system.
+     * Required. The tenant resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -715,8 +727,8 @@ public com.google.cloud.talent.v4beta1.Tenant.Builder getTenantBuilder() { * * *
-     * Required.
-     * The tenant resource to replace the current resource in the system.
+     * Required. The tenant resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -734,8 +746,8 @@ public com.google.cloud.talent.v4beta1.TenantOrBuilder getTenantOrBuilder() { * * *
-     * Required.
-     * The tenant resource to replace the current resource in the system.
+     * Required. The tenant resource to replace the current resource in the
+     * system.
      * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -769,10 +781,14 @@ public com.google.cloud.talent.v4beta1.TenantOrBuilder getTenantOrBuilder() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+     * is provided, only the specified fields in
+     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the tenant fields to be updated. Only
-     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -786,10 +802,14 @@ public boolean hasUpdateMask() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+     * is provided, only the specified fields in
+     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the tenant fields to be updated. Only
-     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -809,10 +829,14 @@ public com.google.protobuf.FieldMask getUpdateMask() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+     * is provided, only the specified fields in
+     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the tenant fields to be updated. Only
-     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -836,10 +860,14 @@ public Builder setUpdateMask(com.google.protobuf.FieldMask value) { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+     * is provided, only the specified fields in
+     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the tenant fields to be updated. Only
-     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -860,10 +888,14 @@ public Builder setUpdateMask(com.google.protobuf.FieldMask.Builder builderForVal *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+     * is provided, only the specified fields in
+     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the tenant fields to be updated. Only
-     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -889,10 +921,14 @@ public Builder mergeUpdateMask(com.google.protobuf.FieldMask value) { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+     * is provided, only the specified fields in
+     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the tenant fields to be updated. Only
-     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -914,10 +950,14 @@ public Builder clearUpdateMask() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+     * is provided, only the specified fields in
+     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the tenant fields to be updated. Only
-     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -933,10 +973,14 @@ public com.google.protobuf.FieldMask.Builder getUpdateMaskBuilder() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+     * is provided, only the specified fields in
+     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the tenant fields to be updated. Only
-     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -956,10 +1000,14 @@ public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() { *
      * Optional but strongly recommended for the best service
      * experience.
-     * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+     * If
+     * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+     * is provided, only the specified fields in
+     * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+     * updated. Otherwise all the fields are updated.
      * A field mask to specify the tenant fields to be updated. Only
-     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+     * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+     * supported.
      * 
* * .google.protobuf.FieldMask update_mask = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateTenantRequestOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateTenantRequestOrBuilder.java index ca1bdf2396c9..99cc48d82806 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateTenantRequestOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/UpdateTenantRequestOrBuilder.java @@ -12,8 +12,8 @@ public interface UpdateTenantRequestOrBuilder * * *
-   * Required.
-   * The tenant resource to replace the current resource in the system.
+   * Required. The tenant resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -23,8 +23,8 @@ public interface UpdateTenantRequestOrBuilder * * *
-   * Required.
-   * The tenant resource to replace the current resource in the system.
+   * Required. The tenant resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -34,8 +34,8 @@ public interface UpdateTenantRequestOrBuilder * * *
-   * Required.
-   * The tenant resource to replace the current resource in the system.
+   * Required. The tenant resource to replace the current resource in the
+   * system.
    * 
* * .google.cloud.talent.v4beta1.Tenant tenant = 1; @@ -48,10 +48,14 @@ public interface UpdateTenantRequestOrBuilder *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+   * is provided, only the specified fields in
+   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the tenant fields to be updated. Only
-   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -63,10 +67,14 @@ public interface UpdateTenantRequestOrBuilder *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+   * is provided, only the specified fields in
+   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the tenant fields to be updated. Only
-   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; @@ -78,10 +86,14 @@ public interface UpdateTenantRequestOrBuilder *
    * Optional but strongly recommended for the best service
    * experience.
-   * If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in
-   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated.
+   * If
+   * [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask]
+   * is provided, only the specified fields in
+   * [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are
+   * updated. Otherwise all the fields are updated.
    * A field mask to specify the tenant fields to be updated. Only
-   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported.
+   * top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are
+   * supported.
    * 
* * .google.protobuf.FieldMask update_mask = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/WorkExperienceFilter.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/WorkExperienceFilter.java index ccf526e3ce55..825d78c357f7 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/WorkExperienceFilter.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/WorkExperienceFilter.java @@ -124,8 +124,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Optional.
-   * The minimum duration of the work experience (inclusive).
+   * Optional. The minimum duration of the work experience (inclusive).
    * 
* * .google.protobuf.Duration min_experience = 1; @@ -137,8 +136,7 @@ public boolean hasMinExperience() { * * *
-   * Optional.
-   * The minimum duration of the work experience (inclusive).
+   * Optional. The minimum duration of the work experience (inclusive).
    * 
* * .google.protobuf.Duration min_experience = 1; @@ -152,8 +150,7 @@ public com.google.protobuf.Duration getMinExperience() { * * *
-   * Optional.
-   * The minimum duration of the work experience (inclusive).
+   * Optional. The minimum duration of the work experience (inclusive).
    * 
* * .google.protobuf.Duration min_experience = 1; @@ -168,8 +165,7 @@ public com.google.protobuf.DurationOrBuilder getMinExperienceOrBuilder() { * * *
-   * Optional.
-   * The maximum duration of the work experience (exclusive).
+   * Optional. The maximum duration of the work experience (exclusive).
    * 
* * .google.protobuf.Duration max_experience = 2; @@ -181,8 +177,7 @@ public boolean hasMaxExperience() { * * *
-   * Optional.
-   * The maximum duration of the work experience (exclusive).
+   * Optional. The maximum duration of the work experience (exclusive).
    * 
* * .google.protobuf.Duration max_experience = 2; @@ -196,8 +191,7 @@ public com.google.protobuf.Duration getMaxExperience() { * * *
-   * Optional.
-   * The maximum duration of the work experience (exclusive).
+   * Optional. The maximum duration of the work experience (exclusive).
    * 
* * .google.protobuf.Duration max_experience = 2; @@ -580,8 +574,7 @@ public Builder mergeFrom( * * *
-     * Optional.
-     * The minimum duration of the work experience (inclusive).
+     * Optional. The minimum duration of the work experience (inclusive).
      * 
* * .google.protobuf.Duration min_experience = 1; @@ -593,8 +586,7 @@ public boolean hasMinExperience() { * * *
-     * Optional.
-     * The minimum duration of the work experience (inclusive).
+     * Optional. The minimum duration of the work experience (inclusive).
      * 
* * .google.protobuf.Duration min_experience = 1; @@ -612,8 +604,7 @@ public com.google.protobuf.Duration getMinExperience() { * * *
-     * Optional.
-     * The minimum duration of the work experience (inclusive).
+     * Optional. The minimum duration of the work experience (inclusive).
      * 
* * .google.protobuf.Duration min_experience = 1; @@ -635,8 +626,7 @@ public Builder setMinExperience(com.google.protobuf.Duration value) { * * *
-     * Optional.
-     * The minimum duration of the work experience (inclusive).
+     * Optional. The minimum duration of the work experience (inclusive).
      * 
* * .google.protobuf.Duration min_experience = 1; @@ -655,8 +645,7 @@ public Builder setMinExperience(com.google.protobuf.Duration.Builder builderForV * * *
-     * Optional.
-     * The minimum duration of the work experience (inclusive).
+     * Optional. The minimum duration of the work experience (inclusive).
      * 
* * .google.protobuf.Duration min_experience = 1; @@ -682,8 +671,7 @@ public Builder mergeMinExperience(com.google.protobuf.Duration value) { * * *
-     * Optional.
-     * The minimum duration of the work experience (inclusive).
+     * Optional. The minimum duration of the work experience (inclusive).
      * 
* * .google.protobuf.Duration min_experience = 1; @@ -703,8 +691,7 @@ public Builder clearMinExperience() { * * *
-     * Optional.
-     * The minimum duration of the work experience (inclusive).
+     * Optional. The minimum duration of the work experience (inclusive).
      * 
* * .google.protobuf.Duration min_experience = 1; @@ -718,8 +705,7 @@ public com.google.protobuf.Duration.Builder getMinExperienceBuilder() { * * *
-     * Optional.
-     * The minimum duration of the work experience (inclusive).
+     * Optional. The minimum duration of the work experience (inclusive).
      * 
* * .google.protobuf.Duration min_experience = 1; @@ -737,8 +723,7 @@ public com.google.protobuf.DurationOrBuilder getMinExperienceOrBuilder() { * * *
-     * Optional.
-     * The minimum duration of the work experience (inclusive).
+     * Optional. The minimum duration of the work experience (inclusive).
      * 
* * .google.protobuf.Duration min_experience = 1; @@ -770,8 +755,7 @@ public com.google.protobuf.DurationOrBuilder getMinExperienceOrBuilder() { * * *
-     * Optional.
-     * The maximum duration of the work experience (exclusive).
+     * Optional. The maximum duration of the work experience (exclusive).
      * 
* * .google.protobuf.Duration max_experience = 2; @@ -783,8 +767,7 @@ public boolean hasMaxExperience() { * * *
-     * Optional.
-     * The maximum duration of the work experience (exclusive).
+     * Optional. The maximum duration of the work experience (exclusive).
      * 
* * .google.protobuf.Duration max_experience = 2; @@ -802,8 +785,7 @@ public com.google.protobuf.Duration getMaxExperience() { * * *
-     * Optional.
-     * The maximum duration of the work experience (exclusive).
+     * Optional. The maximum duration of the work experience (exclusive).
      * 
* * .google.protobuf.Duration max_experience = 2; @@ -825,8 +807,7 @@ public Builder setMaxExperience(com.google.protobuf.Duration value) { * * *
-     * Optional.
-     * The maximum duration of the work experience (exclusive).
+     * Optional. The maximum duration of the work experience (exclusive).
      * 
* * .google.protobuf.Duration max_experience = 2; @@ -845,8 +826,7 @@ public Builder setMaxExperience(com.google.protobuf.Duration.Builder builderForV * * *
-     * Optional.
-     * The maximum duration of the work experience (exclusive).
+     * Optional. The maximum duration of the work experience (exclusive).
      * 
* * .google.protobuf.Duration max_experience = 2; @@ -872,8 +852,7 @@ public Builder mergeMaxExperience(com.google.protobuf.Duration value) { * * *
-     * Optional.
-     * The maximum duration of the work experience (exclusive).
+     * Optional. The maximum duration of the work experience (exclusive).
      * 
* * .google.protobuf.Duration max_experience = 2; @@ -893,8 +872,7 @@ public Builder clearMaxExperience() { * * *
-     * Optional.
-     * The maximum duration of the work experience (exclusive).
+     * Optional. The maximum duration of the work experience (exclusive).
      * 
* * .google.protobuf.Duration max_experience = 2; @@ -908,8 +886,7 @@ public com.google.protobuf.Duration.Builder getMaxExperienceBuilder() { * * *
-     * Optional.
-     * The maximum duration of the work experience (exclusive).
+     * Optional. The maximum duration of the work experience (exclusive).
      * 
* * .google.protobuf.Duration max_experience = 2; @@ -927,8 +904,7 @@ public com.google.protobuf.DurationOrBuilder getMaxExperienceOrBuilder() { * * *
-     * Optional.
-     * The maximum duration of the work experience (exclusive).
+     * Optional. The maximum duration of the work experience (exclusive).
      * 
* * .google.protobuf.Duration max_experience = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/WorkExperienceFilterOrBuilder.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/WorkExperienceFilterOrBuilder.java index 7efd450e342b..f9e07b1b691c 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/WorkExperienceFilterOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/WorkExperienceFilterOrBuilder.java @@ -12,8 +12,7 @@ public interface WorkExperienceFilterOrBuilder * * *
-   * Optional.
-   * The minimum duration of the work experience (inclusive).
+   * Optional. The minimum duration of the work experience (inclusive).
    * 
* * .google.protobuf.Duration min_experience = 1; @@ -23,8 +22,7 @@ public interface WorkExperienceFilterOrBuilder * * *
-   * Optional.
-   * The minimum duration of the work experience (inclusive).
+   * Optional. The minimum duration of the work experience (inclusive).
    * 
* * .google.protobuf.Duration min_experience = 1; @@ -34,8 +32,7 @@ public interface WorkExperienceFilterOrBuilder * * *
-   * Optional.
-   * The minimum duration of the work experience (inclusive).
+   * Optional. The minimum duration of the work experience (inclusive).
    * 
* * .google.protobuf.Duration min_experience = 1; @@ -46,8 +43,7 @@ public interface WorkExperienceFilterOrBuilder * * *
-   * Optional.
-   * The maximum duration of the work experience (exclusive).
+   * Optional. The maximum duration of the work experience (exclusive).
    * 
* * .google.protobuf.Duration max_experience = 2; @@ -57,8 +53,7 @@ public interface WorkExperienceFilterOrBuilder * * *
-   * Optional.
-   * The maximum duration of the work experience (exclusive).
+   * Optional. The maximum duration of the work experience (exclusive).
    * 
* * .google.protobuf.Duration max_experience = 2; @@ -68,8 +63,7 @@ public interface WorkExperienceFilterOrBuilder * * *
-   * Optional.
-   * The maximum duration of the work experience (exclusive).
+   * Optional. The maximum duration of the work experience (exclusive).
    * 
* * .google.protobuf.Duration max_experience = 2; diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/application.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/application.proto index c09efae00d6f..30ce2fed8d1e 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/application.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/application.proto @@ -97,9 +97,7 @@ message Application { // "projects/api-test-project/tenants/foo/profiles/bar/applications/baz". string name = 1; - // Required. - // - // Client side application identifier, used to uniquely identify the + // Required. Client side application identifier, used to uniquely identify the // application. // // The maximum number of allowed characters is 255. @@ -130,57 +128,40 @@ message Application { // for example, "projects/api-test-project/tenants/foo/companies/bar". string company = 5; - // Optional. - // - // The application date. + // Optional. The application date. google.type.Date application_date = 7; - // Required. - // - // What is the most recent stage of the application (that is, new, screen, - // send cv, hired, finished work)? This field is intentionally not + // Required. What is the most recent stage of the application (that is, new, + // screen, send cv, hired, finished work)? This field is intentionally not // comprehensive of every possible status, but instead, represents statuses // that would be used to indicate to the ML models good / bad matches. ApplicationStage stage = 11; - // Optional. - // - // The application state. + // Optional. The application state. ApplicationState state = 13; - // Optional. - // - // All interviews (screen, onsite, and so on) conducted as part of this - // application (includes details such as user conducting the interview, + // Optional. All interviews (screen, onsite, and so on) conducted as part of + // this application (includes details such as user conducting the interview, // timestamp, feedback, and so on). repeated Interview interviews = 16; - // Optional. - // - // If the candidate is referred by a employee. + // Optional. If the candidate is referred by a employee. google.protobuf.BoolValue referral = 18; - // Required. - // - // Reflects the time that the application was created. + // Required. Reflects the time that the application was created. google.protobuf.Timestamp create_time = 19; - // Optional. - // - // The last update timestamp. + // Optional. The last update timestamp. google.protobuf.Timestamp update_time = 20; - // Optional. - // - // Free text reason behind the recruitement outcome (for example, reason for - // withdraw / reject, reason for an unsuccessful finish, and so on). + // Optional. Free text reason behind the recruitement outcome (for example, + // reason for withdraw / reject, reason for an unsuccessful finish, and so + // on). // // Number of characters allowed is 100. string outcome_notes = 21; - // Optional. - // - // Outcome positiveness shows how positive the outcome is. + // Optional. Outcome positiveness shows how positive the outcome is. Outcome outcome = 22; // Output only. Indicates whether this job application is a match to diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/application_service.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/application_service.proto index 4ff4a026f352..48e4f9500d22 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/application_service.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/application_service.proto @@ -18,6 +18,7 @@ syntax = "proto3"; package google.cloud.talent.v4beta1; import "google/api/annotations.proto"; +import "google/api/client.proto"; import "google/cloud/talent/v4beta1/application.proto"; import "google/cloud/talent/v4beta1/common.proto"; import "google/protobuf/empty.proto"; @@ -32,6 +33,11 @@ option objc_class_prefix = "CTS"; // A service that handles application management, including CRUD and // enumeration. service ApplicationService { + option (google.api.default_host) = "jobs.googleapis.com"; + option (google.api.oauth_scopes) = + "https://www.googleapis.com/auth/cloud-platform," + "https://www.googleapis.com/auth/jobs"; + // Creates a new application entity. rpc CreateApplication(CreateApplicationRequest) returns (Application) { option (google.api.http) = { @@ -56,14 +62,16 @@ service ApplicationService { } // Deletes specified application. - rpc DeleteApplication(DeleteApplicationRequest) returns (google.protobuf.Empty) { + rpc DeleteApplication(DeleteApplicationRequest) + returns (google.protobuf.Empty) { option (google.api.http) = { delete: "/v4beta1/{name=projects/*/tenants/*/profiles/*/applications/*}" }; } // Lists all applications associated with the profile. - rpc ListApplications(ListApplicationsRequest) returns (ListApplicationsResponse) { + rpc ListApplications(ListApplicationsRequest) + returns (ListApplicationsResponse) { option (google.api.http) = { get: "/v4beta1/{parent=projects/*/tenants/*/profiles/*}/applications" }; @@ -72,26 +80,21 @@ service ApplicationService { // The Request of the CreateApplication method. message CreateApplicationRequest { - // Required. - // - // Resource name of the profile under which the application is created. + // Required. Resource name of the profile under which the application is + // created. // // The format is // "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for // example, "projects/test-project/tenants/test-tenant/profiles/test-profile". string parent = 1; - // Required. - // - // The application to be created. + // Required. The application to be created. Application application = 2; } // Request for getting a application by name. message GetApplicationRequest { - // Required. - // - // The resource name of the application to be retrieved. + // Required. The resource name of the application to be retrieved. // // The format is // "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}", @@ -102,27 +105,28 @@ message GetApplicationRequest { // Request for updating a specified application. message UpdateApplicationRequest { - // Required. - // - // The application resource to replace the current resource in the system. + // Required. The application resource to replace the current resource in the + // system. Application application = 1; // Optional but strongly recommended for the best service // experience. // - // If [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] is provided, only the specified fields in - // [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] are updated. Otherwise all the fields are updated. + // If + // [update_mask][google.cloud.talent.v4beta1.UpdateApplicationRequest.update_mask] + // is provided, only the specified fields in + // [application][google.cloud.talent.v4beta1.UpdateApplicationRequest.application] + // are updated. Otherwise all the fields are updated. // // A field mask to specify the application fields to be updated. Only - // top level fields of [Application][google.cloud.talent.v4beta1.Application] are supported. + // top level fields of [Application][google.cloud.talent.v4beta1.Application] + // are supported. google.protobuf.FieldMask update_mask = 2; } // Request to delete a application. message DeleteApplicationRequest { - // Required. - // - // The resource name of the application to be deleted. + // Required. The resource name of the application to be deleted. // // The format is // "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}", @@ -133,23 +137,18 @@ message DeleteApplicationRequest { // List applications for which the client has ACL visibility. message ListApplicationsRequest { - // Required. - // - // Resource name of the profile under which the application is created. + // Required. Resource name of the profile under which the application is + // created. // // The format is // "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for // example, "projects/test-project/tenants/test-tenant/profiles/test-profile". string parent = 1; - // Optional. - // - // The starting indicator from which to return results. + // Optional. The starting indicator from which to return results. string page_token = 2; - // Optional. - // - // The maximum number of applications to be returned, at most 100. + // Optional. The maximum number of applications to be returned, at most 100. // Default is 100 if a non-positive number is provided. int32 page_size = 3; } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/common.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/common.proto index 933ec28b1679..1513d795cd50 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/common.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/common.proto @@ -567,9 +567,7 @@ message RequestMetadata { // The maximum number of allowed characters is 255. string user_id = 3; - // Optional. - // - // If set to `true`, + // Optional. If set to `true`, // [domain][google.cloud.talent.v4beta1.RequestMetadata.domain], // [session_id][google.cloud.talent.v4beta1.RequestMetadata.session_id] and // [user_id][google.cloud.talent.v4beta1.RequestMetadata.user_id] are @@ -581,10 +579,8 @@ message RequestMetadata { // service experience. bool allow_missing_ids = 4; - // Optional. - // - // The type of device used by the job seeker at the time of the call to the - // service. + // Optional. The type of device used by the job seeker at the time of the call + // to the service. DeviceInfo device_info = 5; } @@ -627,14 +623,10 @@ message DeviceInfo { OTHER = 6; } - // Optional. - // - // Type of the device. + // Optional. Type of the device. DeviceType device_type = 1; - // Optional. - // - // A device-specific ID. The ID must be a unique identifier that + // Optional. A device-specific ID. The ID must be a unique identifier that // distinguishes the device from other devices. string id = 2; } @@ -669,10 +661,8 @@ message CustomAttribute { // supported. repeated int64 long_values = 2; - // Optional. - // - // If the `filterable` flag is true, custom field values are searchable. - // If false, values are not searchable. + // Optional. If the `filterable` flag is true, custom field values are + // searchable. If false, values are not searchable. // // Default is false. bool filterable = 3; @@ -715,17 +705,13 @@ message CompensationInfo { // times // [expected_units_per_year][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.expected_units_per_year]. message CompensationEntry { - // Optional. - // - // Compensation type. + // Optional. Compensation type. // // Default is // [CompensationType.COMPENSATION_TYPE_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.COMPENSATION_TYPE_UNSPECIFIED]. CompensationType type = 1; - // Optional. - // - // Frequency of the specified amount. + // Optional. Frequency of the specified amount. // // Default is // [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED]. @@ -735,27 +721,19 @@ message CompensationInfo { // // Compensation amount. It could be a fixed amount or a floating range. oneof compensation_amount { - // Optional. - // - // Compensation amount. + // Optional. Compensation amount. google.type.Money amount = 3; - // Optional. - // - // Compensation range. + // Optional. Compensation range. CompensationRange range = 4; } - // Optional. - // - // Compensation description. For example, could + // Optional. Compensation description. For example, could // indicate equity terms or provide additional context to an estimated // bonus. string description = 5; - // Optional. - // - // Expected number of units paid each year. If not specified, when + // Optional. Expected number of units paid each year. If not specified, when // [Job.employment_types][google.cloud.talent.v4beta1.Job.employment_types] // is FULLTIME, a default value is inferred based on // [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit]. @@ -770,19 +748,14 @@ message CompensationInfo { // Compensation range. message CompensationRange { - // Optional. - // - // The maximum amount of compensation. If left empty, the value is set - // to a maximal compensation value and the currency code is set to - // match the [currency code][google.type.Money.currency_code] of - // min_compensation. + // Optional. The maximum amount of compensation. If left empty, the value is + // set to a maximal compensation value and the currency code is set to match + // the [currency code][google.type.Money.currency_code] of min_compensation. google.type.Money max_compensation = 2; - // Optional. - // - // The minimum amount of compensation. If left empty, the value is set - // to zero and the currency code is set to match the - // [currency code][google.type.Money.currency_code] of max_compensation. + // Optional. The minimum amount of compensation. If left empty, the value is + // set to zero and the currency code is set to match the [currency + // code][google.type.Money.currency_code] of max_compensation. google.type.Money min_compensation = 1; } @@ -872,9 +845,7 @@ message CompensationInfo { OTHER_COMPENSATION_UNIT = 7; } - // Optional. - // - // Job compensation information. + // Optional. Job compensation information. // // At most one entry can be of type // [CompensationInfo.CompensationType.BASE][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.BASE], @@ -906,33 +877,23 @@ message CompensationInfo { // Resource that represents a license or certification. message Certification { - // Optional. - // - // Name of license or certification. + // Optional. Name of license or certification. // // Number of characters allowed is 100. string display_name = 1; - // Optional. - // - // Acquisition date or effective date of license or certification. + // Optional. Acquisition date or effective date of license or certification. google.type.Date acquire_date = 2; - // Optional. - // - // Expiration date of license of certification. + // Optional. Expiration date of license of certification. google.type.Date expire_date = 3; - // Optional. - // - // Authority of license, such as government. + // Optional. Authority of license, such as government. // // Number of characters allowed is 100. string authority = 4; - // Optional. - // - // Description of license or certification. + // Optional. Description of license or certification. // // Number of characters allowed is 100,000. string description = 5; @@ -940,29 +901,21 @@ message Certification { // Resource that represents a skill of a candidate. message Skill { - // Optional. - // - // Skill display name. + // Optional. Skill display name. // // For example, "Java", "Python". // // Number of characters allowed is 100. string display_name = 1; - // Optional. - // - // The last time this skill was used. + // Optional. The last time this skill was used. google.type.Date last_used_date = 2; - // Optional. - // - // Skill proficiency level which indicates how proficient the candidate is at - // this skill. + // Optional. Skill proficiency level which indicates how proficient the + // candidate is at this skill. SkillProficiencyLevel level = 3; - // Optional. - // - // A paragraph describes context of this skill. + // Optional. A paragraph describes context of this skill. // // Number of characters allowed is 100,000. string context = 4; @@ -977,15 +930,11 @@ message Skill { // Details of an interview. message Interview { - // Optional. - // - // The rating on this interview. + // Optional. The rating on this interview. Rating rating = 6; - // Required. - // - // The overall decision resulting from this interview (positive, negative, - // nuetral). + // Required. The overall decision resulting from this interview (positive, + // negative, nuetral). Outcome outcome = 7; } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/company.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/company.proto index 4c6712bd32f9..928a43822bf3 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/company.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/company.proto @@ -51,72 +51,52 @@ message Company { // example, "projects/api-test-project/companies/bar". string name = 1; - // Required. - // - // The display name of the company, for example, "Google, LLC". + // Required. The display name of the company, for example, "Google, LLC". string display_name = 2; - // Required. - // - // Client side company identifier, used to uniquely identify the + // Required. Client side company identifier, used to uniquely identify the // company. // // The maximum number of allowed characters is 255. string external_id = 3; - // Optional. - // - // The employer's company size. + // Optional. The employer's company size. CompanySize size = 4; - // Optional. - // - // The street address of the company's main headquarters, which may be - // different from the job location. The service attempts - // to geolocate the provided address, and populates a more specific - // location wherever possible in + // Optional. The street address of the company's main headquarters, which may + // be different from the job location. The service attempts to geolocate the + // provided address, and populates a more specific location wherever possible + // in // [DerivedInfo.headquarters_location][google.cloud.talent.v4beta1.Company.DerivedInfo.headquarters_location]. string headquarters_address = 5; - // Optional. - // - // Set to true if it is the hiring agency that post jobs for other + // Optional. Set to true if it is the hiring agency that post jobs for other // employers. // // Defaults to false if not provided. bool hiring_agency = 6; - // Optional. - // - // Equal Employment Opportunity legal disclaimer text to be + // Optional. Equal Employment Opportunity legal disclaimer text to be // associated with all jobs, and typically to be displayed in all // roles. // // The maximum number of allowed characters is 500. string eeo_text = 7; - // Optional. - // - // The URI representing the company's primary web site or home page, + // Optional. The URI representing the company's primary web site or home page, // for example, "https://www.google.com". // // The maximum number of allowed characters is 255. string website_uri = 8; - // Optional. - // - // The URI to employer's career site or careers page on the employer's web - // site, for example, "https://careers.google.com". + // Optional. The URI to employer's career site or careers page on the + // employer's web site, for example, "https://careers.google.com". string career_site_uri = 9; - // Optional. - // - // A URI that hosts the employer's company logo. + // Optional. A URI that hosts the employer's company logo. string image_uri = 10; - // Optional. - // - // A list of keys of filterable + // Optional. A list of keys of filterable // [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes], // whose corresponding `string_values` are used in keyword searches. Jobs with // `string_values` under these specified field keys are returned if any diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/company_service.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/company_service.proto index 8af4b9ad4bb9..1e48a46cd5b3 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/company_service.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/company_service.proto @@ -18,6 +18,7 @@ syntax = "proto3"; package google.cloud.talent.v4beta1; import "google/api/annotations.proto"; +import "google/api/client.proto"; import "google/cloud/talent/v4beta1/common.proto"; import "google/cloud/talent/v4beta1/company.proto"; import "google/protobuf/empty.proto"; @@ -31,6 +32,11 @@ option objc_class_prefix = "CTS"; // A service that handles company management, including CRUD and enumeration. service CompanyService { + option (google.api.default_host) = "jobs.googleapis.com"; + option (google.api.oauth_scopes) = + "https://www.googleapis.com/auth/cloud-platform," + "https://www.googleapis.com/auth/jobs"; + // Creates a new company entity. rpc CreateCompany(CreateCompanyRequest) returns (Company) { option (google.api.http) = { @@ -47,9 +53,7 @@ service CompanyService { rpc GetCompany(GetCompanyRequest) returns (Company) { option (google.api.http) = { get: "/v4beta1/{name=projects/*/tenants/*/companies/*}" - additional_bindings { - get: "/v4beta1/{name=projects/*/companies/*}" - } + additional_bindings { get: "/v4beta1/{name=projects/*/companies/*}" } }; } @@ -70,9 +74,7 @@ service CompanyService { rpc DeleteCompany(DeleteCompanyRequest) returns (google.protobuf.Empty) { option (google.api.http) = { delete: "/v4beta1/{name=projects/*/tenants/*/companies/*}" - additional_bindings { - delete: "/v4beta1/{name=projects/*/companies/*}" - } + additional_bindings { delete: "/v4beta1/{name=projects/*/companies/*}" } }; } @@ -80,18 +82,14 @@ service CompanyService { rpc ListCompanies(ListCompaniesRequest) returns (ListCompaniesResponse) { option (google.api.http) = { get: "/v4beta1/{parent=projects/*/tenants/*}/companies" - additional_bindings { - get: "/v4beta1/{parent=projects/*}/companies" - } + additional_bindings { get: "/v4beta1/{parent=projects/*}/companies" } }; } } // The Request of the CreateCompany method. message CreateCompanyRequest { - // Required. - // - // Resource name of the tenant under which the company is created. + // Required. Resource name of the tenant under which the company is created. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenant/foo". @@ -100,17 +98,13 @@ message CreateCompanyRequest { // example, "projects/api-test-project". string parent = 1; - // Required. - // - // The company to be created. + // Required. The company to be created. Company company = 2; } // Request for getting a company by name. message GetCompanyRequest { - // Required. - // - // The resource name of the company to be retrieved. + // Required. The resource name of the company to be retrieved. // // The format is // "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for @@ -123,27 +117,28 @@ message GetCompanyRequest { // Request for updating a specified company. message UpdateCompanyRequest { - // Required. - // - // The company resource to replace the current resource in the system. + // Required. The company resource to replace the current resource in the + // system. Company company = 1; // Optional but strongly recommended for the best service // experience. // - // If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in - // [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated. + // If + // [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] + // is provided, only the specified fields in + // [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are + // updated. Otherwise all the fields are updated. // // A field mask to specify the company fields to be updated. Only - // top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported. + // top level fields of [Company][google.cloud.talent.v4beta1.Company] are + // supported. google.protobuf.FieldMask update_mask = 2; } // Request to delete a company. message DeleteCompanyRequest { - // Required. - // - // The resource name of the company to be deleted. + // Required. The resource name of the company to be deleted. // // The format is // "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for @@ -156,9 +151,7 @@ message DeleteCompanyRequest { // List companies for which the client has ACL visibility. message ListCompaniesRequest { - // Required. - // - // Resource name of the tenant under which the company is created. + // Required. Resource name of the tenant under which the company is created. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenant/foo". @@ -167,25 +160,20 @@ message ListCompaniesRequest { // example, "projects/api-test-project". string parent = 1; - // Optional. - // - // The starting indicator from which to return results. + // Optional. The starting indicator from which to return results. string page_token = 2; - // Optional. - // - // The maximum number of companies to be returned, at most 100. + // Optional. The maximum number of companies to be returned, at most 100. // Default is 100 if a non-positive number is provided. int32 page_size = 3; - // Optional. - // - // Set to true if the companies requested must have open jobs. + // Optional. Set to true if the companies requested must have open jobs. // // Defaults to false. // - // If true, at most [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of companies are fetched, among which - // only those with open jobs are returned. + // If true, at most + // [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of + // companies are fetched, among which only those with open jobs are returned. bool require_open_jobs = 4; } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/completion_service.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/completion_service.proto index af7df1c4ec3c..2b105c24beaf 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/completion_service.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/completion_service.proto @@ -18,6 +18,7 @@ syntax = "proto3"; package google.cloud.talent.v4beta1; import "google/api/annotations.proto"; +import "google/api/client.proto"; import "google/cloud/talent/v4beta1/common.proto"; option go_package = "google.golang.org/genproto/googleapis/cloud/talent/v4beta1;talent"; @@ -28,6 +29,11 @@ option objc_class_prefix = "CTS"; // A service handles auto completion. service Completion { + option (google.api.default_host) = "jobs.googleapis.com"; + option (google.api.oauth_scopes) = + "https://www.googleapis.com/auth/cloud-platform," + "https://www.googleapis.com/auth/jobs"; + // Completes the specified prefix with keyword suggestions. // Intended for use by a job search auto-complete search box. rpc CompleteQuery(CompleteQueryRequest) returns (CompleteQueryResponse) { @@ -70,9 +76,7 @@ message CompleteQueryRequest { COMBINED = 3; } - // Required. - // - // Resource name of tenant the completion is performed within. + // Required. Resource name of tenant the completion is performed within. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenant/foo". @@ -81,16 +85,12 @@ message CompleteQueryRequest { // example, "projects/api-test-project". string parent = 1; - // Required. - // - // The query used to generate suggestions. + // Required. The query used to generate suggestions. // // The maximum number of allowed characters is 255. string query = 2; - // Optional. - // - // The list of languages of the query. This is + // Optional. The list of languages of the query. This is // the BCP-47 language code, such as "en-US" or "sr-Latn". // For more information, see // [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47). @@ -118,16 +118,12 @@ message CompleteQueryRequest { // The maximum number of allowed characters is 255. repeated string language_codes = 3; - // Required. - // - // Completion result count. + // Required. Completion result count. // // The maximum allowed page size is 10. int32 page_size = 4; - // Optional. - // - // If provided, restricts completion to specified company. + // Optional. If provided, restricts completion to specified company. // // The format is // "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for @@ -137,15 +133,11 @@ message CompleteQueryRequest { // example, "projects/api-test-project/companies/bar". string company = 5; - // Optional. - // - // The scope of the completion. The defaults is + // Optional. The scope of the completion. The defaults is // [CompletionScope.PUBLIC][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionScope.PUBLIC]. CompletionScope scope = 6; - // Optional. - // - // The completion topic. The default is + // Optional. The completion topic. The default is // [CompletionType.COMBINED][google.cloud.talent.v4beta1.CompleteQueryRequest.CompletionType.COMBINED]. CompletionType type = 7; } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/event.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/event.proto index 5d2f893dcb6c..c8ea12581e22 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/event.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/event.proto @@ -28,7 +28,7 @@ option objc_class_prefix = "CTS"; // An event issued when an end user interacts with the application that // implements Cloud Talent Solution. Providing this information improves the -// quality of search and recommendation for the API clients, enabling the +// quality of results for the API clients, enabling the // service to perform optimally. The number of events sent must be consistent // with other calls, such as job searches, issued to the service by the client. message ClientEvent { @@ -38,14 +38,10 @@ message ClientEvent { // [ResponseMetadata.request_id][google.cloud.talent.v4beta1.ResponseMetadata.request_id]. string request_id = 1; - // Required. - // - // A unique identifier, generated by the client application. + // Required. A unique identifier, generated by the client application. string event_id = 2; - // Required. - // - // The timestamp of the event. + // Required. The timestamp of the event. google.protobuf.Timestamp create_time = 4; // Required. @@ -61,10 +57,8 @@ message ClientEvent { ProfileEvent profile_event = 6; } - // Optional. - // - // Notes about the event provided by recruiters or other users, for example, - // feedback on why a profile was bookmarked. + // Optional. Notes about the event provided by recruiters or other users, for + // example, feedback on why a profile was bookmarked. string event_notes = 9; } @@ -171,16 +165,12 @@ message JobEvent { INTERVIEW_GRANTED = 15; } - // Required. - // - // The type of the event (see + // Required. The type of the event (see // [JobEventType][google.cloud.talent.v4beta1.JobEvent.JobEventType]). JobEventType type = 1; - // Required. - // - // The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with - // this event. For example, if this is an + // Required. The [job name(s)][google.cloud.talent.v4beta1.Job.name] + // associated with this event. For example, if this is an // [impression][google.cloud.talent.v4beta1.JobEvent.JobEventType.IMPRESSION] // event, this field contains the identifiers of all jobs shown to the job // seeker. If this was a @@ -192,10 +182,8 @@ message JobEvent { // example, "projects/api-test-project/tenants/foo/jobs/1234". repeated string jobs = 2; - // Optional. - // - // The [profile name][google.cloud.talent.v4beta1.Profile.name] associated - // with this client event. + // Optional. The [profile name][google.cloud.talent.v4beta1.Profile.name] + // associated with this client event. // // The format is // "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", @@ -211,35 +199,102 @@ message ProfileEvent { // Default value. PROFILE_EVENT_TYPE_UNSPECIFIED = 0; - // The profile is displayed. + // Send this event when a + // [ProfileEvent.profiles][google.cloud.talent.v4beta1.ProfileEvent.profiles] + // meets all of the following criteria: + // * Was sent as a part of a result set for a CTS API call. + // * Was rendered in the end user's UI (that is, the + // [ProfileEvent.recruiter][google.cloud.talent.v4beta1.ProfileEvent.recruiter]). + // * That UI rendering was displayed in the end user's viewport for >=3 + // seconds. + // + // In other words, send this event when the end user of the CTS service + // actually saw a resulting profile in their viewport. + // + // To understand how to use this event, consider an example: + // + // * The customer's UI for interacting with CTS + // result sets is accessed by the end user through a web browser. + // * The UI calls for a page size of 15 candidates (that is, 15 candidates + // are rendered on each page of results). + // * However, the UI design calls for only 5 candidates to be shown at any + // given time in the viewport (that is, the end user can only see 5 results + // at any given time and needs to scroll up or down to view all 15 results). + // + // To render each page of results, the customer will send a + // request to CTS with a page size = 15. + // + // * User loads page #1 of results. + // * User scrolls down to expose results #1 - #5 and dwells on this view for + // 30 seconds. + // * Send an IMPRESSION event for result 1, 2, 3, 4, 5. + // * User scrolls down a bit, exposing results #2 - #6 in the viewport and + // dwells on this view for 5 minutes. + // * Send an IMPRESSION event for result 6. + // * User scrolls to the bottom of the page, with results #7 - #15 shown in + // the viewport for ~5 seconds each. + // * Specifically, NO IMPRESSION events are sent for result 7, 8, 9, 10, 11, + // 12, 13, 14, 15. + // * User clicks to the next page and loads page #2 of results. + // * Within 2 seconds, user scrolls to expose results #20 - #24 in the + // viewport and dwells on this view for 20 mins. + // * Send an IMPRESSION event for result 20, 21, 22, 23, 24 + // * User closes their browser window. IMPRESSION = 1; - // The profile is viewed. + // The VIEW event allows CTS to understand if a candidate's profile was + // viewed by an end user (that is, recruiter) of the system for >=3 seconds. + // This is critical to tracking product metrics and should be sent for every + // profile VIEW that happens in the customer's system. + // + // VIEW events should be sent whether an end user views a candidate's + // profile as a result of seeing that profile in the result set of a + // CTS API request or whether the end user + // views the profile for some other reason (that is, clicks to the + // candidate's profile in the ATS, and so on). + // + // For a VIEW that happens as a result of seeing the profile in + // a CTS API request's result set, the + // [ClientEvent.request_id][google.cloud.talent.v4beta1.ClientEvent.request_id] + // should be populated. If the VIEW happens for some other reason, the + // [requestId] should not be populated. + // + // This event requires a valid recruiter and one valid ID in profiles. + // + // To understand how to use this event, consider 2 examples in which a VIEW + // event should be sent: + // * End user makes a request to the CTS API for a result set. + // * Results for the request are shown to the end user. + // * End user clicks on one of the candidates that are shown as part of the + // results. + // * A VIEW event with the + // [ClientEvent.request_id][google.cloud.talent.v4beta1.ClientEvent.request_id] + // of the API call in the first step of this example is sent. + // + // * End user browses to a candidate's profile in the ATS. + // * A VIEW event without a + // [ClientEvent.request_id][google.cloud.talent.v4beta1.ClientEvent.request_id] + // is sent. VIEW = 2; // The profile is bookmarked. BOOKMARK = 3; } - // Required. - // - // Type of event. + // Required. Type of event. ProfileEventType type = 1; - // Required. - // - // The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] associated - // with this client event. + // Required. The [profile name(s)][google.cloud.talent.v4beta1.Profile.name] + // associated with this client event. // // The format is // "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", // for example, "projects/api-test-project/tenants/foo/profiles/bar". repeated string profiles = 2; - // Optional. - // - // The [job name(s)][google.cloud.talent.v4beta1.Job.name] associated with - // this client event. Leave it empty if the event isn't associated with a job. + // Optional. The [job name(s)][google.cloud.talent.v4beta1.Job.name] + // associated with this client event. Leave it empty if the event isn't + // associated with a job. // // The format is // "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/event_service.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/event_service.proto index d456336d9ac2..966632e57d2e 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/event_service.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/event_service.proto @@ -18,6 +18,7 @@ syntax = "proto3"; package google.cloud.talent.v4beta1; import "google/api/annotations.proto"; +import "google/api/client.proto"; import "google/cloud/talent/v4beta1/event.proto"; option go_package = "google.golang.org/genproto/googleapis/cloud/talent/v4beta1;talent"; @@ -28,6 +29,11 @@ option objc_class_prefix = "CTS"; // A service handles client event report. service EventService { + option (google.api.default_host) = "jobs.googleapis.com"; + option (google.api.oauth_scopes) = + "https://www.googleapis.com/auth/cloud-platform," + "https://www.googleapis.com/auth/jobs"; + // Report events issued when end user interacts with customer's application // that uses Cloud Talent Solution. You may inspect the created events in // [self service @@ -49,9 +55,7 @@ service EventService { // The report event request. message CreateClientEventRequest { - // Required. - // - // Resource name of the tenant under which the event is created. + // Required. Resource name of the tenant under which the event is created. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenant/foo". @@ -60,9 +64,7 @@ message CreateClientEventRequest { // example, "projects/api-test-project". string parent = 1; - // Required. - // - // Events issued when end user interacts with customer's application that - // uses Cloud Talent Solution. + // Required. Events issued when end user interacts with customer's application + // that uses Cloud Talent Solution. ClientEvent client_event = 2; } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/filters.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/filters.proto index d29fbcfdb8c6..0f86b2df6ccd 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/filters.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/filters.proto @@ -39,17 +39,13 @@ option objc_class_prefix = "CTS"; // // The query required to perform a search query. message JobQuery { - // Optional. - // - // The query string that matches against the job title, description, and - // location fields. + // Optional. The query string that matches against the job title, description, + // and location fields. // // The maximum number of allowed characters is 255. string query = 1; - // Optional. - // - // This filter specifies the company entities to search against. + // Optional. This filter specifies the company entities to search against. // // If a value isn't specified, jobs are searched for against all // companies. @@ -67,9 +63,7 @@ message JobQuery { // At most 20 company filters are allowed. repeated string companies = 2; - // Optional. - // - // The location filter specifies geo-regions containing the jobs to + // Optional. The location filter specifies geo-regions containing the jobs to // search against. See // [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] for more // information. @@ -85,11 +79,9 @@ message JobQuery { // At most 5 location filters are allowed. repeated LocationFilter location_filters = 3; - // Optional. - // - // The category filter specifies the categories of jobs to search against. - // See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for more - // information. + // Optional. The category filter specifies the categories of jobs to search + // against. See [JobCategory][google.cloud.talent.v4beta1.JobCategory] for + // more information. // // If a value isn't specified, jobs from any category are searched against. // @@ -97,9 +89,8 @@ message JobQuery { // categories are searched against. repeated JobCategory job_categories = 4; - // Optional. - // - // Allows filtering jobs by commute time with different travel methods (for + // Optional. Allows filtering jobs by commute time with different travel + // methods (for // example, driving or public transit). // // Note: This only works when you specify a @@ -110,9 +101,7 @@ message JobQuery { // Currently we don't support sorting by commute time. CommuteFilter commute_filter = 5; - // Optional. - // - // This filter specifies the exact company + // Optional. This filter specifies the exact company // [Company.display_name][google.cloud.talent.v4beta1.Company.display_name] of // the jobs to search against. // @@ -125,18 +114,14 @@ message JobQuery { // At most 20 company display name filters are allowed. repeated string company_display_names = 6; - // Optional. - // - // This search filter is applied only to + // Optional. This search filter is applied only to // [Job.compensation_info][google.cloud.talent.v4beta1.Job.compensation_info]. // For example, if the filter is specified as "Hourly job with per-hour // compensation > $15", only jobs meeting these criteria are searched. If a // filter isn't defined, all open jobs are searched. CompensationFilter compensation_filter = 7; - // Optional. - // - // This filter specifies a structured syntax to match against the + // Optional. This filter specifies a structured syntax to match against the // [Job.custom_attributes][google.cloud.talent.v4beta1.Job.custom_attributes] // marked as `filterable`. // @@ -161,19 +146,15 @@ message JobQuery { // driving_years > 10` string custom_attribute_filter = 8; - // Optional. - // - // This flag controls the spell-check feature. If false, the + // Optional. This flag controls the spell-check feature. If false, the // service attempts to correct a misspelled query, // for example, "enginee" is corrected to "engineer". // // Defaults to false: a spell check is performed. bool disable_spell_check = 9; - // Optional. - // - // The employment type filter specifies the employment type of jobs to - // search against, such as + // Optional. The employment type filter specifies the employment type of jobs + // to search against, such as // [EmploymentType.FULL_TIME][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME]. // // If a value isn't specified, jobs in the search results includes any @@ -183,9 +164,7 @@ message JobQuery { // any of the specified employment types. repeated EmploymentType employment_types = 10; - // Optional. - // - // This filter specifies the locale of jobs to search against, + // Optional. This filter specifies the locale of jobs to search against, // for example, "en-US". // // If a value isn't specified, the search results can contain jobs in any @@ -199,15 +178,12 @@ message JobQuery { // At most 10 language code filters are allowed. repeated string language_codes = 11; - // Optional. - // - // Jobs published within a range specified by this filter are searched - // against. + // Optional. Jobs published within a range specified by this filter are + // searched against. TimestampRange publish_time_range = 12; - // Optional. - // - // This filter specifies a list of job names to be excluded during search. + // Optional. This filter specifies a list of job names to be excluded during + // search. // // At most 400 excluded job names are allowed. repeated string excluded_jobs = 13; @@ -215,17 +191,13 @@ message JobQuery { // Filters to apply when performing the search query. message ProfileQuery { - // Optional. - // - // Keywords to match any text fields of profiles. + // Optional. Keywords to match any text fields of profiles. // // For example, "software engineer in Palo Alto". string query = 1; - // Optional. - // - // The location filter specifies geo-regions containing the profiles to - // search against. + // Optional. The location filter specifies geo-regions containing the profiles + // to search against. // // If a location filter isn't specified, profiles fitting the other search // criteria are retrieved regardless of where they're located. @@ -237,9 +209,7 @@ message ProfileQuery { // For example, search for profiles with addresses in "New York City". repeated LocationFilter location_filters = 2; - // Optional. - // - // Job title filter specifies job titles of profiles to match on. + // Optional. Job title filter specifies job titles of profiles to match on. // // If a job title isn't specified, profiles with any titles are retrieved. // @@ -253,9 +223,7 @@ message ProfileQuery { // For example, search for profiles with a job title "Product Manager". repeated JobTitleFilter job_title_filters = 3; - // Optional. - // - // Employer filter specifies employers of profiles to match on. + // Optional. Employer filter specifies employers of profiles to match on. // // If an employer filter isn't specified, profiles with any employers are // retrieved. @@ -271,9 +239,7 @@ message ProfileQuery { // LLC". repeated EmployerFilter employer_filters = 4; - // Optional. - // - // Education filter specifies education of profiles to match on. + // Optional. Education filter specifies education of profiles to match on. // // If an education filter isn't specified, profiles with any education are // retrieved. @@ -288,9 +254,7 @@ message ProfileQuery { // For example, search for profiles with a master degree. repeated EducationFilter education_filters = 5; - // Optional. - // - // Skill filter specifies skill of profiles to match on. + // Optional. Skill filter specifies skill of profiles to match on. // // If a skill filter isn't specified, profiles with any skills are retrieved. // @@ -304,10 +268,8 @@ message ProfileQuery { // list. repeated SkillFilter skill_filters = 6; - // Optional. - // - // Work experience filter specifies the total working experience of profiles - // to match on. + // Optional. Work experience filter specifies the total working experience of + // profiles to match on. // // If a work experience filter isn't specified, profiles with any // professional experience are retrieved. @@ -318,38 +280,29 @@ message ProfileQuery { // For example, search for profiles with 10 years of work experience. repeated WorkExperienceFilter work_experience_filter = 7; - // Optional. - // - // Time filter specifies the create/update timestamp of the profiles to match - // on. + // Optional. Time filter specifies the create/update timestamp of the profiles + // to match on. // // For example, search for profiles created since "2018-1-1". repeated TimeFilter time_filters = 8; - // Optional. - // - // The hirable filter specifies the profile's hirable status to match on. + // Optional. The hirable filter specifies the profile's hirable status to + // match on. google.protobuf.BoolValue hirable_filter = 9; - // Optional. - // - // The application date filters specify application date ranges to match on. + // Optional. The application date filters specify application date ranges to + // match on. repeated ApplicationDateFilter application_date_filters = 10; - // Optional. - // - // The application outcome notes filters specify the notes for the outcome of - // the job application. + // Optional. The application outcome notes filters specify the notes for the + // outcome of the job application. repeated ApplicationOutcomeNotesFilter application_outcome_notes_filters = 11; - // Optional. - // - // The application job filters specify the job applied for in the application. + // Optional. The application job filters specify the job applied for in the + // application. repeated ApplicationJobFilter application_job_filters = 13; - // Optional. - // - // This filter specifies a structured syntax to match against the + // Optional. This filter specifies a structured syntax to match against the // [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes] // that are marked as `filterable`. // @@ -375,6 +328,24 @@ message ProfileQuery { // Sample Query: // (key1 = "TEST" OR LOWER(key1)="test" OR NOT EMPTY(key1)) string custom_attribute_filter = 15; + + // Optional. The candidate availability filter which filters based on + // availability signals. + // + // Signal 1: Number of days since most recent job application. See + // [Availability.JobApplicationAvailabilitySignal][google.cloud.talent.v4beta1.Availability.JobApplicationAvailabilitySignal] + // for the details of this signal. + // + // Signal 2: Number of days since last profile update. See + // [Availability.ProfileUpdateAvailabilitySignal][google.cloud.talent.v4beta1.Availability.ProfileUpdateAvailabilitySignal] + // for the details of this signal. + // + // The candidate availability filter helps a recruiter understand if a + // specific candidate is likely to be actively seeking new job opportunities + // based on an aggregated set of signals. Specifically, the intent is NOT to + // indicate the candidate's potential qualification / interest / close ability + // for a specific job. + CandidateAvailabilityFilter candidate_availability_filter = 16; } // Input only. @@ -393,16 +364,12 @@ message LocationFilter { TELECOMMUTE_ALLOWED = 2; } - // Optional. - // - // The address name, such as "Mountain View" or "Bay Area". + // Optional. The address name, such as "Mountain View" or "Bay Area". string address = 1; - // Optional. - // - // CLDR region code of the country/region of the address. This is used - // to address ambiguity of the user-input location, for example, "Liverpool" - // against "Liverpool, NY, US" or "Liverpool, UK". + // Optional. CLDR region code of the country/region of the address. This is + // used to address ambiguity of the user-input location, for example, + // "Liverpool" against "Liverpool, NY, US" or "Liverpool, UK". // // Set this field if all the jobs to search against are from a same region, // or jobs are world-wide, but the job seeker is from a specific region. @@ -410,26 +377,20 @@ message LocationFilter { // See http://cldr.unicode.org/ and // http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html // for details. Example: "CH" for Switzerland. + // Note that this filter is not applicable for Profile Search related queries. string region_code = 2; - // Optional. - // - // The latitude and longitude of the geographic center from which to + // Optional. The latitude and longitude of the geographic center from which to // search. This field's ignored if `address` is provided. google.type.LatLng lat_lng = 3; - // Optional. - // - // - // The distance_in_miles is applied when the location being searched for is - // identified as a city or smaller. When the location being searched for is a - // state or larger, this field is ignored. + // Optional. The distance_in_miles is applied when the location being searched + // for is identified as a city or smaller. When the location being searched + // for is a state or larger, this field is ignored. double distance_in_miles = 4; - // Optional. - // - // Allows the client to return jobs without a - // set location, specifically, telecommuting jobs (telecomuting is considered + // Optional. Allows the client to return jobs without a + // set location, specifically, telecommuting jobs (telecommuting is considered // by the service as a special location. // [Job.posting_region][google.cloud.talent.v4beta1.Job.posting_region] // indicates if a job permits telecommuting. If this field is set to @@ -449,10 +410,8 @@ message LocationFilter { // treated as less relevant than other jobs in the search response. TelecommutePreference telecommute_preference = 5; - // Optional. - // - // Whether to apply negation to the filter so profiles matching the filter - // are excluded. + // Optional. Whether to apply negation to the filter so profiles matching the + // filter are excluded. // // Currently only supported in profile search. bool negated = 6; @@ -508,26 +467,18 @@ message CompensationFilter { ANNUALIZED_TOTAL_AMOUNT = 4; } - // Required. - // - // Type of filter. + // Required. Type of filter. FilterType type = 1; - // Required. - // - // Specify desired `base compensation entry's` + // Required. Specify desired `base compensation entry's` // [CompensationInfo.CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit]. repeated CompensationInfo.CompensationUnit units = 2; - // Optional. - // - // Compensation range. + // Optional. Compensation range. CompensationInfo.CompensationRange range = 3; - // Optional. - // - // If set to true, jobs with unspecified compensation range fields are - // included. + // Optional. If set to true, jobs with unspecified compensation range fields + // are included. bool include_jobs_with_unspecified_compensation_range = 4; } @@ -547,44 +498,36 @@ message CommuteFilter { BUSY_HOUR = 2; } - // Required. - // - // The method of transportation for which to calculate the commute time. + // Required. The method of transportation for which to calculate the commute + // time. CommuteMethod commute_method = 1; - // Required. - // - // The latitude and longitude of the location from which to calculate the - // commute time. + // Required. The latitude and longitude of the location from which to + // calculate the commute time. google.type.LatLng start_coordinates = 2; - // Required. - // - // The maximum travel time in seconds. The maximum allowed value is `3600s` - // (one hour). Format is `123s`. + // Required. The maximum travel time in seconds. The maximum allowed value is + // `3600s` (one hour). Format is `123s`. google.protobuf.Duration travel_duration = 3; - // Optional. - // If `true`, jobs without street level addresses may also be returned. - // For city level addresses, the city center is used. For state and coarser - // level addresses, text matching is used. - // If this field is set to `false` or isn't specified, only jobs that include - // street level addresses will be returned by commute search. + // Optional. If `true`, jobs without street level addresses may also be + // returned. For city level addresses, the city center is used. For state and + // coarser level addresses, text matching is used. If this field is set to + // `false` or isn't specified, only jobs that include street level addresses + // will be returned by commute search. bool allow_imprecise_addresses = 4; // Optional. // // Traffic factor to take into account while searching by commute. oneof traffic_option { - // Optional. - // - // Specifies the traffic density to use when calculating commute time. + // Optional. Specifies the traffic density to use when calculating commute + // time. RoadTraffic road_traffic = 5; - // Optional. - // - // The departure time used to calculate traffic impact, represented as - // [google.type.TimeOfDay][google.type.TimeOfDay] in local time zone. + // Optional. The departure time used to calculate traffic impact, + // represented as [google.type.TimeOfDay][google.type.TimeOfDay] in local + // time zone. // // Currently traffic model is restricted to hour level resolution. google.type.TimeOfDay departure_time = 6; @@ -595,15 +538,12 @@ message CommuteFilter { // // Job title of the search. message JobTitleFilter { - // Required. - // - // The job title, for example, "Software engineer", or "Product manager". + // Required. The job title, for example, "Software engineer", or "Product + // manager". string job_title = 1; - // Optional. - // - // Whether to apply negation to the filter so profiles matching the filter - // are excluded. + // Optional. Whether to apply negation to the filter so profiles matching the + // filter are excluded. bool negated = 2; } @@ -611,15 +551,11 @@ message JobTitleFilter { // // Skill filter of the search. message SkillFilter { - // Required. - // - // The skill name. For example, "java", "j2ee", and so on. + // Required. The skill name. For example, "java", "j2ee", and so on. string skill = 1; - // Optional. - // - // Whether to apply negation to the filter so profiles matching the filter - // are excluded. + // Optional. Whether to apply negation to the filter so profiles matching the + // filter are excluded. bool negated = 2; } @@ -647,14 +583,10 @@ message EmployerFilter { PAST_EMPLOYMENT_RECORDS_ONLY = 3; } - // Required. - // - // The name of the employer, for example "Google", "Alphabet". + // Required. The name of the employer, for example "Google", "Alphabet". string employer = 1; - // Optional. - // - // Define set of + // Optional. Define set of // [EmploymentRecord][google.cloud.talent.v4beta1.EmploymentRecord]s to search // against. // @@ -662,10 +594,8 @@ message EmployerFilter { // [EmployerFilterMode.ALL_EMPLOYMENT_RECORDS][google.cloud.talent.v4beta1.EmployerFilter.EmployerFilterMode.ALL_EMPLOYMENT_RECORDS]. EmployerFilterMode mode = 2; - // Optional. - // - // Whether to apply negation to the filter so profiles matching the filter - // is excluded. + // Optional. Whether to apply negation to the filter so profiles matching the + // filter is excluded. bool negated = 3; } @@ -673,29 +603,22 @@ message EmployerFilter { // // Education filter of the search. message EducationFilter { - // Optional. - // - // The school name. For example "MIT", "University of California, Berkeley". + // Optional. The school name. For example "MIT", "University of California, + // Berkeley". string school = 1; - // Optional. - // - // The field of study. This is to search against value provided in + // Optional. The field of study. This is to search against value provided in // [Degree.fields_of_study][google.cloud.talent.v4beta1.Degree.fields_of_study]. // For example "Computer Science", "Mathematics". string field_of_study = 2; - // Optional. - // - // Education degree in ISCED code. Each value in degree covers a specific - // level of education, without any expansion to upper nor lower levels of - // education degree. + // Optional. Education degree in ISCED code. Each value in degree covers a + // specific level of education, without any expansion to upper nor lower + // levels of education degree. DegreeType degree_type = 3; - // Optional. - // - // Whether to apply negation to the filter so profiles matching the filter - // is excluded. + // Optional. Whether to apply negation to the filter so profiles matching the + // filter is excluded. bool negated = 6; } @@ -709,14 +632,10 @@ message EducationFilter { // and // [max_experience][google.cloud.talent.v4beta1.WorkExperienceFilter.max_experience]. message WorkExperienceFilter { - // Optional. - // - // The minimum duration of the work experience (inclusive). + // Optional. The minimum duration of the work experience (inclusive). google.protobuf.Duration min_experience = 1; - // Optional. - // - // The maximum duration of the work experience (exclusive). + // Optional. The maximum duration of the work experience (exclusive). google.protobuf.Duration max_experience = 2; } @@ -732,16 +651,12 @@ message WorkExperienceFilter { // and [end_date][google.cloud.talent.v4beta1.ApplicationDateFilter.end_date] // are missing. message ApplicationDateFilter { - // Optional. - // - // Start date. If it's missing, The API matches profiles with application date - // not after the end date. + // Optional. Start date. If it's missing, The API matches profiles with + // application date not after the end date. google.type.Date start_date = 1; - // Optional. - // - // End date. If it's missing, The API matches profiles with application date - // not before the start date. + // Optional. End date. If it's missing, The API matches profiles with + // application date not before the start date. google.type.Date end_date = 2; } @@ -749,16 +664,13 @@ message ApplicationDateFilter { // // Outcome Notes Filter. message ApplicationOutcomeNotesFilter { - // Required. - // - // User entered or selected outcome reason. The API does an exact match on the + // Required. User entered or selected outcome reason. The API does an exact + // match on the // [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes] // in profiles. string outcome_notes = 1; - // Optional. - // - // If true, The API excludes all candidates with any + // Optional. If true, The API excludes all candidates with any // [Application.outcome_notes][google.cloud.talent.v4beta1.Application.outcome_notes] // matching the outcome reason specified in the filter. bool negated = 2; @@ -768,23 +680,18 @@ message ApplicationOutcomeNotesFilter { // // Filter on the job information of Application. message ApplicationJobFilter { - // Optional. - // - // The job requisition id in the application. The API does an exact match on - // the [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of + // Optional. The job requisition id in the application. The API does an exact + // match on the + // [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] of // [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles. string job_requisition_id = 2; - // Optional. - // - // The job title in the application. The API does an exact match on the - // [Job.title][google.cloud.talent.v4beta1.Job.title] of + // Optional. The job title in the application. The API does an exact match on + // the [Job.title][google.cloud.talent.v4beta1.Job.title] of // [Application.job][google.cloud.talent.v4beta1.Application.job] in profiles. string job_title = 3; - // Optional. - // - // If true, the API excludes all profiles with any + // Optional. If true, the API excludes all profiles with any // [Application.job][google.cloud.talent.v4beta1.Application.job] matching the // filters. bool negated = 4; @@ -806,25 +713,28 @@ message TimeFilter { UPDATE_TIME = 2; } - // Optional. - // - // Start timestamp, matching profiles with the start time. If this field - // missing, The API matches profiles with create / update timestamp before the - // end timestamp. + // Optional. Start timestamp, matching profiles with the start time. If this + // field missing, The API matches profiles with create / update timestamp + // before the end timestamp. google.protobuf.Timestamp start_time = 1; - // Optional. - // - // End timestamp, matching profiles with the end time. If this field + // Optional. End timestamp, matching profiles with the end time. If this field // missing, The API matches profiles with create / update timestamp after the // start timestamp. google.protobuf.Timestamp end_time = 2; - // Optional. - // - // Specifies which time field to filter profiles. + // Optional. Specifies which time field to filter profiles. // // Defaults to // [TimeField.CREATE_TIME][google.cloud.talent.v4beta1.TimeFilter.TimeField.CREATE_TIME]. TimeField time_field = 3; } + +// Input only +// +// Filter on availability signals. +message CandidateAvailabilityFilter { + // Optional. It is false by default. If true, API excludes all the potential + // available profiles. + bool negated = 1; +} diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job.proto index 78aa03bef1ed..711a4b5be4a6 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job.proto @@ -36,18 +36,14 @@ option objc_class_prefix = "CTS"; message Job { // Application related details of a job posting. message ApplicationInfo { - // Optional. - // - // Use this field to specify email address(es) to which resumes or + // Optional. Use this field to specify email address(es) to which resumes or // applications can be sent. // // The maximum number of allowed characters for each entry is 255. repeated string emails = 1; - // Optional. - // - // Use this field to provide instructions, such as "Mail your application - // to ...", that a candidate can follow to apply for the job. + // Optional. Use this field to provide instructions, such as "Mail your + // application to ...", that a candidate can follow to apply for the job. // // This field accepts and sanitizes HTML input, and also accepts // bold, italic, ordered list, and unordered list markup tags. @@ -55,10 +51,8 @@ message Job { // The maximum number of allowed characters is 3,000. string instruction = 2; - // Optional. - // - // Use this URI field to direct an applicant to a website, for example to - // link to an online application form. + // Optional. Use this URI field to direct an applicant to a website, for + // example to link to an online application form. // // The maximum number of allowed characters for each entry is 2,000. repeated string uris = 3; @@ -87,15 +81,11 @@ message Job { // // Options for job processing. message ProcessingOptions { - // Optional. - // - // If set to `true`, the service does not attempt to resolve a + // Optional. If set to `true`, the service does not attempt to resolve a // more precise address for the job. bool disable_street_address_resolution = 1; - // Optional. - // - // Option for job HTML content sanitization. Applied fields are: + // Optional. Option for job HTML content sanitization. Applied fields are: // // * description // * applicationInfo.instruction @@ -128,9 +118,7 @@ message Job { // value is unique. string name = 1; - // Required. - // - // The resource name of the company listing the job. + // Required. The resource name of the company listing the job. // // The format is // "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for @@ -140,12 +128,10 @@ message Job { // example, "projects/api-test-project/companies/bar". string company = 2; - // Required. - // - // The requisition ID, also referred to as the posting ID, is assigned by the - // client to identify a job. This field is intended to be used by clients - // for client identification and tracking of postings. A job isn't allowed - // to be created if there is another job with the same + // Required. The requisition ID, also referred to as the posting ID, is + // assigned by the client to identify a job. This field is intended to be used + // by clients for client identification and tracking of postings. A job isn't + // allowed to be created if there is another job with the same // [company][google.cloud.talent.v4beta1.Job.name], // [language_code][google.cloud.talent.v4beta1.Job.language_code] and // [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. @@ -153,18 +139,14 @@ message Job { // The maximum number of allowed characters is 255. string requisition_id = 3; - // Required. - // - // The title of the job, such as "Software Engineer" + // Required. The title of the job, such as "Software Engineer" // // The maximum number of allowed characters is 500. string title = 4; - // Required. - // - // The description of the job, which typically includes a multi-paragraph - // description of the company and related information. Separate fields are - // provided on the job object for + // Required. The description of the job, which typically includes a + // multi-paragraph description of the company and related information. + // Separate fields are provided on the job object for // [responsibilities][google.cloud.talent.v4beta1.Job.responsibilities], // [qualifications][google.cloud.talent.v4beta1.Job.qualifications], and other // job characteristics. Use of these separate job fields is recommended. @@ -198,26 +180,18 @@ message Job { // The maximum number of allowed characters is 500. repeated string addresses = 6; - // Optional. - // - // Job application information. + // Optional. Job application information. ApplicationInfo application_info = 7; - // Optional. - // - // The benefits included with the job. + // Optional. The benefits included with the job. repeated JobBenefit job_benefits = 8; - // Optional. - // - // Job compensation information (a.k.a. "pay rate") i.e., the compensation - // that will paid to the employee. + // Optional. Job compensation information (a.k.a. "pay rate") i.e., the + // compensation that will paid to the employee. CompensationInfo compensation_info = 9; - // Optional. - // - // A map of fields to hold both filterable and non-filterable custom job - // attributes that are not covered by the provided structured fields. + // Optional. A map of fields to hold both filterable and non-filterable custom + // job attributes that are not covered by the provided structured fields. // // The keys of the map are strings up to 64 bytes and must match the // pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or @@ -230,37 +204,28 @@ message Job { // is 50KB. map custom_attributes = 10; - // Optional. - // - // The desired education degrees for the job, such as Bachelors, Masters. + // Optional. The desired education degrees for the job, such as Bachelors, + // Masters. repeated DegreeType degree_types = 11; - // Optional. - // - // The department or functional area within the company with the open - // position. + // Optional. The department or functional area within the company with the + // open position. // // The maximum number of allowed characters is 255. string department = 12; - // Optional. - // - // The employment type(s) of a job, for example, + // Optional. The employment type(s) of a job, for example, // [full time][google.cloud.talent.v4beta1.EmploymentType.FULL_TIME] or // [part time][google.cloud.talent.v4beta1.EmploymentType.PART_TIME]. repeated EmploymentType employment_types = 13; - // Optional. - // - // A description of bonus, commission, and other compensation + // Optional. A description of bonus, commission, and other compensation // incentives associated with the job not including salary or pay. // // The maximum number of allowed characters is 10,000. string incentives = 14; - // Optional. - // - // The language of the posting. This field is distinct from + // Optional. The language of the posting. This field is distinct from // any requirements for fluency that are associated with the job. // // Language codes must be in BCP-47 format, such as "en-US" or "sr-Latn". @@ -275,14 +240,11 @@ message Job { // otherwise defaults to 'en_US'. string language_code = 15; - // Optional. - // - // The experience level associated with the job, such as "Entry Level". + // Optional. The experience level associated with the job, such as "Entry + // Level". JobLevel job_level = 16; - // Optional. - // - // A promotion value of the job, as determined by the client. + // Optional. A promotion value of the job, as determined by the client. // The value determines the sort order of the jobs returned when searching for // jobs using the featured jobs search call, with higher promotional values // being returned first and ties being resolved by relevance sort. Only the @@ -291,9 +253,7 @@ message Job { // Default value is 0, and negative values are treated as 0. int32 promotion_value = 17; - // Optional. - // - // A description of the qualifications required to perform the + // Optional. A description of the qualifications required to perform the // job. The use of this field is recommended // as an alternative to using the more general // [description][google.cloud.talent.v4beta1.Job.description] field. @@ -304,9 +264,7 @@ message Job { // The maximum number of allowed characters is 10,000. string qualifications = 18; - // Optional. - // - // A description of job responsibilities. The use of this field is + // Optional. A description of job responsibilities. The use of this field is // recommended as an alternative to using the more general // [description][google.cloud.talent.v4beta1.Job.description] field. // @@ -316,46 +274,36 @@ message Job { // The maximum number of allowed characters is 10,000. string responsibilities = 19; - // Optional. - // - // The job [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for - // example, state, country) throughout which the job is available. If this - // field is set, a - // [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a search - // query within the job region finds this job posting if an exact location - // match isn't specified. If this field is set to + // Optional. The job + // [PostingRegion][google.cloud.talent.v4beta1.PostingRegion] (for example, + // state, country) throughout which the job is available. If this field is + // set, a [LocationFilter][google.cloud.talent.v4beta1.LocationFilter] in a + // search query within the job region finds this job posting if an exact + // location match isn't specified. If this field is set to // [PostingRegion.NATION][google.cloud.talent.v4beta1.PostingRegion.NATION] or // [PostingRegion.ADMINISTRATIVE_AREA][google.cloud.talent.v4beta1.PostingRegion.ADMINISTRATIVE_AREA], // setting job [Job.addresses][google.cloud.talent.v4beta1.Job.addresses] to // the same location level as this field is strongly recommended. PostingRegion posting_region = 20; - // Optional. - // - // The visibility of the job. + // Optional. The visibility of the job. // // Defaults to // [Visibility.ACCOUNT_ONLY][google.cloud.talent.v4beta1.Visibility.ACCOUNT_ONLY] // if not specified. Visibility visibility = 21; - // Optional. - // - // The start timestamp of the job in UTC time zone. Typically this field - // is used for contracting engagements. Invalid timestamps are ignored. + // Optional. The start timestamp of the job in UTC time zone. Typically this + // field is used for contracting engagements. Invalid timestamps are ignored. google.protobuf.Timestamp job_start_time = 22; - // Optional. - // - // The end timestamp of the job. Typically this field is used for contracting - // engagements. Invalid timestamps are ignored. + // Optional. The end timestamp of the job. Typically this field is used for + // contracting engagements. Invalid timestamps are ignored. google.protobuf.Timestamp job_end_time = 23; - // Optional. - // - // The timestamp this job posting was most recently published. The default - // value is the time the request arrives at the server. Invalid timestamps are - // ignored. + // Optional. The timestamp this job posting was most recently published. The + // default value is the time the request arrives at the server. Invalid + // timestamps are ignored. google.protobuf.Timestamp posting_publish_time = 24; // Optional but strongly recommended for the best service @@ -363,12 +311,13 @@ message Job { // // The expiration timestamp of the job. After this timestamp, the // job is marked as expired, and it no longer appears in search results. The - // expired job can't be deleted or listed by the - // [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] and - // [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] APIs, but it - // can be retrieved with the + // expired job can't be listed by the + // [ListJobs][google.cloud.talent.v4beta1.JobService.ListJobs] API, but it can + // be retrieved with the // [GetJob][google.cloud.talent.v4beta1.JobService.GetJob] API or updated with - // the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API. An + // the [UpdateJob][google.cloud.talent.v4beta1.JobService.UpdateJob] API or + // deleted with the + // [DeleteJob][google.cloud.talent.v4beta1.JobService.DeleteJob] API. An // expired job can be updated and opened again by using a future expiration // timestamp. Updating an expired job fails if there is another existing open // job with same [company][google.cloud.talent.v4beta1.Job.company], @@ -376,15 +325,24 @@ message Job { // [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id]. // // The expired jobs are retained in our system for 90 days. However, the - // overall expired job count cannot exceed 3 times the maximum of open jobs - // count over the past week, otherwise jobs with earlier expire time are - // cleaned first. Expired jobs are no longer accessible after they are cleaned + // overall expired job count cannot exceed 3 times the maximum number of + // open jobs over previous 7 days. If this threshold is exceeded, + // expired jobs are cleaned out in order of earliest expire time. + // Expired jobs are no longer accessible after they are cleaned // out. // // Invalid timestamps are ignored, and treated as expire time not provided. // - // Timestamp before the instant request is made is considered valid, the job - // will be treated as expired immediately. + // If the timestamp is before the instant request is made, the job + // is treated as expired immediately on creation. This kind of job can + // not be updated. And when creating a job with past timestamp, the + // [posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] + // must be set before + // [posting_expire_time][google.cloud.talent.v4beta1.Job.posting_expire_time]. + // The purpose of this feature is to allow other objects, such as + // [Application][google.cloud.talent.v4beta1.Application], to refer a job that + // didn't exist in the system prior to becoming expired. If you want to modify + // a job that was expired on creation, delete it and create a new one. // // If this value isn't provided at the time of job creation or is invalid, // the job posting expires after 30 days from the job's creation time. For @@ -413,8 +371,6 @@ message Job { // Output only. Derived details about the job posting. DerivedInfo derived_info = 29; - // Optional. - // - // Options for job processing. + // Optional. Options for job processing. ProcessingOptions processing_options = 30; } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job_service.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job_service.proto index 1fb605e40a06..5169ce88c7f8 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job_service.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job_service.proto @@ -18,7 +18,7 @@ syntax = "proto3"; package google.cloud.talent.v4beta1; import "google/api/annotations.proto"; -import "google/cloud/talent/v4beta1/batch.proto"; +import "google/api/client.proto"; import "google/cloud/talent/v4beta1/common.proto"; import "google/cloud/talent/v4beta1/filters.proto"; import "google/cloud/talent/v4beta1/histogram.proto"; @@ -36,6 +36,11 @@ option objc_class_prefix = "CTS"; // A service handles job management, including job CRUD, enumeration and search. service JobService { + option (google.api.default_host) = "jobs.googleapis.com"; + option (google.api.oauth_scopes) = + "https://www.googleapis.com/auth/cloud-platform," + "https://www.googleapis.com/auth/jobs"; + // Creates a new job. // // Typically, the job becomes searchable within 10 seconds, but it may take @@ -177,9 +182,7 @@ service JobService { // // Create job request. message CreateJobRequest { - // Required. - // - // The resource name of the tenant under which the job is created. + // Required. The resource name of the tenant under which the job is created. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenant/foo". @@ -188,9 +191,7 @@ message CreateJobRequest { // example, "projects/api-test-project". string parent = 1; - // Required. - // - // The Job to be created. + // Required. The Job to be created. Job job = 2; } @@ -198,9 +199,7 @@ message CreateJobRequest { // // Get job request. message GetJobRequest { - // Required. - // - // The resource name of the job to retrieve. + // Required. The resource name of the job to retrieve. // // The format is // "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for @@ -215,9 +214,7 @@ message GetJobRequest { // // Update job request. message UpdateJobRequest { - // Required. - // - // The Job to be updated. + // Required. The Job to be updated. Job job = 1; // Optional but strongly recommended to be provided for the best service @@ -237,9 +234,7 @@ message UpdateJobRequest { // // Delete job request. message DeleteJobRequest { - // Required. - // - // The resource name of the job to be deleted. + // Required. The resource name of the job to be deleted. // // The format is // "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for @@ -254,9 +249,7 @@ message DeleteJobRequest { // // Batch delete jobs request. message BatchDeleteJobsRequest { - // Required. - // - // The resource name of the tenant under which the job is created. + // Required. The resource name of the tenant under which the job is created. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenant/foo". @@ -265,9 +258,7 @@ message BatchDeleteJobsRequest { // example, "projects/api-test-project". string parent = 1; - // Required. - // - // The filter string specifies the jobs to be deleted. + // Required. The filter string specifies the jobs to be deleted. // // Supported operator: =, AND // @@ -285,9 +276,7 @@ message BatchDeleteJobsRequest { // // List jobs request. message ListJobsRequest { - // Required. - // - // The resource name of the tenant under which the job is created. + // Required. The resource name of the tenant under which the job is created. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenant/foo". @@ -296,9 +285,7 @@ message ListJobsRequest { // example, "projects/api-test-project". string parent = 1; - // Required. - // - // The filter string specifies the jobs to be enumerated. + // Required. The filter string specifies the jobs to be enumerated. // // Supported operator: =, AND // @@ -318,14 +305,10 @@ message ListJobsRequest { // status = "EXPIRED" string filter = 2; - // Optional. - // - // The starting point of a query result. + // Optional. The starting point of a query result. string page_token = 3; - // Optional. - // - // The maximum number of jobs to be returned per page of results. + // Optional. The maximum number of jobs to be returned per page of results. // // If [job_view][google.cloud.talent.v4beta1.ListJobsRequest.job_view] is set // to @@ -336,9 +319,7 @@ message ListJobsRequest { // Default is 100 if empty or a number < 1 is specified. int32 page_size = 4; - // Optional. - // - // The desired job attributes returned for jobs in the + // Optional. The desired job attributes returned for jobs in the // search response. Defaults to // [JobView.JOB_VIEW_FULL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_FULL] // if no value is specified. @@ -447,20 +428,17 @@ message SearchJobsRequest { EXTREME = 6; } - // Required. - // - // Controls over how important the score of + // Required. Controls over how important the score of // [CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression] // gets applied to job's final ranking position. // // An error is thrown if not specified. ImportanceLevel importance_level = 1; - // Required. - // - // Controls over how job documents get ranked on top of existing relevance - // score (determined by API algorithm). The product of ranking expression - // and relevance score is used to determine job's final ranking position. + // Required. Controls over how job documents get ranked on top of existing + // relevance score (determined by API algorithm). The product of ranking + // expression and relevance score is used to determine job's final ranking + // position. // // The syntax for this expression is a subset of Google SQL syntax. // @@ -517,9 +495,7 @@ message SearchJobsRequest { SIMPLE = 2; } - // Required. - // - // The resource name of the tenant to search within. + // Required. The resource name of the tenant to search within. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenant/foo". @@ -528,39 +504,30 @@ message SearchJobsRequest { // example, "projects/api-test-project". string parent = 1; - // Optional. - // - // Mode of a search. + // Optional. Mode of a search. // // Defaults to // [SearchMode.JOB_SEARCH][google.cloud.talent.v4beta1.SearchJobsRequest.SearchMode.JOB_SEARCH]. SearchMode search_mode = 2; - // Required. - // - // The meta information collected about the job searcher, used to improve the - // search quality of the service.. The identifiers, (such as `user_id`) are - // provided by users, and must be unique and consistent. + // Required. The meta information collected about the job searcher, used to + // improve the search quality of the service. The identifiers (such as + // `user_id`) are provided by users, and must be unique and consistent. RequestMetadata request_metadata = 3; - // Optional. - // - // Query used to search against jobs, such as keyword, location filters, etc. + // Optional. Query used to search against jobs, such as keyword, location + // filters, etc. JobQuery job_query = 4; - // Optional. - // - // Controls whether to broaden the search when it produces sparse results. - // Broadened queries append results to the end of the matching results - // list. + // Optional. Controls whether to broaden the search when it produces sparse + // results. Broadened queries append results to the end of the matching + // results list. // // Defaults to false. bool enable_broadening = 5; - // Optional. - // - // Controls if the search job request requires the return of a precise - // count of the first 300 results. Setting this to `true` ensures + // Optional. Controls if the search job request requires the return of a + // precise count of the first 300 results. Setting this to `true` ensures // consistency in the number of results per page. Best practice is to set this // value to true if a client allows users to jump directly to a // non-sequential search results page. @@ -570,9 +537,8 @@ message SearchJobsRequest { // Defaults to false. bool require_precise_result_size = 6; - // Optional. - // - // An expression specifies a histogram request against matching jobs. + // Optional. An expression specifies a histogram request against matching + // jobs. // // Expression syntax is an aggregation function call with histogram facets and // other options. @@ -681,18 +647,14 @@ message SearchJobsRequest { // [bucket(MIN, 0, "negative"), bucket(0, MAX, "non-negative"])` repeated HistogramQuery histogram_queries = 7; - // Optional. - // - // The desired job attributes returned for jobs in the search response. - // Defaults to + // Optional. The desired job attributes returned for jobs in the search + // response. Defaults to // [JobView.JOB_VIEW_SMALL][google.cloud.talent.v4beta1.JobView.JOB_VIEW_SMALL] // if no value is specified. JobView job_view = 8; - // Optional. - // - // An integer that specifies the current offset (that is, starting result - // location, amongst the jobs deemed by the API as relevant) in search + // Optional. An integer that specifies the current offset (that is, starting + // result location, amongst the jobs deemed by the API as relevant) in search // results. This field is only considered if // [page_token][google.cloud.talent.v4beta1.SearchJobsRequest.page_token] is // unset. @@ -703,80 +665,76 @@ message SearchJobsRequest { // from the second page). int32 offset = 9; - // Optional. - // - // A limit on the number of jobs returned in the search results. + // Optional. A limit on the number of jobs returned in the search results. // Increasing this value above the default value of 10 can increase search // response time. The value can be between 1 and 100. int32 page_size = 10; - // Optional. - // - // The token specifying the current offset within + // Optional. The token specifying the current offset within // search results. See // [SearchJobsResponse.next_page_token][google.cloud.talent.v4beta1.SearchJobsResponse.next_page_token] // for an explanation of how to obtain the next set of query results. string page_token = 11; - // Optional. - // - // The criteria determining how search results are sorted. Default is - // "relevance desc". + // Optional. The criteria determining how search results are sorted. Default + // is + // `"relevance desc"`. // // Supported options are: // - // * "relevance desc": By relevance descending, as determined by the API + // * `"relevance desc"`: By relevance descending, as determined by the API // algorithms. Relevance thresholding of query results is only available // with this ordering. - // * "posting`_`publish`_`time desc": By + // * `"posting_publish_time desc"`: By // [Job.posting_publish_time][google.cloud.talent.v4beta1.Job.posting_publish_time] // descending. - // * "posting`_`update`_`time desc": By + // * `"posting_update_time desc"`: By // [Job.posting_update_time][google.cloud.talent.v4beta1.Job.posting_update_time] // descending. - // * "title": By [Job.title][google.cloud.talent.v4beta1.Job.title] ascending. - // * "title desc": By [Job.title][google.cloud.talent.v4beta1.Job.title] + // * `"title"`: By [Job.title][google.cloud.talent.v4beta1.Job.title] + // ascending. + // * `"title desc"`: By [Job.title][google.cloud.talent.v4beta1.Job.title] // descending. - // * "annualized`_`base`_`compensation": By job's + // * `"annualized_base_compensation"`: By job's // [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range] // ascending. Jobs whose annualized base compensation is unspecified are put // at the end of search results. - // * "annualized`_`base`_`compensation desc": By job's + // * `"annualized_base_compensation desc"`: By job's // [CompensationInfo.annualized_base_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_base_compensation_range] // descending. Jobs whose annualized base compensation is unspecified are // put at the end of search results. - // * "annualized`_`total`_`compensation": By job's + // * `"annualized_total_compensation"`: By job's // [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range] // ascending. Jobs whose annualized base compensation is unspecified are put // at the end of search results. - // * "annualized`_`total`_`compensation desc": By job's + // * `"annualized_total_compensation desc"`: By job's // [CompensationInfo.annualized_total_compensation_range][google.cloud.talent.v4beta1.CompensationInfo.annualized_total_compensation_range] // descending. Jobs whose annualized base compensation is unspecified are // put at the end of search results. - // * "custom`_`ranking desc": By the relevance score adjusted to the + // * `"custom_ranking desc"`: By the relevance score adjusted to the // [SearchJobsRequest.CustomRankingInfo.ranking_expression][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.ranking_expression] // with weight factor assigned by // [SearchJobsRequest.CustomRankingInfo.importance_level][google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo.importance_level] // in descending order. - // * "location`_`distance": By the distance between the location on jobs and - // locations specified in the - // [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters]. - // When this order is selected, the - // [JobQuery.location_filters][google.cloud.talent.v4beta1.JobQuery.location_filters] - // must not be empty. When a job has multiple locations, the location - // closest to one of the locations specified in the location filter will be - // used to calculate location distance. Distance is calculated by the - // distance between two lat/long coordinates, with a precision of 10e-4 - // degrees (11.3 meters). Jobs that don't have locations specified will be - // ranked below jobs having locations. Diversification strategy is still - // applied unless explicitly disabled in - // [SearchJobsRequest.diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level]. + // * Location sorting: Use the special syntax to order jobs by distance:
+ // `"distance_from('Hawaii')"`: Order by distance from Hawaii.
+ // `"distance_from(19.89, 155.5)"`: Order by distance from a coordinate.
+ // `"distance_from('Hawaii'), distance_from('Puerto Rico')"`: Order by + // multiple locations. See details below.
+ // `"distance_from('Hawaii'), distance_from(19.89, 155.5)"`: Order by + // multiple locations. See details below.
+ // The string can have a maximum of 256 characters. When multiple distance + // centers are provided, a job that is close to any of the distance centers + // would have a high rank. When a job has multiple locations, the job + // location closest to one of the distance centers will be used. Jobs that + // don't have locations will be ranked at the bottom. Distance is calculated + // with a precision of 11.3 meters (37.4 feet). Diversification strategy is + // still applied unless explicitly disabled in + // [diversification_level][google.cloud.talent.v4beta1.SearchJobsRequest.diversification_level]. string order_by = 12; - // Optional. - // - // Controls whether highly similar jobs are returned next to each other in - // the search results. Jobs are identified as highly similar based on + // Optional. Controls whether highly similar jobs are returned next to each + // other in the search results. Jobs are identified as highly similar based on // their titles, job categories, and locations. Highly similar results are // clustered so that only one representative job of the cluster is // displayed to the job seeker higher up in the results, with the other jobs @@ -787,15 +745,11 @@ message SearchJobsRequest { // if no value is specified. DiversificationLevel diversification_level = 13; - // Optional. - // - // Controls over how job documents get ranked on top of existing relevance - // score (determined by API algorithm). + // Optional. Controls over how job documents get ranked on top of existing + // relevance score (determined by API algorithm). CustomRankingInfo custom_ranking_info = 14; - // Optional. - // - // Controls whether to disable exact keyword match on + // Optional. Controls whether to disable exact keyword match on // [Job.title][google.cloud.talent.v4beta1.Job.title], // [Job.description][google.cloud.talent.v4beta1.Job.description], // [Job.company_display_name][google.cloud.talent.v4beta1.Job.company_display_name], @@ -923,9 +877,7 @@ message SearchJobsResponse { // Request to create a batch of jobs. message BatchCreateJobsRequest { - // Required. - // - // The resource name of the tenant under which the job is created. + // Required. The resource name of the tenant under which the job is created. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenant/foo". @@ -934,17 +886,13 @@ message BatchCreateJobsRequest { // example, "projects/api-test-project". string parent = 1; - // Required. - // - // The jobs to be created. + // Required. The jobs to be created. repeated Job jobs = 2; } // Request to update a batch of jobs. message BatchUpdateJobsRequest { - // Required. - // - // The resource name of the tenant under which the job is created. + // Required. The resource name of the tenant under which the job is created. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenant/foo". @@ -953,9 +901,7 @@ message BatchUpdateJobsRequest { // example, "projects/api-test-project". string parent = 1; - // Required. - // - // The jobs to be updated. + // Required. The jobs to be updated. repeated Job jobs = 2; // Optional but strongly recommended to be provided for the best service diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/profile.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/profile.proto index ea5113b3065b..268bb433ae14 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/profile.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/profile.proto @@ -36,9 +36,7 @@ option objc_class_prefix = "CTS"; // Cloud Profile Discovery API definition // A resource that represents the profile for a job candidate (also referred to -// as a "single-source profile"). A profile belongs to a -// [Company][google.cloud.talent.v4beta1.Company], which is the -// company/organization that owns the profile. +// as a "single-source profile"). message Profile { // Required during profile update. // @@ -49,16 +47,12 @@ message Profile { // for example, "projects/api-test-project/tenants/foo/profiles/bar". string name = 1; - // Optional. - // - // Profile's id in client system if available. + // Optional. Profile's id in client system if available. // // The maximum number of bytes allowed is 100. string external_id = 2; - // Optional. - // - // The source description indicating where the profile is acquired. + // Optional. The source description indicating where the profile is acquired. // // For example, if a candidate profile is acquired from a resume, the user can // input "resume" here to indicate the source. @@ -66,20 +60,17 @@ message Profile { // The maximum number of bytes allowed is 100. string source = 3; - // Optional. - // - // The URI set by clients that links to this profile's client-side copy. + // Optional. The URI set by clients that links to this profile's client-side + // copy. // // The maximum number of bytes allowed is 4000. string uri = 4; - // Optional. - // - // The cluster id of the profile to associate with other profile(s) for the - // same candidate. + // Optional. The cluster id of the profile to associate with other profile(s) + // for the same candidate. // // This field should be generated by the customer. If a value is not provided, - // a random UUI is assigned to this field of the profile. + // a random UUID is assigned to this field of the profile. // // This is used to link multiple profiles to the same candidate. For example, // a client has a candidate with two profiles, where one was created recently @@ -90,56 +81,36 @@ message Profile { // referring to the same candidate. string group_id = 5; - // Optional. - // - // Indicates the hirable status of the candidate. + // Optional. Indicates the hirable status of the candidate. google.protobuf.BoolValue is_hirable = 6; - // Optional. - // - // The timestamp when the profile was first created at this source. + // Optional. The timestamp when the profile was first created at this source. google.protobuf.Timestamp create_time = 7; - // Optional. - // - // The timestamp when the profile was last updated at this source. + // Optional. The timestamp when the profile was last updated at this source. google.protobuf.Timestamp update_time = 8; - // Optional. - // - // The resume representing this profile. + // Optional. The resume representing this profile. Resume resume = 53; - // Optional. - // - // The names of the candidate this profile references. + // Optional. The names of the candidate this profile references. // // Currently only one person name is supported. repeated PersonName person_names = 11; - // Optional. - // - // The candidate's postal addresses. + // Optional. The candidate's postal addresses. repeated Address addresses = 12; - // Optional. - // - // The candidate's email addresses. + // Optional. The candidate's email addresses. repeated Email email_addresses = 13; - // Optional. - // - // The candidate's phone number(s). + // Optional. The candidate's phone number(s). repeated Phone phone_numbers = 14; - // Optional. - // - // The candidate's personal URIs. + // Optional. The candidate's personal URIs. repeated PersonalUri personal_uris = 15; - // Optional. - // - // Available contact information besides + // Optional. Available contact information besides // [addresses][google.cloud.talent.v4beta1.Profile.addresses], // [email_addresses][google.cloud.talent.v4beta1.Profile.email_addresses], // [phone_numbers][google.cloud.talent.v4beta1.Profile.phone_numbers] and @@ -147,11 +118,9 @@ message Profile { // example, Hang-out, Skype. repeated AdditionalContactInfo additional_contact_info = 16; - // Optional. - // - // The employment history records of the candidate. It's highly recommended - // to input this information as accurately as possible to help improve search - // quality. Here are some recommendations: + // Optional. The employment history records of the candidate. It's highly + // recommended to input this information as accurately as possible to help + // improve search quality. Here are some recommendations: // // * Specify the start and end dates of the employment records. // * List different employment types separately, no matter how minor the @@ -164,11 +133,9 @@ message Profile { // inputs. repeated EmploymentRecord employment_records = 17; - // Optional. - // - // The education history record of the candidate. It's highly recommended to - // input this information as accurately as possible to help improve search - // quality. Here are some recommendations: + // Optional. The education history record of the candidate. It's highly + // recommended to input this information as accurately as possible to help + // improve search quality. Here are some recommendations: // // * Specify the start and end dates of the education records. // * List each education type separately, no matter how minor the change is. @@ -180,33 +147,23 @@ message Profile { // inputs. repeated EducationRecord education_records = 18; - // Optional. - // - // The skill set of the candidate. It's highly recommended to provide as - // much information as possible to help improve the search quality. + // Optional. The skill set of the candidate. It's highly recommended to + // provide as much information as possible to help improve the search quality. repeated Skill skills = 19; - // Optional. - // - // The individual or collaborative activities which the candidate has - // participated in, for example, open-source projects, class assignments that - // aren't listed in + // Optional. The individual or collaborative activities which the candidate + // has participated in, for example, open-source projects, class assignments + // that aren't listed in // [employment_records][google.cloud.talent.v4beta1.Profile.employment_records]. repeated Activity activities = 20; - // Optional. - // - // The publications published by the candidate. + // Optional. The publications published by the candidate. repeated Publication publications = 21; - // Optional. - // - // The patents acquired by the candidate. + // Optional. The patents acquired by the candidate. repeated Patent patents = 22; - // Optional. - // - // The certifications acquired by the candidate. + // Optional. The certifications acquired by the candidate. repeated Certification certifications = 23; // Output only. The resource names of the candidate's applications. @@ -215,11 +172,9 @@ message Profile { // Output only. The resource names of the candidate's assignments. repeated string assignments = 48; - // Optional. - // - // A map of fields to hold both filterable and non-filterable custom profile - // attributes that aren't covered by the provided structured fields. See - // [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more + // Optional. A map of fields to hold both filterable and non-filterable custom + // profile attributes that aren't covered by the provided structured fields. + // See [CustomAttribute][google.cloud.talent.v4beta1.CustomAttribute] for more // details. // // At most 100 filterable and at most 100 unfilterable keys are supported. If @@ -238,7 +193,9 @@ message Profile { // The maximum total byte size is 10KB. map custom_attributes = 26; - // Output only. Indicates if the profile is fully processed and searchable. + // Output only. Indicates if a summarized profile was created as part of the + // profile creation API call. This flag does not indicate whether a profile is + // searchable or not. bool processed = 27; // Output only. Keyword snippet shows how the search result is related to a @@ -263,9 +220,7 @@ message Resume { OTHER_RESUME_TYPE = 2; } - // Optional. - // - // Users can create a profile with only this field field, if + // Optional. Users can create a profile with only this field field, if // [resume_type][google.cloud.talent.v4beta1.Resume.resume_type] is // [HRXML][google.cloud.talent.v4beta1.Resume.ResumeType.HRXML]. For example, // the API parses this field and creates a profile with all structured fields @@ -276,12 +231,12 @@ message Resume { // // If this field is provided during profile creation or update, // any other structured data provided in the profile is ignored. The - // API populates these fields by parsing this field. + // API populates these fields by parsing this field. Note that the use of the + // functionality offered by this field to extract data from resumes is an + // Alpha feature and as such is not covered by any SLA. string structured_resume = 1; - // Optional. - // - // The format of + // Optional. The format of // [structured_resume][google.cloud.talent.v4beta1.Resume.structured_resume]. ResumeType resume_type = 2; } @@ -290,9 +245,7 @@ message Resume { message PersonName { // Resource that represents a person's structured name. message PersonStructuredName { - // Optional. - // - // Given/first name. + // Optional. Given/first name. // // It's derived from // [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name] @@ -301,16 +254,12 @@ message PersonName { // Number of characters allowed is 100. string given_name = 1; - // Optional. - // - // Preferred given/first name or nickname. + // Optional. Preferred given/first name or nickname. // // Number of characters allowed is 100. string preferred_name = 6; - // Optional. - // - // Middle initial. + // Optional. Middle initial. // // It's derived from // [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name] @@ -319,9 +268,7 @@ message PersonName { // Number of characters allowed is 20. string middle_initial = 2; - // Optional. - // - // Family/last name. + // Optional. Family/last name. // // It's derived from // [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name] @@ -330,16 +277,12 @@ message PersonName { // Number of characters allowed is 100. string family_name = 3; - // Optional. - // - // Suffixes. + // Optional. Suffixes. // // Number of characters allowed is 20. repeated string suffixes = 4; - // Optional. - // - // Prefixes. + // Optional. Prefixes. // // Number of characters allowed is 20. repeated string prefixes = 5; @@ -349,23 +292,18 @@ message PersonName { // [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name] or // [structured_name][google.cloud.talent.v4beta1.PersonName.structured_name]. oneof person_name { - // Optional. - // - // A string represents a person's full name. For example, "Dr. John Smith". + // Optional. A string represents a person's full name. For example, "Dr. + // John Smith". // // Number of characters allowed is 100. string formatted_name = 1; - // Optional. - // - // A person's name in a structured way (last name, first name, suffix, and - // so on.) + // Optional. A person's name in a structured way (last name, first name, + // suffix, and so on.) PersonStructuredName structured_name = 2; } - // Optional. - // - // Preferred name for the person. This field is ignored if + // Optional. Preferred name for the person. This field is ignored if // [structured_name][google.cloud.talent.v4beta1.PersonName.structured_name] // is provided. // @@ -375,9 +313,7 @@ message PersonName { // Resource that represents a address. message Address { - // Optional. - // - // The usage of the address. For example, SCHOOL, WORK, PERSONAL. + // Optional. The usage of the address. For example, SCHOOL, WORK, PERSONAL. ContactInfoUsage usage = 1; // The address of a person. It can be one of @@ -385,9 +321,7 @@ message Address { // or // [structured_address][google.cloud.talent.v4beta1.Address.structured_address]. oneof address { - // Optional. - // - // Unstructured address. + // Optional. Unstructured address. // // For example, "1600 Amphitheatre Pkwy, Mountain View, CA 94043", // "Sunnyvale, California". @@ -395,29 +329,22 @@ message Address { // Number of characters allowed is 100. string unstructured_address = 2; - // Optional. - // - // Structured address that contains street address, city, state, country, - // and so on. + // Optional. Structured address that contains street address, city, state, + // country, and so on. google.type.PostalAddress structured_address = 3; } - // Optional. - // - // Indicates if it's the person's current address. + // Optional. Indicates if it's the person's current address. google.protobuf.BoolValue current = 4; } // Resource that represents a person's email address. message Email { - // Optional. - // - // The usage of the email address. For example, SCHOOL, WORK, PERSONAL. + // Optional. The usage of the email address. For example, SCHOOL, WORK, + // PERSONAL. ContactInfoUsage usage = 1; - // Optional. - // - // Email address. + // Optional. Email address. // // Number of characters allowed is 4,000. string email_address = 2; @@ -465,19 +392,13 @@ message Phone { MOBILE_OR_LANDLINE = 9; } - // Optional. - // - // The usage of the phone. For example, SCHOOL, WORK, PERSONAL. + // Optional. The usage of the phone. For example, SCHOOL, WORK, PERSONAL. ContactInfoUsage usage = 1; - // Optional. - // - // The phone type. For example, LANDLINE, MOBILE, FAX. + // Optional. The phone type. For example, LANDLINE, MOBILE, FAX. PhoneType type = 2; - // Optional. - // - // Phone number. + // Optional. Phone number. // // Any phone formats are supported and only exact matches are performed on // searches. For example, if a phone number in profile is provided in the @@ -487,9 +408,8 @@ message Phone { // Number of characters allowed is 20. string number = 3; - // Optional. - // - // When this number is available. Any descriptive string is expected. + // Optional. When this number is available. Any descriptive string is + // expected. // // Number of characters allowed is 100. string when_available = 4; @@ -497,9 +417,7 @@ message Phone { // Resource that represents a valid URI for a personal use. message PersonalUri { - // Optional. - // - // The personal URI. + // Optional. The personal URI. // // Number of characters allowed is 4,000. string uri = 1; @@ -508,23 +426,18 @@ message PersonalUri { // Resource that represents contact information other than phone, email, // URI and addresses. message AdditionalContactInfo { - // Optional. - // - // The usage of this contact method. For example, SCHOOL, WORK, PERSONAL. + // Optional. The usage of this contact method. For example, SCHOOL, WORK, + // PERSONAL. ContactInfoUsage usage = 1; - // Optional. - // - // The name of the contact method. + // Optional. The name of the contact method. // // For example, "hangout", "skype". // // Number of characters allowed is 100. string name = 2; - // Optional. - // - // The contact id. + // Optional. The contact id. // // Number of characters allowed is 100. string contact_id = 3; @@ -532,68 +445,48 @@ message AdditionalContactInfo { // Resource that represents an employment record of a candidate. message EmploymentRecord { - // Optional. - // - // Start date of the employment. + // Optional. Start date of the employment. google.type.Date start_date = 1; - // Optional. - // - // End date of the employment. + // Optional. End date of the employment. google.type.Date end_date = 2; - // Optional. - // - // The name of the employer company/organization. + // Optional. The name of the employer company/organization. // // For example, "Google", "Alphabet", and so on. // // Number of characters allowed is 100. string employer_name = 3; - // Optional. - // - // The division name of the employment. + // Optional. The division name of the employment. // // For example, division, department, client, and so on. // // Number of characters allowed is 100. string division_name = 4; - // Optional. - // - // The physical address of the employer. + // Optional. The physical address of the employer. Address address = 5; - // Optional. - // - // The job title of the employment. + // Optional. The job title of the employment. // // For example, "Software Engineer", "Data Scientist", and so on. // // Number of characters allowed is 100. string job_title = 6; - // Optional. - // - // The description of job content. + // Optional. The description of job content. // // Number of characters allowed is 100,000. string job_description = 7; - // Optional. - // - // If the jobs is a supervisor position. + // Optional. If the jobs is a supervisor position. google.protobuf.BoolValue is_supervisor = 8; - // Optional. - // - // If this employment is self-employed. + // Optional. If this employment is self-employed. google.protobuf.BoolValue is_self_employed = 9; - // Optional. - // - // If this employment is current. + // Optional. If this employment is current. google.protobuf.BoolValue is_current = 10; // Output only. The job title snippet shows how the @@ -620,33 +513,23 @@ message EmploymentRecord { // Resource that represents an education record of a candidate. message EducationRecord { - // Optional. - // - // The start date of the education. + // Optional. The start date of the education. google.type.Date start_date = 1; - // Optional. - // - // The end date of the education. + // Optional. The end date of the education. google.type.Date end_date = 2; - // Optional. - // - // The expected graduation date if currently pursuing a degree. + // Optional. The expected graduation date if currently pursuing a degree. google.type.Date expected_graduation_date = 3; - // Optional. - // - // The name of the school or institution. + // Optional. The name of the school or institution. // // For example, "Stanford University", "UC Berkeley", and so on. // // Number of characters allowed is 100. string school_name = 4; - // Optional. - // - // The physical address of the education institution. + // Optional. The physical address of the education institution. Address address = 5; // The degree information. It can be one of @@ -654,31 +537,23 @@ message EducationRecord { // or // [structured_degree][google.cloud.talent.v4beta1.EducationRecord.structured_degree]. oneof degree { - // Optional. - // - // The full description of the degree. + // Optional. The full description of the degree. // // For example, "Master of Science in Computer Science", "B.S in Math". // // Number of characters allowed is 100. string degree_description = 6; - // Optional. - // - // The structured notation of the degree. + // Optional. The structured notation of the degree. Degree structured_degree = 7; } - // Optional. - // - // The description of the education. + // Optional. The description of the education. // // Number of characters allowed is 100,000. string description = 8; - // Optional. - // - // If this education is current. + // Optional. If this education is current. google.protobuf.BoolValue is_current = 9; // Output only. The school name snippet shows how the @@ -698,23 +573,17 @@ message EducationRecord { // Resource that represents a degree pursuing or acquired by a candidate. message Degree { - // Optional. - // - // ISCED degree type. + // Optional. ISCED degree type. DegreeType degree_type = 1; - // Optional. - // - // Full Degree name. + // Optional. Full Degree name. // // For example, "B.S.", "Master of Arts", and so on. // // Number of characters allowed is 100. string degree_name = 2; - // Optional. - // - // Fields of study for the degree. + // Optional. Fields of study for the degree. // // For example, "Computer science", "engineering". // @@ -726,47 +595,33 @@ message Degree { // in by a candidate, for example, an open-source project, a class assignment, // and so on. message Activity { - // Optional. - // - // Activity display name. + // Optional. Activity display name. // // Number of characters allowed is 100. string display_name = 1; - // Optional. - // - // Activity description. + // Optional. Activity description. // // Number of characters allowed is 100,000. string description = 2; - // Optional. - // - // Activity URI. + // Optional. Activity URI. // // Number of characters allowed is 4,000. string uri = 3; - // Optional. - // - // The first creation date of the activity. + // Optional. The first creation date of the activity. google.type.Date create_date = 4; - // Optional. - // - // The last update date of the activity. + // Optional. The last update date of the activity. google.type.Date update_date = 5; - // Optional. - // - // A list of team members involved in this activity. + // Optional. A list of team members involved in this activity. // // Number of characters allowed is 100. repeated string team_members = 6; - // Optional. - // - // A list of skills used in this activity. + // Optional. A list of skills used in this activity. repeated Skill skills_used = 7; // Output only. Activity name snippet shows how the @@ -793,63 +648,45 @@ message Activity { // Resource that represents a publication resource of a candidate. message Publication { - // Optional. - // - // A list of author names. + // Optional. A list of author names. // // Number of characters allowed is 100. repeated string authors = 1; - // Optional. - // - // The title of the publication. + // Optional. The title of the publication. // // Number of characters allowed is 100. string title = 2; - // Optional. - // - // The description of the publication. + // Optional. The description of the publication. // // Number of characters allowed is 100,000. string description = 3; - // Optional. - // - // The journal name of the publication. + // Optional. The journal name of the publication. // // Number of characters allowed is 100. string journal = 4; - // Optional. - // - // Volume number. + // Optional. Volume number. // // Number of characters allowed is 100. string volume = 5; - // Optional. - // - // The publisher of the journal. + // Optional. The publisher of the journal. // // Number of characters allowed is 100. string publisher = 6; - // Optional. - // - // The publication date. + // Optional. The publication date. google.type.Date publication_date = 7; - // Optional. - // - // The publication type. + // Optional. The publication type. // // Number of characters allowed is 100. string publication_type = 8; - // Optional. - // - // ISBN number. + // Optional. ISBN number. // // Number of characters allowed is 100. string isbn = 9; @@ -857,60 +694,42 @@ message Publication { // Resource that represents the patent acquired by a candidate. message Patent { - // Optional. - // - // Name of the patent. + // Optional. Name of the patent. // // Number of characters allowed is 100. string display_name = 1; - // Optional. - // - // A list of inventors' names. + // Optional. A list of inventors' names. // // Number of characters allowed for each is 100. repeated string inventors = 2; - // Optional. - // - // The status of the patent. + // Optional. The status of the patent. // // Number of characters allowed is 100. string patent_status = 3; - // Optional. - // - // The date the last time the status of the patent was checked. + // Optional. The date the last time the status of the patent was checked. google.type.Date patent_status_date = 4; - // Optional. - // - // The date that the patent was filed. + // Optional. The date that the patent was filed. google.type.Date patent_filing_date = 5; - // Optional. - // - // The name of the patent office. + // Optional. The name of the patent office. // // Number of characters allowed is 100. string patent_office = 6; - // Optional. - // - // The number of the patent. + // Optional. The number of the patent. // // Number of characters allowed is 100. string patent_number = 7; - // Optional. - // - // The description of the patent. + // Optional. The description of the patent. // // Number of characters allowed is 100,000. string patent_description = 8; - // Optional. - // - // The skills used in this patent. + // Optional. The skills used in this patent. repeated Skill skills_used = 9; } diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/profile_service.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/profile_service.proto index cc6f5ee24b6a..4c759f7e3790 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/profile_service.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/profile_service.proto @@ -18,6 +18,7 @@ syntax = "proto3"; package google.cloud.talent.v4beta1; import "google/api/annotations.proto"; +import "google/api/client.proto"; import "google/cloud/talent/v4beta1/common.proto"; import "google/cloud/talent/v4beta1/filters.proto"; import "google/cloud/talent/v4beta1/histogram.proto"; @@ -34,6 +35,11 @@ option objc_class_prefix = "CTS"; // A service that handles profile management, including profile CRUD, // enumeration and search. service ProfileService { + option (google.api.default_host) = "jobs.googleapis.com"; + option (google.api.oauth_scopes) = + "https://www.googleapis.com/auth/cloud-platform," + "https://www.googleapis.com/auth/jobs"; + // Lists profiles by filter. The order is unspecified. rpc ListProfiles(ListProfilesRequest) returns (ListProfilesResponse) { option (google.api.http) = { @@ -91,34 +97,28 @@ service ProfileService { // List profiles request. message ListProfilesRequest { - // Required. - // - // The resource name of the tenant under which the job is created. + // Required. The resource name of the tenant under which the profile is + // created. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenants/foo". string parent = 1; - // Optional. - // - // The token that specifies the current offset (that is, starting result). + // Optional. The token that specifies the current offset (that is, starting + // result). // // Please set the value to // [ListProfilesResponse.next_page_token][google.cloud.talent.v4beta1.ListProfilesResponse.next_page_token] // to continue the list. string page_token = 2; - // Optional. - // - // The maximum number of profiles to be returned, at most 100. + // Optional. The maximum number of profiles to be returned, at most 100. // // Default is 100 unless a positive number smaller than 100 is specified. int32 page_size = 3; - // Optional. - // - // A field mask to specify the profile fields to be listed in response. - // All fields are listed if it is unset. + // Optional. A field mask to specify the profile fields to be listed in + // response. All fields are listed if it is unset. // // Valid values are: // @@ -138,25 +138,19 @@ message ListProfilesResponse { // Create profile request. message CreateProfileRequest { - // Required. - // - // The name of the tenant this profile belongs to. + // Required. The name of the tenant this profile belongs to. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenants/foo". string parent = 1; - // Required. - // - // The profile to be created. + // Required. The profile to be created. Profile profile = 2; } // Get profile request. message GetProfileRequest { - // Required. - // - // Resource name of the profile to get. + // Required. Resource name of the profile to get. // // The format is // "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", @@ -166,50 +160,44 @@ message GetProfileRequest { // Update profile request message UpdateProfileRequest { - // Required. - // - // Profile to be updated. + // Required. Profile to be updated. Profile profile = 1; - // Optional. - // - // A field mask to specify the profile fields to update. + // Optional. A field mask to specify the profile fields to update. // // A full update is performed if it is unset. // // Valid values are: // - // * externalId + // * external_id // * source // * uri - // * isHirable - // * createTime - // * updateTime - // * resumeHrxml - // * personNames + // * is_hirable + // * create_time + // * update_time + // * resume + // * person_names // * addresses - // * emailAddresses - // * phoneNumbers - // * personalUris - // * additionalContactInfo - // * employmentRecords - // * educationRecords + // * email_addresses + // * phone_numbers + // * personal_uris + // * additional_contact_info + // * employment_records + // * education_records // * skills // * projects // * publications // * patents // * certifications - // * recruitingNotes - // * customAttributes - // * groupId + // * recruiting_notes + // * custom_attributes + // * group_id google.protobuf.FieldMask update_mask = 2; } // Delete profile request. message DeleteProfileRequest { - // Required. - // - // Resource name of the profile to be deleted. + // Required. Resource name of the profile to be deleted. // // The format is // "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", @@ -219,50 +207,38 @@ message DeleteProfileRequest { // The request body of the `SearchProfiles` call. message SearchProfilesRequest { - // Required. - // - // The resource name of the tenant to search within. + // Required. The resource name of the tenant to search within. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenants/foo". string parent = 1; - // Required. - // - // The meta information collected about the profile search user. This is used - // to improve the search quality of the service. These values are provided by - // users, and must be precise and consistent. + // Required. The meta information collected about the profile search user. + // This is used to improve the search quality of the service. These values are + // provided by users, and must be precise and consistent. RequestMetadata request_metadata = 2; - // Optional. - // - // Search query to execute. See + // Optional. Search query to execute. See // [ProfileQuery][google.cloud.talent.v4beta1.ProfileQuery] for more details. ProfileQuery profile_query = 3; - // Optional. - // - // A limit on the number of profiles returned in the search results. + // Optional. A limit on the number of profiles returned in the search results. // A value above the default value 10 can increase search response time. // // The maximum value allowed is 100. Otherwise an error is thrown. int32 page_size = 4; - // Optional. - // - // The pageToken, similar to offset enables users of the API to paginate - // through the search results. To retrieve the first page of results, set the - // pageToken to empty. The search response includes a + // Optional. The pageToken, similar to offset enables users of the API to + // paginate through the search results. To retrieve the first page of results, + // set the pageToken to empty. The search response includes a // [nextPageToken][google.cloud.talent.v4beta1.SearchProfilesResponse.next_page_token] // field that can be used to populate the pageToken field for the next page of // results. Using pageToken instead of offset increases the performance of the // API, especially compared to larger offset values. string page_token = 5; - // Optional. - // - // An integer that specifies the current offset (that is, starting result) in - // search results. This field is only considered if + // Optional. An integer that specifies the current offset (that is, starting + // result) in search results. This field is only considered if // [page_token][google.cloud.talent.v4beta1.SearchProfilesRequest.page_token] // is unset. // @@ -273,17 +249,13 @@ message SearchProfilesRequest { // pageSize = 10 and offset = 10 means to search from the second page. int32 offset = 6; - // Optional. - // - // This flag controls the spell-check feature. If `false`, the + // Optional. This flag controls the spell-check feature. If `false`, the // service attempts to correct a misspelled query. // // For example, "enginee" is corrected to "engineer". bool disable_spell_check = 7; - // Optional. - // - // The criteria that determines how search results are sorted. + // Optional. The criteria that determines how search results are sorted. // Defaults is "relevance desc" if no value is specified. // // Supported options are: @@ -314,17 +286,13 @@ message SearchProfilesRequest { // in ascending order. string order_by = 8; - // Optional. - // - // When sort by field is based on alphabetical order, sort values case - // sensitively (based on ASCII) when the value is set to true. Default value - // is case in-sensitive sort (false). + // Optional. When sort by field is based on alphabetical order, sort values + // case sensitively (based on ASCII) when the value is set to true. Default + // value is case in-sensitive sort (false). bool case_sensitive_sort = 9; - // Optional. - // - // A list of expressions specifies histogram requests against matching - // profiles for + // Optional. A list of expressions specifies histogram requests against + // matching profiles for // [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest]. // // The expression syntax looks like a function definition with optional @@ -406,6 +374,34 @@ message SearchProfilesRequest { // * count(numeric_custom_attribute["favorite_number"], // [bucket(MIN, 0, "negative"), bucket(0, MAX, "non-negative")]) repeated HistogramQuery histogram_queries = 10; + + // Optional. An id that uniquely identifies the result set of a + // [SearchProfiles][] call. The id should be retrieved from the + // [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse] + // message returned from a previous invocation of [SearchProfiles][]. + // + // A result set is an ordered list of search results. + // + // If this field is not set, a new result set is computed based on the + // [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query]. + // A new + // [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id] + // is returned as a handle to access this result set. + // + // If this field is set, the service will ignore the resource and + // [profile_query][google.cloud.talent.v4beta1.SearchProfilesRequest.profile_query] + // values, and simply retrieve a page of results from the corresponding result + // set. In this case, one and only one of [page_token] or [offset] must be + // set. + // + // A typical use case is to invoke + // [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest] + // without this field, then use the resulting + // [result_set_id][google.cloud.talent.v4beta1.SearchProfilesRequest.result_set_id] + // in + // [SearchProfilesResponse][google.cloud.talent.v4beta1.SearchProfilesResponse] + // to page through the results. + string result_set_id = 12; } // Response of SearchProfiles method. @@ -433,6 +429,11 @@ message SearchProfilesResponse { // The profile entities that match the specified // [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest]. repeated SummarizedProfile summarized_profiles = 6; + + // An id that uniquely identifies the result set of a + // [SearchProfiles][google.cloud.talent.v4beta1.ProfileService.SearchProfiles] + // call for consistent results. + string result_set_id = 7; } // Output only. diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/tenant.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/tenant.proto index 8eef5e3d73ea..88deddecaebf 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/tenant.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/tenant.proto @@ -17,8 +17,8 @@ syntax = "proto3"; package google.cloud.talent.v4beta1; -import "google/cloud/talent/v4beta1/common.proto"; import "google/api/annotations.proto"; +import "google/cloud/talent/v4beta1/common.proto"; option go_package = "google.golang.org/genproto/googleapis/cloud/talent/v4beta1;talent"; option java_multiple_files = true; @@ -54,26 +54,24 @@ message Tenant { // "projects/api-test-project/tenants/foo". string name = 1; - // Required. - // - // Client side tenant identifier, used to uniquely identify the tenant. + // Required. Client side tenant identifier, used to uniquely identify the + // tenant. // // The maximum number of allowed characters is 255. string external_id = 2; - // Optional. + // Optional. Indicates whether data owned by this tenant may be used to + // provide product improvements across other tenants. // - // Indicates whether data owned by this tenant may be used to provide product - // improvements across other tenants. - // - // Defaults behavior is [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED] if it's unset. + // Defaults behavior is + // [DataUsageType.ISOLATED][google.cloud.talent.v4beta1.Tenant.DataUsageType.ISOLATED] + // if it's unset. DataUsageType usage_type = 3; - // Optional. - // - // A list of keys of filterable [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], whose - // corresponding `string_values` are used in keyword searches. Profiles with - // `string_values` under these specified field keys are returned if any + // Optional. A list of keys of filterable + // [Profile.custom_attributes][google.cloud.talent.v4beta1.Profile.custom_attributes], + // whose corresponding `string_values` are used in keyword searches. Profiles + // with `string_values` under these specified field keys are returned if any // of the values match the search keyword. Custom field values with // parenthesis, brackets and special symbols are not searchable as-is, // and must be surrounded by quotes. diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/tenant_service.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/tenant_service.proto index 5af4fd8c587e..33b7f53845e4 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/tenant_service.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/tenant_service.proto @@ -18,6 +18,7 @@ syntax = "proto3"; package google.cloud.talent.v4beta1; import "google/api/annotations.proto"; +import "google/api/client.proto"; import "google/cloud/talent/v4beta1/common.proto"; import "google/cloud/talent/v4beta1/tenant.proto"; import "google/protobuf/empty.proto"; @@ -31,6 +32,11 @@ option objc_class_prefix = "CTS"; // A service that handles tenant management, including CRUD and enumeration. service TenantService { + option (google.api.default_host) = "jobs.googleapis.com"; + option (google.api.oauth_scopes) = + "https://www.googleapis.com/auth/cloud-platform," + "https://www.googleapis.com/auth/jobs"; + // Creates a new tenant entity. rpc CreateTenant(CreateTenantRequest) returns (Tenant) { option (google.api.http) = { @@ -71,25 +77,19 @@ service TenantService { // The Request of the CreateTenant method. message CreateTenantRequest { - // Required. - // - // Resource name of the project under which the tenant is created. + // Required. Resource name of the project under which the tenant is created. // // The format is "projects/{project_id}", for example, // "projects/api-test-project". string parent = 1; - // Required. - // - // The tenant to be created. + // Required. The tenant to be created. Tenant tenant = 2; } // Request for getting a tenant by name. message GetTenantRequest { - // Required. - // - // The resource name of the tenant to be retrieved. + // Required. The resource name of the tenant to be retrieved. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenants/foo". @@ -98,27 +98,28 @@ message GetTenantRequest { // Request for updating a specified tenant. message UpdateTenantRequest { - // Required. - // - // The tenant resource to replace the current resource in the system. + // Required. The tenant resource to replace the current resource in the + // system. Tenant tenant = 1; // Optional but strongly recommended for the best service // experience. // - // If [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] is provided, only the specified fields in - // [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are updated. Otherwise all the fields are updated. + // If + // [update_mask][google.cloud.talent.v4beta1.UpdateTenantRequest.update_mask] + // is provided, only the specified fields in + // [tenant][google.cloud.talent.v4beta1.UpdateTenantRequest.tenant] are + // updated. Otherwise all the fields are updated. // // A field mask to specify the tenant fields to be updated. Only - // top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are supported. + // top level fields of [Tenant][google.cloud.talent.v4beta1.Tenant] are + // supported. google.protobuf.FieldMask update_mask = 2; } // Request to delete a tenant. message DeleteTenantRequest { - // Required. - // - // The resource name of the tenant to be deleted. + // Required. The resource name of the tenant to be deleted. // // The format is "projects/{project_id}/tenants/{tenant_id}", for example, // "projects/api-test-project/tenants/foo". @@ -127,22 +128,16 @@ message DeleteTenantRequest { // List tenants for which the client has ACL visibility. message ListTenantsRequest { - // Required. - // - // Resource name of the project under which the tenant is created. + // Required. Resource name of the project under which the tenant is created. // // The format is "projects/{project_id}", for example, // "projects/api-test-project". string parent = 1; - // Optional. - // - // The starting indicator from which to return results. + // Optional. The starting indicator from which to return results. string page_token = 2; - // Optional. - // - // The maximum number of tenants to be returned, at most 100. + // Optional. The maximum number of tenants to be returned, at most 100. // Default is 100 if a non-positive number is provided. int32 page_size = 3; } diff --git a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/ApplicationServiceClient.java b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/ApplicationServiceClient.java index 3395ee8e936e..fd40377d93b6 100644 --- a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/ApplicationServiceClient.java +++ b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/ApplicationServiceClient.java @@ -171,12 +171,10 @@ public ApplicationServiceStub getStub() { * } *
* - * @param parent Required. - *

Resource name of the profile under which the application is created. + * @param parent Required. Resource name of the profile under which the application is created. *

The format is "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for * example, "projects/test-project/tenants/test-tenant/profiles/test-profile". - * @param application Required. - *

The application to be created. + * @param application Required. The application to be created. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Application createApplication(ProfileName parent, Application application) { @@ -203,12 +201,10 @@ public final Application createApplication(ProfileName parent, Application appli * } *

* - * @param parent Required. - *

Resource name of the profile under which the application is created. + * @param parent Required. Resource name of the profile under which the application is created. *

The format is "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for * example, "projects/test-project/tenants/test-tenant/profiles/test-profile". - * @param application Required. - *

The application to be created. + * @param application Required. The application to be created. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Application createApplication(String parent, Application application) { @@ -280,8 +276,7 @@ public final UnaryCallable createApplicat * } *

* - * @param name Required. - *

The resource name of the application to be retrieved. + * @param name Required. The resource name of the application to be retrieved. *

The format is * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}", * for example, @@ -308,8 +303,7 @@ public final Application getApplication(ApplicationName name) { * } *

* - * @param name Required. - *

The resource name of the application to be retrieved. + * @param name Required. The resource name of the application to be retrieved. *

The format is * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}", * for example, @@ -380,8 +374,8 @@ public final UnaryCallable getApplicationCal * } *

* - * @param application Required. - *

The application resource to replace the current resource in the system. + * @param application Required. The application resource to replace the current resource in the + * system. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Application updateApplication(Application application) { @@ -449,8 +443,7 @@ public final UnaryCallable updateApplicat * } *

* - * @param name Required. - *

The resource name of the application to be deleted. + * @param name Required. The resource name of the application to be deleted. *

The format is * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}", * for example, @@ -479,8 +472,7 @@ public final void deleteApplication(ApplicationName name) { * } *

* - * @param name Required. - *

The resource name of the application to be deleted. + * @param name Required. The resource name of the application to be deleted. *

The format is * "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}", * for example, @@ -553,8 +545,7 @@ public final UnaryCallable deleteApplicationCal * } *

* - * @param parent Required. - *

Resource name of the profile under which the application is created. + * @param parent Required. Resource name of the profile under which the application is created. *

The format is "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for * example, "projects/test-project/tenants/test-tenant/profiles/test-profile". * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -582,8 +573,7 @@ public final ListApplicationsPagedResponse listApplications(ProfileName parent) * } *

* - * @param parent Required. - *

Resource name of the profile under which the application is created. + * @param parent Required. Resource name of the profile under which the application is created. *

The format is "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for * example, "projects/test-project/tenants/test-tenant/profiles/test-profile". * @throws com.google.api.gax.rpc.ApiException if the remote call fails diff --git a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/CompanyServiceClient.java b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/CompanyServiceClient.java index 7dbf33169632..ec91c35dd275 100644 --- a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/CompanyServiceClient.java +++ b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/CompanyServiceClient.java @@ -169,14 +169,12 @@ public CompanyServiceStub getStub() { * } *

* - * @param parent Required. - *

Resource name of the tenant under which the company is created. + * @param parent Required. Resource name of the tenant under which the company is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and a default tenant is created if unspecified, for example, * "projects/api-test-project". - * @param company Required. - *

The company to be created. + * @param company Required. The company to be created. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Company createCompany(TenantOrProjectName parent, Company company) { @@ -203,14 +201,12 @@ public final Company createCompany(TenantOrProjectName parent, Company company) * } *

* - * @param parent Required. - *

Resource name of the tenant under which the company is created. + * @param parent Required. Resource name of the tenant under which the company is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and a default tenant is created if unspecified, for example, * "projects/api-test-project". - * @param company Required. - *

The company to be created. + * @param company Required. The company to be created. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Company createCompany(String parent, Company company) { @@ -282,8 +278,7 @@ public final UnaryCallable createCompanyCallable( * } *

* - * @param name Required. - *

The resource name of the company to be retrieved. + * @param name Required. The resource name of the company to be retrieved. *

The format is "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for * example, "projects/api-test-project/tenants/foo/companies/bar". *

Tenant id is optional and the default tenant is used if unspecified, for example, @@ -310,8 +305,7 @@ public final Company getCompany(CompanyName name) { * } *

* - * @param name Required. - *

The resource name of the company to be retrieved. + * @param name Required. The resource name of the company to be retrieved. *

The format is "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for * example, "projects/api-test-project/tenants/foo/companies/bar". *

Tenant id is optional and the default tenant is used if unspecified, for example, @@ -382,8 +376,7 @@ public final UnaryCallable getCompanyCallable() { * } *

* - * @param company Required. - *

The company resource to replace the current resource in the system. + * @param company Required. The company resource to replace the current resource in the system. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Company updateCompany(Company company) { @@ -450,8 +443,7 @@ public final UnaryCallable updateCompanyCallable( * } *

* - * @param name Required. - *

The resource name of the company to be deleted. + * @param name Required. The resource name of the company to be deleted. *

The format is "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for * example, "projects/api-test-project/tenants/foo/companies/bar". *

Tenant id is optional and the default tenant is used if unspecified, for example, @@ -478,8 +470,7 @@ public final void deleteCompany(CompanyName name) { * } *

* - * @param name Required. - *

The resource name of the company to be deleted. + * @param name Required. The resource name of the company to be deleted. *

The format is "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for * example, "projects/api-test-project/tenants/foo/companies/bar". *

Tenant id is optional and the default tenant is used if unspecified, for example, @@ -552,8 +543,7 @@ public final UnaryCallable deleteCompanyCallable() * } *

* - * @param parent Required. - *

Resource name of the tenant under which the company is created. + * @param parent Required. Resource name of the tenant under which the company is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and the default tenant is used if unspecified, for example, @@ -583,8 +573,7 @@ public final ListCompaniesPagedResponse listCompanies(TenantOrProjectName parent * } *

* - * @param parent Required. - *

Resource name of the tenant under which the company is created. + * @param parent Required. Resource name of the tenant under which the company is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and the default tenant is used if unspecified, for example, diff --git a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/EventServiceClient.java b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/EventServiceClient.java index 70720cbe5b62..2193f5876eb8 100644 --- a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/EventServiceClient.java +++ b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/EventServiceClient.java @@ -161,15 +161,13 @@ public EventServiceStub getStub() { * } *

* - * @param parent Required. - *

Resource name of the tenant under which the event is created. + * @param parent Required. Resource name of the tenant under which the event is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and a default tenant is created if unspecified, for example, * "projects/api-test-project". - * @param clientEvent Required. - *

Events issued when end user interacts with customer's application that uses Cloud Talent - * Solution. + * @param clientEvent Required. Events issued when end user interacts with customer's application + * that uses Cloud Talent Solution. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ClientEvent createClientEvent(TenantOrProjectName parent, ClientEvent clientEvent) { @@ -199,15 +197,13 @@ public final ClientEvent createClientEvent(TenantOrProjectName parent, ClientEve * } *

* - * @param parent Required. - *

Resource name of the tenant under which the event is created. + * @param parent Required. Resource name of the tenant under which the event is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and a default tenant is created if unspecified, for example, * "projects/api-test-project". - * @param clientEvent Required. - *

Events issued when end user interacts with customer's application that uses Cloud Talent - * Solution. + * @param clientEvent Required. Events issued when end user interacts with customer's application + * that uses Cloud Talent Solution. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ClientEvent createClientEvent(String parent, ClientEvent clientEvent) { diff --git a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/JobServiceClient.java b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/JobServiceClient.java index c57a1f9b9772..50a11c46226a 100644 --- a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/JobServiceClient.java +++ b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/JobServiceClient.java @@ -187,14 +187,12 @@ public final OperationsClient getOperationsClient() { * } *

* - * @param parent Required. - *

The resource name of the tenant under which the job is created. + * @param parent Required. The resource name of the tenant under which the job is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and a default tenant is created if unspecified, for example, * "projects/api-test-project". - * @param job Required. - *

The Job to be created. + * @param job Required. The Job to be created. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Job createJob(TenantOrProjectName parent, Job job) { @@ -223,14 +221,12 @@ public final Job createJob(TenantOrProjectName parent, Job job) { * } *

* - * @param parent Required. - *

The resource name of the tenant under which the job is created. + * @param parent Required. The resource name of the tenant under which the job is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and a default tenant is created if unspecified, for example, * "projects/api-test-project". - * @param job Required. - *

The Job to be created. + * @param job Required. The Job to be created. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Job createJob(String parent, Job job) { @@ -305,8 +301,7 @@ public final UnaryCallable createJobCallable() { * } *

* - * @param name Required. - *

The resource name of the job to retrieve. + * @param name Required. The resource name of the job to retrieve. *

The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for example, * "projects/api-test-project/tenants/foo/jobs/1234". *

Tenant id is optional and the default tenant is used if unspecified, for example, @@ -333,8 +328,7 @@ public final Job getJob(JobName name) { * } *

* - * @param name Required. - *

The resource name of the job to retrieve. + * @param name Required. The resource name of the job to retrieve. *

The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for example, * "projects/api-test-project/tenants/foo/jobs/1234". *

Tenant id is optional and the default tenant is used if unspecified, for example, @@ -408,8 +402,7 @@ public final UnaryCallable getJobCallable() { * } *

* - * @param job Required. - *

The Job to be updated. + * @param job Required. The Job to be updated. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Job updateJob(Job job) { @@ -484,8 +477,7 @@ public final UnaryCallable updateJobCallable() { * } *

* - * @param name Required. - *

The resource name of the job to be deleted. + * @param name Required. The resource name of the job to be deleted. *

The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for example, * "projects/api-test-project/tenants/foo/jobs/1234". *

Tenant id is optional and the default tenant is used if unspecified, for example, @@ -514,8 +506,7 @@ public final void deleteJob(JobName name) { * } *

* - * @param name Required. - *

The resource name of the job to be deleted. + * @param name Required. The resource name of the job to be deleted. *

The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for example, * "projects/api-test-project/tenants/foo/jobs/1234". *

Tenant id is optional and the default tenant is used if unspecified, for example, @@ -593,14 +584,12 @@ public final UnaryCallable deleteJobCallable() { * } *

* - * @param parent Required. - *

The resource name of the tenant under which the job is created. + * @param parent Required. The resource name of the tenant under which the job is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and the default tenant is used if unspecified, for example, * "projects/api-test-project". - * @param filter Required. - *

The filter string specifies the jobs to be enumerated. + * @param filter Required. The filter string specifies the jobs to be enumerated. *

Supported operator: =, AND *

The fields eligible for filtering are: *

* `companyName` (Required) * `requisitionId` (Optional) * `status` @@ -637,14 +626,12 @@ public final ListJobsPagedResponse listJobs(TenantOrProjectName parent, String f * } *

* - * @param parent Required. - *

The resource name of the tenant under which the job is created. + * @param parent Required. The resource name of the tenant under which the job is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and the default tenant is used if unspecified, for example, * "projects/api-test-project". - * @param filter Required. - *

The filter string specifies the jobs to be enumerated. + * @param filter Required. The filter string specifies the jobs to be enumerated. *

Supported operator: =, AND *

The fields eligible for filtering are: *

* `companyName` (Required) * `requisitionId` (Optional) * `status` @@ -762,14 +749,12 @@ public final UnaryCallable listJobsCallable() * } *

* - * @param parent Required. - *

The resource name of the tenant under which the job is created. + * @param parent Required. The resource name of the tenant under which the job is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and the default tenant is used if unspecified, for example, * "projects/api-test-project". - * @param filter Required. - *

The filter string specifies the jobs to be deleted. + * @param filter Required. The filter string specifies the jobs to be deleted. *

Supported operator: =, AND *

The fields eligible for filtering are: *

* `companyName` (Required) * `requisitionId` (Required) @@ -801,14 +786,12 @@ public final void batchDeleteJobs(TenantOrProjectName parent, String filter) { * } *

* - * @param parent Required. - *

The resource name of the tenant under which the job is created. + * @param parent Required. The resource name of the tenant under which the job is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and the default tenant is used if unspecified, for example, * "projects/api-test-project". - * @param filter Required. - *

The filter string specifies the jobs to be deleted. + * @param filter Required. The filter string specifies the jobs to be deleted. *

Supported operator: =, AND *

The fields eligible for filtering are: *

* `companyName` (Required) * `requisitionId` (Required) @@ -1098,14 +1081,12 @@ public final UnaryCallable searchJobsForA * } *

* - * @param parent Required. - *

The resource name of the tenant under which the job is created. + * @param parent Required. The resource name of the tenant under which the job is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and a default tenant is created if unspecified, for example, * "projects/api-test-project". - * @param jobs Required. - *

The jobs to be created. + * @param jobs Required. The jobs to be created. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @BetaApi( @@ -1210,14 +1191,12 @@ public final UnaryCallable batchCreateJobsCal * } *

* - * @param parent Required. - *

The resource name of the tenant under which the job is created. + * @param parent Required. The resource name of the tenant under which the job is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenant/foo". *

Tenant id is optional and the default tenant is used if unspecified, for example, * "projects/api-test-project". - * @param jobs Required. - *

The jobs to be updated. + * @param jobs Required. The jobs to be updated. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @BetaApi( diff --git a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/ProfileServiceClient.java b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/ProfileServiceClient.java index 5b0e08676158..abe68f000a77 100644 --- a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/ProfileServiceClient.java +++ b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/ProfileServiceClient.java @@ -171,8 +171,7 @@ public ProfileServiceStub getStub() { * } *

* - * @param parent Required. - *

The resource name of the tenant under which the job is created. + * @param parent Required. The resource name of the tenant under which the profile is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenants/foo". * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -200,8 +199,7 @@ public final ListProfilesPagedResponse listProfiles(TenantName parent) { * } *

* - * @param parent Required. - *

The resource name of the tenant under which the job is created. + * @param parent Required. The resource name of the tenant under which the profile is created. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenants/foo". * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -306,12 +304,10 @@ public final UnaryCallable listProfil * } *

* - * @param parent Required. - *

The name of the tenant this profile belongs to. + * @param parent Required. The name of the tenant this profile belongs to. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenants/foo". - * @param profile Required. - *

The profile to be created. + * @param profile Required. The profile to be created. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Profile createProfile(TenantName parent, Profile profile) { @@ -338,12 +334,10 @@ public final Profile createProfile(TenantName parent, Profile profile) { * } *

* - * @param parent Required. - *

The name of the tenant this profile belongs to. + * @param parent Required. The name of the tenant this profile belongs to. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenants/foo". - * @param profile Required. - *

The profile to be created. + * @param profile Required. The profile to be created. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Profile createProfile(String parent, Profile profile) { @@ -415,8 +409,7 @@ public final UnaryCallable createProfileCallable( * } *

* - * @param name Required. - *

Resource name of the profile to get. + * @param name Required. Resource name of the profile to get. *

The format is "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for * example, "projects/api-test-project/tenants/foo/profiles/bar". * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -441,8 +434,7 @@ public final Profile getProfile(ProfileName name) { * } *

* - * @param name Required. - *

Resource name of the profile to get. + * @param name Required. Resource name of the profile to get. *

The format is "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for * example, "projects/api-test-project/tenants/foo/profiles/bar". * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -511,8 +503,7 @@ public final UnaryCallable getProfileCallable() { * } *

* - * @param profile Required. - *

Profile to be updated. + * @param profile Required. Profile to be updated. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Profile updateProfile(Profile profile) { @@ -580,8 +571,7 @@ public final UnaryCallable updateProfileCallable( * } *

* - * @param name Required. - *

Resource name of the profile to be deleted. + * @param name Required. Resource name of the profile to be deleted. *

The format is "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for * example, "projects/api-test-project/tenants/foo/profiles/bar". * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -607,8 +597,7 @@ public final void deleteProfile(ProfileName name) { * } *

* - * @param name Required. - *

Resource name of the profile to be deleted. + * @param name Required. Resource name of the profile to be deleted. *

The format is "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}", for * example, "projects/api-test-project/tenants/foo/profiles/bar". * @throws com.google.api.gax.rpc.ApiException if the remote call fails diff --git a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/TenantServiceClient.java b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/TenantServiceClient.java index 65476dc57674..2b451f0e7774 100644 --- a/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/TenantServiceClient.java +++ b/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/TenantServiceClient.java @@ -169,11 +169,9 @@ public TenantServiceStub getStub() { * } *

* - * @param parent Required. - *

Resource name of the project under which the tenant is created. + * @param parent Required. Resource name of the project under which the tenant is created. *

The format is "projects/{project_id}", for example, "projects/api-test-project". - * @param tenant Required. - *

The tenant to be created. + * @param tenant Required. The tenant to be created. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Tenant createTenant(ProjectName parent, Tenant tenant) { @@ -200,11 +198,9 @@ public final Tenant createTenant(ProjectName parent, Tenant tenant) { * } *

* - * @param parent Required. - *

Resource name of the project under which the tenant is created. + * @param parent Required. Resource name of the project under which the tenant is created. *

The format is "projects/{project_id}", for example, "projects/api-test-project". - * @param tenant Required. - *

The tenant to be created. + * @param tenant Required. The tenant to be created. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Tenant createTenant(String parent, Tenant tenant) { @@ -276,8 +272,7 @@ public final UnaryCallable createTenantCallable() { * } *

* - * @param name Required. - *

The resource name of the tenant to be retrieved. + * @param name Required. The resource name of the tenant to be retrieved. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenants/foo". * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -302,8 +297,7 @@ public final Tenant getTenant(TenantName name) { * } *

* - * @param name Required. - *

The resource name of the tenant to be retrieved. + * @param name Required. The resource name of the tenant to be retrieved. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenants/foo". * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -372,8 +366,7 @@ public final UnaryCallable getTenantCallable() { * } *

* - * @param tenant Required. - *

The tenant resource to replace the current resource in the system. + * @param tenant Required. The tenant resource to replace the current resource in the system. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Tenant updateTenant(Tenant tenant) { @@ -440,8 +433,7 @@ public final UnaryCallable updateTenantCallable() { * } *

* - * @param name Required. - *

The resource name of the tenant to be deleted. + * @param name Required. The resource name of the tenant to be deleted. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenants/foo". * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -466,8 +458,7 @@ public final void deleteTenant(TenantName name) { * } *

* - * @param name Required. - *

The resource name of the tenant to be deleted. + * @param name Required. The resource name of the tenant to be deleted. *

The format is "projects/{project_id}/tenants/{tenant_id}", for example, * "projects/api-test-project/tenants/foo". * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -538,8 +529,7 @@ public final UnaryCallable deleteTenantCallable() { * } *

* - * @param parent Required. - *

Resource name of the project under which the tenant is created. + * @param parent Required. Resource name of the project under which the tenant is created. *

The format is "projects/{project_id}", for example, "projects/api-test-project". * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -566,8 +556,7 @@ public final ListTenantsPagedResponse listTenants(ProjectName parent) { * } *

* - * @param parent Required. - *

Resource name of the project under which the tenant is created. + * @param parent Required. Resource name of the project under which the tenant is created. *

The format is "projects/{project_id}", for example, "projects/api-test-project". * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ diff --git a/google-cloud-clients/google-cloud-talent/synth.metadata b/google-cloud-clients/google-cloud-talent/synth.metadata index 1a72f535c0a2..14701ddfc75c 100644 --- a/google-cloud-clients/google-cloud-talent/synth.metadata +++ b/google-cloud-clients/google-cloud-talent/synth.metadata @@ -1,19 +1,19 @@ { - "updateTime": "2019-05-29T07:57:44.115349Z", + "updateTime": "2019-07-02T07:56:16.139544Z", "sources": [ { "generator": { "name": "artman", - "version": "0.21.0", - "dockerImage": "googleapis/artman@sha256:28d4271586772b275cd3bc95cb46bd227a24d3c9048de45dccdb7f3afb0bfba9" + "version": "0.29.3", + "dockerImage": "googleapis/artman@sha256:8900f94a81adaab0238965aa8a7b3648791f4f3a95ee65adc6a56cfcc3753101" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "fa15c3006e27b87a20c7a9ffbb7bbe4149c61387", - "internalRef": "250401304" + "sha": "5322233f8cbec4d3f8c17feca2507ef27d4a07c9", + "internalRef": "256042411" } } ], From c61f14039a2cd3d7c42942385093e0f3e1910835 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Tue, 2 Jul 2019 09:46:39 -0700 Subject: [PATCH 21/58] Regenerate securitycenter client (#5632) --- .../v1/SecuritycenterService.java | 390 +++++++++--------- .../v1/securitycenter_service.proto | 1 + .../synth.metadata | 10 +- 3 files changed, 203 insertions(+), 198 deletions(-) diff --git a/google-api-grpc/proto-google-cloud-securitycenter-v1/src/main/java/com/google/cloud/securitycenter/v1/SecuritycenterService.java b/google-api-grpc/proto-google-cloud-securitycenter-v1/src/main/java/com/google/cloud/securitycenter/v1/SecuritycenterService.java index 8ab889fbe374..dd2abe33b687 100644 --- a/google-api-grpc/proto-google-cloud-securitycenter-v1/src/main/java/com/google/cloud/securitycenter/v1/SecuritycenterService.java +++ b/google-api-grpc/proto-google-cloud-securitycenter-v1/src/main/java/com/google/cloud/securitycenter/v1/SecuritycenterService.java @@ -123,200 +123,202 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "oto\032*google/cloud/securitycenter/v1/asse" + "t.proto\032,google/cloud/securitycenter/v1/" + "finding.proto\032:google/cloud/securitycent" - + "er/v1/organization_settings.proto\0323googl" - + "e/cloud/securitycenter/v1/security_marks" - + ".proto\032+google/cloud/securitycenter/v1/s" - + "ource.proto\032\036google/iam/v1/iam_policy.pr" - + "oto\032\032google/iam/v1/policy.proto\032#google/" - + "longrunning/operations.proto\032\036google/pro" - + "tobuf/duration.proto\032\033google/protobuf/em" - + "pty.proto\032 google/protobuf/field_mask.pr" - + "oto\032\034google/protobuf/struct.proto\032\037googl" - + "e/protobuf/timestamp.proto\"t\n\024CreateFind" - + "ingRequest\022\016\n\006parent\030\001 \001(\t\022\022\n\nfinding_id" - + "\030\002 \001(\t\0228\n\007finding\030\003 \001(\0132\'.google.cloud.s" - + "ecuritycenter.v1.Finding\"]\n\023CreateSource" - + "Request\022\016\n\006parent\030\001 \001(\t\0226\n\006source\030\002 \001(\0132" - + "&.google.cloud.securitycenter.v1.Source\"" - + ".\n\036GetOrganizationSettingsRequest\022\014\n\004nam" - + "e\030\001 \001(\t\" \n\020GetSourceRequest\022\014\n\004name\030\001 \001(" - + "\t\"\327\001\n\022GroupAssetsRequest\022\016\n\006parent\030\001 \001(\t" - + "\022\016\n\006filter\030\002 \001(\t\022\020\n\010group_by\030\003 \001(\t\0223\n\020co" - + "mpare_duration\030\004 \001(\0132\031.google.protobuf.D" - + "uration\022-\n\tread_time\030\005 \001(\0132\032.google.prot" - + "obuf.Timestamp\022\022\n\npage_token\030\007 \001(\t\022\021\n\tpa" - + "ge_size\030\010 \001(\005J\004\010\006\020\007\"\270\001\n\023GroupAssetsRespo" - + "nse\022E\n\020group_by_results\030\001 \003(\0132+.google.c" - + "loud.securitycenter.v1.GroupResult\022-\n\tre" - + "ad_time\030\002 \001(\0132\032.google.protobuf.Timestam" - + "p\022\027\n\017next_page_token\030\003 \001(\t\022\022\n\ntotal_size" - + "\030\004 \001(\005\"\331\001\n\024GroupFindingsRequest\022\016\n\006paren" - + "t\030\001 \001(\t\022\016\n\006filter\030\002 \001(\t\022\020\n\010group_by\030\003 \001(" - + "\t\022-\n\tread_time\030\004 \001(\0132\032.google.protobuf.T" - + "imestamp\0223\n\020compare_duration\030\005 \001(\0132\031.goo" - + "gle.protobuf.Duration\022\022\n\npage_token\030\007 \001(" - + "\t\022\021\n\tpage_size\030\010 \001(\005J\004\010\006\020\007\"\272\001\n\025GroupFind" - + "ingsResponse\022E\n\020group_by_results\030\001 \003(\0132+" + + "er/v1/organization_settings.proto\032Agoogl" + + "e/cloud/securitycenter/v1/run_asset_disc" + + "overy_response.proto\0323google/cloud/secur" + + "itycenter/v1/security_marks.proto\032+googl" + + "e/cloud/securitycenter/v1/source.proto\032\036" + + "google/iam/v1/iam_policy.proto\032\032google/i" + + "am/v1/policy.proto\032#google/longrunning/o" + + "perations.proto\032\036google/protobuf/duratio" + + "n.proto\032\033google/protobuf/empty.proto\032 go" + + "ogle/protobuf/field_mask.proto\032\034google/p" + + "rotobuf/struct.proto\032\037google/protobuf/ti" + + "mestamp.proto\"t\n\024CreateFindingRequest\022\016\n" + + "\006parent\030\001 \001(\t\022\022\n\nfinding_id\030\002 \001(\t\0228\n\007fin" + + "ding\030\003 \001(\0132\'.google.cloud.securitycenter" + + ".v1.Finding\"]\n\023CreateSourceRequest\022\016\n\006pa" + + "rent\030\001 \001(\t\0226\n\006source\030\002 \001(\0132&.google.clou" + + "d.securitycenter.v1.Source\".\n\036GetOrganiz" + + "ationSettingsRequest\022\014\n\004name\030\001 \001(\t\" \n\020Ge" + + "tSourceRequest\022\014\n\004name\030\001 \001(\t\"\327\001\n\022GroupAs" + + "setsRequest\022\016\n\006parent\030\001 \001(\t\022\016\n\006filter\030\002 " + + "\001(\t\022\020\n\010group_by\030\003 \001(\t\0223\n\020compare_duratio" + + "n\030\004 \001(\0132\031.google.protobuf.Duration\022-\n\tre" + + "ad_time\030\005 \001(\0132\032.google.protobuf.Timestam" + + "p\022\022\n\npage_token\030\007 \001(\t\022\021\n\tpage_size\030\010 \001(\005" + + "J\004\010\006\020\007\"\270\001\n\023GroupAssetsResponse\022E\n\020group_" + + "by_results\030\001 \003(\0132+.google.cloud.security" + + "center.v1.GroupResult\022-\n\tread_time\030\002 \001(\013" + + "2\032.google.protobuf.Timestamp\022\027\n\017next_pag" + + "e_token\030\003 \001(\t\022\022\n\ntotal_size\030\004 \001(\005\"\331\001\n\024Gr" + + "oupFindingsRequest\022\016\n\006parent\030\001 \001(\t\022\016\n\006fi" + + "lter\030\002 \001(\t\022\020\n\010group_by\030\003 \001(\t\022-\n\tread_tim" + + "e\030\004 \001(\0132\032.google.protobuf.Timestamp\0223\n\020c" + + "ompare_duration\030\005 \001(\0132\031.google.protobuf." + + "Duration\022\022\n\npage_token\030\007 \001(\t\022\021\n\tpage_siz" + + "e\030\010 \001(\005J\004\010\006\020\007\"\272\001\n\025GroupFindingsResponse\022" + + "E\n\020group_by_results\030\001 \003(\0132+.google.cloud" + + ".securitycenter.v1.GroupResult\022-\n\tread_t" + + "ime\030\002 \001(\0132\032.google.protobuf.Timestamp\022\027\n" + + "\017next_page_token\030\003 \001(\t\022\022\n\ntotal_size\030\004 \001" + + "(\005\"\270\001\n\013GroupResult\022O\n\nproperties\030\001 \003(\0132;" + ".google.cloud.securitycenter.v1.GroupRes" - + "ult\022-\n\tread_time\030\002 \001(\0132\032.google.protobuf" - + ".Timestamp\022\027\n\017next_page_token\030\003 \001(\t\022\022\n\nt" - + "otal_size\030\004 \001(\005\"\270\001\n\013GroupResult\022O\n\nprope" - + "rties\030\001 \003(\0132;.google.cloud.securitycente" - + "r.v1.GroupResult.PropertiesEntry\022\r\n\005coun" - + "t\030\002 \001(\003\032I\n\017PropertiesEntry\022\013\n\003key\030\001 \001(\t\022" - + "%\n\005value\030\002 \001(\0132\026.google.protobuf.Value:\002" - + "8\001\"K\n\022ListSourcesRequest\022\016\n\006parent\030\001 \001(\t" - + "\022\022\n\npage_token\030\002 \001(\t\022\021\n\tpage_size\030\007 \001(\005\"" - + "g\n\023ListSourcesResponse\0227\n\007sources\030\001 \003(\0132" - + "&.google.cloud.securitycenter.v1.Source\022" - + "\027\n\017next_page_token\030\002 \001(\t\"\206\002\n\021ListAssetsR" - + "equest\022\016\n\006parent\030\001 \001(\t\022\016\n\006filter\030\002 \001(\t\022\020" - + "\n\010order_by\030\003 \001(\t\022-\n\tread_time\030\004 \001(\0132\032.go" - + "ogle.protobuf.Timestamp\0223\n\020compare_durat" - + "ion\030\005 \001(\0132\031.google.protobuf.Duration\022.\n\n" - + "field_mask\030\007 \001(\0132\032.google.protobuf.Field" - + "Mask\022\022\n\npage_token\030\010 \001(\t\022\021\n\tpage_size\030\t " - + "\001(\005J\004\010\006\020\007\"\303\003\n\022ListAssetsResponse\022`\n\023list" - + "_assets_results\030\001 \003(\0132C.google.cloud.sec" - + "uritycenter.v1.ListAssetsResponse.ListAs" - + "setsResult\022-\n\tread_time\030\002 \001(\0132\032.google.p" - + "rotobuf.Timestamp\022\027\n\017next_page_token\030\003 \001" - + "(\t\022\022\n\ntotal_size\030\004 \001(\005\032\356\001\n\020ListAssetsRes" - + "ult\0224\n\005asset\030\001 \001(\0132%.google.cloud.securi" - + "tycenter.v1.Asset\022e\n\014state_change\030\002 \001(\0162" - + "O.google.cloud.securitycenter.v1.ListAss" - + "etsResponse.ListAssetsResult.StateChange" - + "\"=\n\013StateChange\022\n\n\006UNUSED\020\000\022\t\n\005ADDED\020\001\022\013" - + "\n\007REMOVED\020\002\022\n\n\006ACTIVE\020\003\"\210\002\n\023ListFindings" - + "Request\022\016\n\006parent\030\001 \001(\t\022\016\n\006filter\030\002 \001(\t\022" - + "\020\n\010order_by\030\003 \001(\t\022-\n\tread_time\030\004 \001(\0132\032.g" - + "oogle.protobuf.Timestamp\0223\n\020compare_dura" - + "tion\030\005 \001(\0132\031.google.protobuf.Duration\022.\n" - + "\nfield_mask\030\007 \001(\0132\032.google.protobuf.Fiel" - + "dMask\022\022\n\npage_token\030\010 \001(\t\022\021\n\tpage_size\030\t" - + " \001(\005J\004\010\006\020\007\"\345\003\n\024ListFindingsResponse\022f\n\025l" - + "ist_findings_results\030\001 \003(\0132G.google.clou" - + "d.securitycenter.v1.ListFindingsResponse" - + ".ListFindingsResult\022-\n\tread_time\030\002 \001(\0132\032" - + ".google.protobuf.Timestamp\022\027\n\017next_page_" - + "token\030\003 \001(\t\022\022\n\ntotal_size\030\004 \001(\005\032\210\002\n\022List" - + "FindingsResult\0228\n\007finding\030\001 \001(\0132\'.google" - + ".cloud.securitycenter.v1.Finding\022i\n\014stat" - + "e_change\030\002 \001(\0162S.google.cloud.securityce" - + "nter.v1.ListFindingsResponse.ListFinding" - + "sResult.StateChange\"M\n\013StateChange\022\n\n\006UN" - + "USED\020\000\022\013\n\007CHANGED\020\001\022\r\n\tUNCHANGED\020\002\022\t\n\005AD" - + "DED\020\003\022\013\n\007REMOVED\020\004\"\224\001\n\026SetFindingStateRe" - + "quest\022\014\n\004name\030\001 \001(\t\022<\n\005state\030\002 \001(\0162-.goo" - + "gle.cloud.securitycenter.v1.Finding.Stat" - + "e\022.\n\nstart_time\030\003 \001(\0132\032.google.protobuf." - + "Timestamp\"*\n\030RunAssetDiscoveryRequest\022\016\n" - + "\006parent\030\001 \001(\t\"\201\001\n\024UpdateFindingRequest\0228" - + "\n\007finding\030\001 \001(\0132\'.google.cloud.securityc" - + "enter.v1.Finding\022/\n\013update_mask\030\002 \001(\0132\032." - + "google.protobuf.FieldMask\"\251\001\n!UpdateOrga" - + "nizationSettingsRequest\022S\n\025organization_" - + "settings\030\001 \001(\01324.google.cloud.securityce" - + "nter.v1.OrganizationSettings\022/\n\013update_m" - + "ask\030\002 \001(\0132\032.google.protobuf.FieldMask\"~\n" - + "\023UpdateSourceRequest\0226\n\006source\030\001 \001(\0132&.g" - + "oogle.cloud.securitycenter.v1.Source\022/\n\013" - + "update_mask\030\002 \001(\0132\032.google.protobuf.Fiel" - + "dMask\"\304\001\n\032UpdateSecurityMarksRequest\022E\n\016" - + "security_marks\030\001 \001(\0132-.google.cloud.secu" - + "ritycenter.v1.SecurityMarks\022/\n\013update_ma" - + "sk\030\002 \001(\0132\032.google.protobuf.FieldMask\022.\n\n" - + "start_time\030\003 \001(\0132\032.google.protobuf.Times" - + "tamp2\220\032\n\016SecurityCenter\022\241\001\n\014CreateSource" - + "\0223.google.cloud.securitycenter.v1.Create" - + "SourceRequest\032&.google.cloud.securitycen" - + "ter.v1.Source\"4\202\323\344\223\002.\"$/v1/{parent=organ" - + "izations/*}/sources:\006source\022\260\001\n\rCreateFi" - + "nding\0224.google.cloud.securitycenter.v1.C" - + "reateFindingRequest\032\'.google.cloud.secur" - + "itycenter.v1.Finding\"@\202\323\344\223\002:\"//v1/{paren" - + "t=organizations/*/sources/*}/findings:\007f" - + "inding\022\213\001\n\014GetIamPolicy\022\".google.iam.v1." - + "GetIamPolicyRequest\032\025.google.iam.v1.Poli" - + "cy\"@\202\323\344\223\002:\"5/v1/{resource=organizations/" - + "*/sources/*}:getIamPolicy:\001*\022\310\001\n\027GetOrga" - + "nizationSettings\022>.google.cloud.security" - + "center.v1.GetOrganizationSettingsRequest" - + "\0324.google.cloud.securitycenter.v1.Organi" - + "zationSettings\"7\202\323\344\223\0021\022//v1/{name=organi" - + "zations/*/organizationSettings}\022\223\001\n\tGetS" - + "ource\0220.google.cloud.securitycenter.v1.G" - + "etSourceRequest\032&.google.cloud.securityc" - + "enter.v1.Source\",\202\323\344\223\002&\022$/v1/{name=organ" - + "izations/*/sources/*}\022\254\001\n\013GroupAssets\0222." - + "google.cloud.securitycenter.v1.GroupAsse" - + "tsRequest\0323.google.cloud.securitycenter." - + "v1.GroupAssetsResponse\"4\202\323\344\223\002.\")/v1/{par" - + "ent=organizations/*}/assets:group:\001*\022\276\001\n" - + "\rGroupFindings\0224.google.cloud.securityce" - + "nter.v1.GroupFindingsRequest\0325.google.cl" - + "oud.securitycenter.v1.GroupFindingsRespo" - + "nse\"@\202\323\344\223\002:\"5/v1/{parent=organizations/*" - + "/sources/*}/findings:group:\001*\022\240\001\n\nListAs" - + "sets\0221.google.cloud.securitycenter.v1.Li" - + "stAssetsRequest\0322.google.cloud.securityc" - + "enter.v1.ListAssetsResponse\"+\202\323\344\223\002%\022#/v1" - + "/{parent=organizations/*}/assets\022\262\001\n\014Lis" - + "tFindings\0223.google.cloud.securitycenter." - + "v1.ListFindingsRequest\0324.google.cloud.se" - + "curitycenter.v1.ListFindingsResponse\"7\202\323" - + "\344\223\0021\022//v1/{parent=organizations/*/source" - + "s/*}/findings\022\244\001\n\013ListSources\0222.google.c" - + "loud.securitycenter.v1.ListSourcesReques" - + "t\0323.google.cloud.securitycenter.v1.ListS" - + "ourcesResponse\",\202\323\344\223\002&\022$/v1/{parent=orga" - + "nizations/*}/sources\022\251\001\n\021RunAssetDiscove" - + "ry\0228.google.cloud.securitycenter.v1.RunA" - + "ssetDiscoveryRequest\032\035.google.longrunnin" - + "g.Operation\";\202\323\344\223\0025\"0/v1/{parent=organiz" - + "ations/*}/assets:runDiscovery:\001*\022\267\001\n\017Set" - + "FindingState\0226.google.cloud.securitycent" - + "er.v1.SetFindingStateRequest\032\'.google.cl" - + "oud.securitycenter.v1.Finding\"C\202\323\344\223\002=\"8/" - + "v1/{name=organizations/*/sources/*/findi" - + "ngs/*}:setState:\001*\022\213\001\n\014SetIamPolicy\022\".go" - + "ogle.iam.v1.SetIamPolicyRequest\032\025.google" - + ".iam.v1.Policy\"@\202\323\344\223\002:\"5/v1/{resource=or" - + "ganizations/*/sources/*}:setIamPolicy:\001*" - + "\022\261\001\n\022TestIamPermissions\022(.google.iam.v1." - + "TestIamPermissionsRequest\032).google.iam.v" - + "1.TestIamPermissionsResponse\"F\202\323\344\223\002@\";/v" - + "1/{resource=organizations/*/sources/*}:t" - + "estIamPermissions:\001*\022\270\001\n\rUpdateFinding\0224" - + ".google.cloud.securitycenter.v1.UpdateFi" - + "ndingRequest\032\'.google.cloud.securitycent" - + "er.v1.Finding\"H\202\323\344\223\002B27/v1/{finding.name" - + "=organizations/*/sources/*/findings/*}:\007" - + "finding\022\373\001\n\032UpdateOrganizationSettings\022A" - + ".google.cloud.securitycenter.v1.UpdateOr" - + "ganizationSettingsRequest\0324.google.cloud" - + ".securitycenter.v1.OrganizationSettings\"" - + "d\202\323\344\223\002^2E/v1/{organization_settings.name" - + "=organizations/*/organizationSettings}:\025" - + "organization_settings\022\250\001\n\014UpdateSource\0223" - + ".google.cloud.securitycenter.v1.UpdateSo" - + "urceRequest\032&.google.cloud.securitycente" - + "r.v1.Source\";\202\323\344\223\00252+/v1/{source.name=or" - + "ganizations/*/sources/*}:\006source\022\274\002\n\023Upd" - + "ateSecurityMarks\022:.google.cloud.security" - + "center.v1.UpdateSecurityMarksRequest\032-.g" - + "oogle.cloud.securitycenter.v1.SecurityMa" - + "rks\"\271\001\202\323\344\223\002\262\0012@/v1/{security_marks.name=" - + "organizations/*/assets/*/securityMarks}:" - + "\016security_marksZ^2L/v1/{security_marks.n" - + "ame=organizations/*/sources/*/findings/*" - + "/securityMarks}:\016security_marksB\332\001\n\"com." - + "google.cloud.securitycenter.v1P\001ZLgoogle" - + ".golang.org/genproto/googleapis/cloud/se" - + "curitycenter/v1;securitycenter\252\002\036Google." - + "Cloud.SecurityCenter.V1\312\002\036Google\\Cloud\\S" - + "ecurityCenter\\V1\352\002!Google::Cloud::Securi" - + "tyCenter::V1b\006proto3" + + "ult.PropertiesEntry\022\r\n\005count\030\002 \001(\003\032I\n\017Pr" + + "opertiesEntry\022\013\n\003key\030\001 \001(\t\022%\n\005value\030\002 \001(" + + "\0132\026.google.protobuf.Value:\0028\001\"K\n\022ListSou" + + "rcesRequest\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_toke" + + "n\030\002 \001(\t\022\021\n\tpage_size\030\007 \001(\005\"g\n\023ListSource" + + "sResponse\0227\n\007sources\030\001 \003(\0132&.google.clou" + + "d.securitycenter.v1.Source\022\027\n\017next_page_" + + "token\030\002 \001(\t\"\206\002\n\021ListAssetsRequest\022\016\n\006par" + + "ent\030\001 \001(\t\022\016\n\006filter\030\002 \001(\t\022\020\n\010order_by\030\003 " + + "\001(\t\022-\n\tread_time\030\004 \001(\0132\032.google.protobuf" + + ".Timestamp\0223\n\020compare_duration\030\005 \001(\0132\031.g" + + "oogle.protobuf.Duration\022.\n\nfield_mask\030\007 " + + "\001(\0132\032.google.protobuf.FieldMask\022\022\n\npage_" + + "token\030\010 \001(\t\022\021\n\tpage_size\030\t \001(\005J\004\010\006\020\007\"\303\003\n" + + "\022ListAssetsResponse\022`\n\023list_assets_resul" + + "ts\030\001 \003(\0132C.google.cloud.securitycenter.v" + + "1.ListAssetsResponse.ListAssetsResult\022-\n" + + "\tread_time\030\002 \001(\0132\032.google.protobuf.Times" + + "tamp\022\027\n\017next_page_token\030\003 \001(\t\022\022\n\ntotal_s" + + "ize\030\004 \001(\005\032\356\001\n\020ListAssetsResult\0224\n\005asset\030" + + "\001 \001(\0132%.google.cloud.securitycenter.v1.A" + + "sset\022e\n\014state_change\030\002 \001(\0162O.google.clou" + + "d.securitycenter.v1.ListAssetsResponse.L" + + "istAssetsResult.StateChange\"=\n\013StateChan" + + "ge\022\n\n\006UNUSED\020\000\022\t\n\005ADDED\020\001\022\013\n\007REMOVED\020\002\022\n" + + "\n\006ACTIVE\020\003\"\210\002\n\023ListFindingsRequest\022\016\n\006pa" + + "rent\030\001 \001(\t\022\016\n\006filter\030\002 \001(\t\022\020\n\010order_by\030\003" + + " \001(\t\022-\n\tread_time\030\004 \001(\0132\032.google.protobu" + + "f.Timestamp\0223\n\020compare_duration\030\005 \001(\0132\031." + + "google.protobuf.Duration\022.\n\nfield_mask\030\007" + + " \001(\0132\032.google.protobuf.FieldMask\022\022\n\npage" + + "_token\030\010 \001(\t\022\021\n\tpage_size\030\t \001(\005J\004\010\006\020\007\"\345\003" + + "\n\024ListFindingsResponse\022f\n\025list_findings_" + + "results\030\001 \003(\0132G.google.cloud.securitycen" + + "ter.v1.ListFindingsResponse.ListFindings" + + "Result\022-\n\tread_time\030\002 \001(\0132\032.google.proto" + + "buf.Timestamp\022\027\n\017next_page_token\030\003 \001(\t\022\022" + + "\n\ntotal_size\030\004 \001(\005\032\210\002\n\022ListFindingsResul" + + "t\0228\n\007finding\030\001 \001(\0132\'.google.cloud.securi" + + "tycenter.v1.Finding\022i\n\014state_change\030\002 \001(" + + "\0162S.google.cloud.securitycenter.v1.ListF" + + "indingsResponse.ListFindingsResult.State" + + "Change\"M\n\013StateChange\022\n\n\006UNUSED\020\000\022\013\n\007CHA" + + "NGED\020\001\022\r\n\tUNCHANGED\020\002\022\t\n\005ADDED\020\003\022\013\n\007REMO" + + "VED\020\004\"\224\001\n\026SetFindingStateRequest\022\014\n\004name" + + "\030\001 \001(\t\022<\n\005state\030\002 \001(\0162-.google.cloud.sec" + + "uritycenter.v1.Finding.State\022.\n\nstart_ti" + + "me\030\003 \001(\0132\032.google.protobuf.Timestamp\"*\n\030" + + "RunAssetDiscoveryRequest\022\016\n\006parent\030\001 \001(\t" + + "\"\201\001\n\024UpdateFindingRequest\0228\n\007finding\030\001 \001" + + "(\0132\'.google.cloud.securitycenter.v1.Find" + + "ing\022/\n\013update_mask\030\002 \001(\0132\032.google.protob" + + "uf.FieldMask\"\251\001\n!UpdateOrganizationSetti" + + "ngsRequest\022S\n\025organization_settings\030\001 \001(" + + "\01324.google.cloud.securitycenter.v1.Organ" + + "izationSettings\022/\n\013update_mask\030\002 \001(\0132\032.g" + + "oogle.protobuf.FieldMask\"~\n\023UpdateSource" + + "Request\0226\n\006source\030\001 \001(\0132&.google.cloud.s" + + "ecuritycenter.v1.Source\022/\n\013update_mask\030\002" + + " \001(\0132\032.google.protobuf.FieldMask\"\304\001\n\032Upd" + + "ateSecurityMarksRequest\022E\n\016security_mark" + + "s\030\001 \001(\0132-.google.cloud.securitycenter.v1" + + ".SecurityMarks\022/\n\013update_mask\030\002 \001(\0132\032.go" + + "ogle.protobuf.FieldMask\022.\n\nstart_time\030\003 " + + "\001(\0132\032.google.protobuf.Timestamp2\220\032\n\016Secu" + + "rityCenter\022\241\001\n\014CreateSource\0223.google.clo" + + "ud.securitycenter.v1.CreateSourceRequest" + + "\032&.google.cloud.securitycenter.v1.Source" + + "\"4\202\323\344\223\002.\"$/v1/{parent=organizations/*}/s" + + "ources:\006source\022\260\001\n\rCreateFinding\0224.googl" + + "e.cloud.securitycenter.v1.CreateFindingR" + + "equest\032\'.google.cloud.securitycenter.v1." + + "Finding\"@\202\323\344\223\002:\"//v1/{parent=organizatio" + + "ns/*/sources/*}/findings:\007finding\022\213\001\n\014Ge" + + "tIamPolicy\022\".google.iam.v1.GetIamPolicyR" + + "equest\032\025.google.iam.v1.Policy\"@\202\323\344\223\002:\"5/" + + "v1/{resource=organizations/*/sources/*}:" + + "getIamPolicy:\001*\022\310\001\n\027GetOrganizationSetti" + + "ngs\022>.google.cloud.securitycenter.v1.Get" + + "OrganizationSettingsRequest\0324.google.clo" + + "ud.securitycenter.v1.OrganizationSetting" + + "s\"7\202\323\344\223\0021\022//v1/{name=organizations/*/org" + + "anizationSettings}\022\223\001\n\tGetSource\0220.googl" + + "e.cloud.securitycenter.v1.GetSourceReque" + + "st\032&.google.cloud.securitycenter.v1.Sour" + + "ce\",\202\323\344\223\002&\022$/v1/{name=organizations/*/so" + + "urces/*}\022\254\001\n\013GroupAssets\0222.google.cloud." + + "securitycenter.v1.GroupAssetsRequest\0323.g" + + "oogle.cloud.securitycenter.v1.GroupAsset" + + "sResponse\"4\202\323\344\223\002.\")/v1/{parent=organizat" + + "ions/*}/assets:group:\001*\022\276\001\n\rGroupFinding" + + "s\0224.google.cloud.securitycenter.v1.Group" + + "FindingsRequest\0325.google.cloud.securityc" + + "enter.v1.GroupFindingsResponse\"@\202\323\344\223\002:\"5" + + "/v1/{parent=organizations/*/sources/*}/f" + + "indings:group:\001*\022\240\001\n\nListAssets\0221.google" + + ".cloud.securitycenter.v1.ListAssetsReque" + + "st\0322.google.cloud.securitycenter.v1.List" + + "AssetsResponse\"+\202\323\344\223\002%\022#/v1/{parent=orga" + + "nizations/*}/assets\022\262\001\n\014ListFindings\0223.g" + + "oogle.cloud.securitycenter.v1.ListFindin" + + "gsRequest\0324.google.cloud.securitycenter." + + "v1.ListFindingsResponse\"7\202\323\344\223\0021\022//v1/{pa" + + "rent=organizations/*/sources/*}/findings" + + "\022\244\001\n\013ListSources\0222.google.cloud.security" + + "center.v1.ListSourcesRequest\0323.google.cl" + + "oud.securitycenter.v1.ListSourcesRespons" + + "e\",\202\323\344\223\002&\022$/v1/{parent=organizations/*}/" + + "sources\022\251\001\n\021RunAssetDiscovery\0228.google.c" + + "loud.securitycenter.v1.RunAssetDiscovery" + + "Request\032\035.google.longrunning.Operation\";" + + "\202\323\344\223\0025\"0/v1/{parent=organizations/*}/ass" + + "ets:runDiscovery:\001*\022\267\001\n\017SetFindingState\022" + + "6.google.cloud.securitycenter.v1.SetFind" + + "ingStateRequest\032\'.google.cloud.securityc" + + "enter.v1.Finding\"C\202\323\344\223\002=\"8/v1/{name=orga" + + "nizations/*/sources/*/findings/*}:setSta" + + "te:\001*\022\213\001\n\014SetIamPolicy\022\".google.iam.v1.S" + + "etIamPolicyRequest\032\025.google.iam.v1.Polic" + + "y\"@\202\323\344\223\002:\"5/v1/{resource=organizations/*" + + "/sources/*}:setIamPolicy:\001*\022\261\001\n\022TestIamP" + + "ermissions\022(.google.iam.v1.TestIamPermis" + + "sionsRequest\032).google.iam.v1.TestIamPerm" + + "issionsResponse\"F\202\323\344\223\002@\";/v1/{resource=o" + + "rganizations/*/sources/*}:testIamPermiss" + + "ions:\001*\022\270\001\n\rUpdateFinding\0224.google.cloud" + + ".securitycenter.v1.UpdateFindingRequest\032" + + "\'.google.cloud.securitycenter.v1.Finding" + + "\"H\202\323\344\223\002B27/v1/{finding.name=organization" + + "s/*/sources/*/findings/*}:\007finding\022\373\001\n\032U" + + "pdateOrganizationSettings\022A.google.cloud" + + ".securitycenter.v1.UpdateOrganizationSet" + + "tingsRequest\0324.google.cloud.securitycent" + + "er.v1.OrganizationSettings\"d\202\323\344\223\002^2E/v1/" + + "{organization_settings.name=organization" + + "s/*/organizationSettings}:\025organization_" + + "settings\022\250\001\n\014UpdateSource\0223.google.cloud" + + ".securitycenter.v1.UpdateSourceRequest\032&" + + ".google.cloud.securitycenter.v1.Source\";" + + "\202\323\344\223\00252+/v1/{source.name=organizations/*" + + "/sources/*}:\006source\022\274\002\n\023UpdateSecurityMa" + + "rks\022:.google.cloud.securitycenter.v1.Upd" + + "ateSecurityMarksRequest\032-.google.cloud.s" + + "ecuritycenter.v1.SecurityMarks\"\271\001\202\323\344\223\002\262\001" + + "2@/v1/{security_marks.name=organizations" + + "/*/assets/*/securityMarks}:\016security_mar" + + "ksZ^2L/v1/{security_marks.name=organizat" + + "ions/*/sources/*/findings/*/securityMark" + + "s}:\016security_marksB\332\001\n\"com.google.cloud." + + "securitycenter.v1P\001ZLgoogle.golang.org/g" + + "enproto/googleapis/cloud/securitycenter/" + + "v1;securitycenter\252\002\036Google.Cloud.Securit" + + "yCenter.V1\312\002\036Google\\Cloud\\SecurityCenter" + + "\\V1\352\002!Google::Cloud::SecurityCenter::V1b" + + "\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -333,6 +335,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.cloud.securitycenter.v1.AssetOuterClass.getDescriptor(), com.google.cloud.securitycenter.v1.FindingOuterClass.getDescriptor(), com.google.cloud.securitycenter.v1.OrganizationSettingsOuterClass.getDescriptor(), + com.google.cloud.securitycenter.v1.RunAssetDiscoveryResponseOuterClass.getDescriptor(), com.google.cloud.securitycenter.v1.SecurityMarksOuterClass.getDescriptor(), com.google.cloud.securitycenter.v1.SourceOuterClass.getDescriptor(), com.google.iam.v1.IamPolicyProto.getDescriptor(), @@ -566,6 +569,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.cloud.securitycenter.v1.AssetOuterClass.getDescriptor(); com.google.cloud.securitycenter.v1.FindingOuterClass.getDescriptor(); com.google.cloud.securitycenter.v1.OrganizationSettingsOuterClass.getDescriptor(); + com.google.cloud.securitycenter.v1.RunAssetDiscoveryResponseOuterClass.getDescriptor(); com.google.cloud.securitycenter.v1.SecurityMarksOuterClass.getDescriptor(); com.google.cloud.securitycenter.v1.SourceOuterClass.getDescriptor(); com.google.iam.v1.IamPolicyProto.getDescriptor(); diff --git a/google-api-grpc/proto-google-cloud-securitycenter-v1/src/main/proto/google/cloud/securitycenter/v1/securitycenter_service.proto b/google-api-grpc/proto-google-cloud-securitycenter-v1/src/main/proto/google/cloud/securitycenter/v1/securitycenter_service.proto index d75be44b725a..bcb4e863df65 100644 --- a/google-api-grpc/proto-google-cloud-securitycenter-v1/src/main/proto/google/cloud/securitycenter/v1/securitycenter_service.proto +++ b/google-api-grpc/proto-google-cloud-securitycenter-v1/src/main/proto/google/cloud/securitycenter/v1/securitycenter_service.proto @@ -21,6 +21,7 @@ import "google/api/annotations.proto"; import "google/cloud/securitycenter/v1/asset.proto"; import "google/cloud/securitycenter/v1/finding.proto"; import "google/cloud/securitycenter/v1/organization_settings.proto"; +import "google/cloud/securitycenter/v1/run_asset_discovery_response.proto"; import "google/cloud/securitycenter/v1/security_marks.proto"; import "google/cloud/securitycenter/v1/source.proto"; import "google/iam/v1/iam_policy.proto"; diff --git a/google-cloud-clients/google-cloud-securitycenter/synth.metadata b/google-cloud-clients/google-cloud-securitycenter/synth.metadata index 06d1e5d7976c..e42a827d4929 100644 --- a/google-cloud-clients/google-cloud-securitycenter/synth.metadata +++ b/google-cloud-clients/google-cloud-securitycenter/synth.metadata @@ -1,19 +1,19 @@ { - "updateTime": "2019-05-29T07:54:53.367995Z", + "updateTime": "2019-07-02T07:53:27.510818Z", "sources": [ { "generator": { "name": "artman", - "version": "0.21.0", - "dockerImage": "googleapis/artman@sha256:28d4271586772b275cd3bc95cb46bd227a24d3c9048de45dccdb7f3afb0bfba9" + "version": "0.29.3", + "dockerImage": "googleapis/artman@sha256:8900f94a81adaab0238965aa8a7b3648791f4f3a95ee65adc6a56cfcc3753101" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "fa15c3006e27b87a20c7a9ffbb7bbe4149c61387", - "internalRef": "250401304" + "sha": "5322233f8cbec4d3f8c17feca2507ef27d4a07c9", + "internalRef": "256042411" } } ], From 3bc402b3752d9c300c1678a29e56aa76589c3ece Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 3 Jul 2019 00:16:57 +0300 Subject: [PATCH 22/58] Update dependency com.google.api:gax-bom to v1.47.1 (#5652) --- google-cloud-bom/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google-cloud-bom/pom.xml b/google-cloud-bom/pom.xml index cd08e6a04abc..5fe052396148 100644 --- a/google-cloud-bom/pom.xml +++ b/google-cloud-bom/pom.xml @@ -168,7 +168,7 @@ com.google.api gax-bom - 1.47.0 + 1.47.1 pom import From 1392cab62e79dde3d37536843ad0fcadd398252e Mon Sep 17 00:00:00 2001 From: kolea2 <45548808+kolea2@users.noreply.github.com> Date: Tue, 2 Jul 2019 19:30:52 -0400 Subject: [PATCH 23/58] Update gax.version to 1.47.1. (#5656) --- google-cloud-clients/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google-cloud-clients/pom.xml b/google-cloud-clients/pom.xml index 9992061ff905..32c2e88ea1c2 100644 --- a/google-cloud-clients/pom.xml +++ b/google-cloud-clients/pom.xml @@ -156,7 +156,7 @@ 0.98.1-alpha-SNAPSHOT 1.30.2 - 1.46.1 + 1.47.1 1.8.1 0.16.2 1.21.0 From 0017c32e66670e8ba59075eab055c194d285602c Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 20:41:31 +0530 Subject: [PATCH 24/58] Spanner : Cleanup dependency (#5672) * cleanup unused dependency of spanner * remove unused dependency of spanner --- .../google-cloud-spanner/pom.xml | 37 ------------------- 1 file changed, 37 deletions(-) diff --git a/google-cloud-clients/google-cloud-spanner/pom.xml b/google-cloud-clients/google-cloud-spanner/pom.xml index cba2ffa4a05c..04bd9f9edee8 100644 --- a/google-cloud-clients/google-cloud-spanner/pom.xml +++ b/google-cloud-clients/google-cloud-spanner/pom.xml @@ -81,18 +81,10 @@ - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc - - com.google.api - gax-grpc - com.google.api.grpc proto-google-cloud-spanner-v1 @@ -117,26 +109,6 @@ com.google.api.grpc grpc-google-cloud-spanner-admin-instance-v1 - - com.google.api.grpc - grpc-google-common-protos - - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-auth - - - io.grpc - grpc-stub - - - com.google.code.findbugs - jsr305 - @@ -161,11 +133,6 @@ - - org.objenesis - objenesis - test - com.google.guava guava-testlib @@ -178,10 +145,6 @@ testlib test - - io.opencensus - opencensus-api - io.opencensus opencensus-contrib-grpc-util From 8fd3241813a194814a42f4d08b10aa86ab31f1a4 Mon Sep 17 00:00:00 2001 From: Jeff Ching Date: Wed, 3 Jul 2019 09:12:34 -0700 Subject: [PATCH 25/58] Release v0.99.0 (#5657) --- README.md | 8 +- .../grpc-google-cloud-asset-v1/pom.xml | 4 +- .../grpc-google-cloud-asset-v1beta1/pom.xml | 4 +- .../grpc-google-cloud-automl-v1beta1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-bigtable-v2/pom.xml | 4 +- .../grpc-google-cloud-container-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-dataproc-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-dialogflow-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-dlp-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-firestore-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-iot-v1/pom.xml | 4 +- .../grpc-google-cloud-kms-v1/pom.xml | 4 +- .../grpc-google-cloud-language-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-logging-v2/pom.xml | 4 +- .../grpc-google-cloud-monitoring-v3/pom.xml | 4 +- .../grpc-google-cloud-os-login-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-pubsub-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-redis-v1/pom.xml | 4 +- .../grpc-google-cloud-redis-v1beta1/pom.xml | 4 +- .../grpc-google-cloud-scheduler-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-spanner-v1/pom.xml | 4 +- .../grpc-google-cloud-speech-v1/pom.xml | 4 +- .../grpc-google-cloud-speech-v1beta1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-talent-v4beta1/pom.xml | 4 +- .../grpc-google-cloud-tasks-v2/pom.xml | 4 +- .../grpc-google-cloud-tasks-v2beta2/pom.xml | 4 +- .../grpc-google-cloud-tasks-v2beta3/pom.xml | 4 +- .../grpc-google-cloud-texttospeech-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-trace-v1/pom.xml | 4 +- .../grpc-google-cloud-trace-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-vision-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-webrisk-v1beta1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- google-api-grpc/pom.xml | 272 ++++++------ .../proto-google-cloud-asset-v1/pom.xml | 4 +- .../proto-google-cloud-asset-v1beta1/pom.xml | 4 +- .../proto-google-cloud-automl-v1beta1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-bigtable-v2/pom.xml | 4 +- .../proto-google-cloud-container-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-dataproc-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-datastore-v1/pom.xml | 4 +- .../proto-google-cloud-dialogflow-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-dlp-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-firestore-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-iot-v1/pom.xml | 4 +- .../proto-google-cloud-kms-v1/pom.xml | 4 +- .../proto-google-cloud-language-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-logging-v2/pom.xml | 4 +- .../proto-google-cloud-monitoring-v3/pom.xml | 4 +- .../proto-google-cloud-os-login-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-pubsub-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-redis-v1/pom.xml | 4 +- .../proto-google-cloud-redis-v1beta1/pom.xml | 4 +- .../proto-google-cloud-scheduler-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-spanner-v1/pom.xml | 4 +- .../proto-google-cloud-speech-v1/pom.xml | 4 +- .../proto-google-cloud-speech-v1beta1/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-talent-v4beta1/pom.xml | 4 +- .../proto-google-cloud-tasks-v2/pom.xml | 4 +- .../proto-google-cloud-tasks-v2beta2/pom.xml | 4 +- .../proto-google-cloud-tasks-v2beta3/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-trace-v1/pom.xml | 4 +- .../proto-google-cloud-trace-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-vision-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- google-cloud-bom/README.md | 2 +- google-cloud-bom/pom.xml | 370 ++++++++-------- .../google-cloud-asset/README.md | 6 +- .../google-cloud-asset/pom.xml | 4 +- .../google-cloud-automl/README.md | 6 +- .../google-cloud-automl/pom.xml | 4 +- .../google-cloud-bigquery/README.md | 6 +- .../google-cloud-bigquery/pom.xml | 4 +- .../README.md | 6 +- .../google-cloud-bigquerydatatransfer/pom.xml | 4 +- .../google-cloud-bigquerystorage/README.md | 6 +- .../google-cloud-bigquerystorage/pom.xml | 4 +- .../google-cloud-bigtable/README.md | 6 +- .../google-cloud-bigtable/pom.xml | 4 +- .../google-cloud-compute/README.md | 6 +- .../google-cloud-compute/pom.xml | 4 +- .../google-cloud-container/README.md | 6 +- .../google-cloud-container/pom.xml | 4 +- .../google-cloud-containeranalysis/README.md | 6 +- .../google-cloud-containeranalysis/pom.xml | 4 +- .../google-cloud-logging-logback/README.md | 6 +- .../google-cloud-logging-logback/pom.xml | 4 +- .../google-cloud-nio-examples/README.md | 4 +- .../google-cloud-nio-examples/pom.xml | 4 +- .../google-cloud-nio/README.md | 6 +- .../google-cloud-nio/pom.xml | 4 +- .../google-cloud-notification/README.md | 6 +- .../google-cloud-notification/pom.xml | 4 +- .../google-cloud-contrib/pom.xml | 4 +- .../google-cloud-core-grpc/pom.xml | 4 +- .../google-cloud-core-http/pom.xml | 4 +- .../google-cloud-core/README.md | 6 +- .../google-cloud-core/pom.xml | 4 +- .../google-cloud-datacatalog/README.md | 6 +- .../google-cloud-datacatalog/pom.xml | 4 +- .../google-cloud-datalabeling/README.md | 6 +- .../google-cloud-datalabeling/pom.xml | 4 +- .../google-cloud-dataproc/README.md | 6 +- .../google-cloud-dataproc/pom.xml | 4 +- .../google-cloud-datastore/README.md | 6 +- .../google-cloud-datastore/pom.xml | 4 +- .../google-cloud-dialogflow/README.md | 6 +- .../google-cloud-dialogflow/pom.xml | 4 +- .../google-cloud-dlp/README.md | 6 +- google-cloud-clients/google-cloud-dlp/pom.xml | 4 +- .../google-cloud-dns/README.md | 6 +- google-cloud-clients/google-cloud-dns/pom.xml | 4 +- .../google-cloud-errorreporting/README.md | 6 +- .../google-cloud-errorreporting/pom.xml | 4 +- .../google-cloud-firestore/README.md | 6 +- .../google-cloud-firestore/pom.xml | 4 +- .../google-cloud-iamcredentials/README.md | 6 +- .../google-cloud-iamcredentials/pom.xml | 4 +- .../google-cloud-iot/README.md | 6 +- google-cloud-clients/google-cloud-iot/pom.xml | 4 +- .../google-cloud-kms/README.md | 6 +- google-cloud-clients/google-cloud-kms/pom.xml | 4 +- .../google-cloud-language/README.md | 6 +- .../google-cloud-language/pom.xml | 4 +- .../google-cloud-logging/README.md | 6 +- .../google-cloud-logging/pom.xml | 4 +- .../google-cloud-monitoring/README.md | 6 +- .../google-cloud-monitoring/pom.xml | 4 +- .../google-cloud-os-login/README.md | 6 +- .../google-cloud-os-login/pom.xml | 4 +- .../google-cloud-phishingprotection/README.md | 6 +- .../google-cloud-phishingprotection/pom.xml | 4 +- .../google-cloud-pubsub/README.md | 6 +- .../google-cloud-pubsub/pom.xml | 4 +- .../README.md | 6 +- .../google-cloud-recaptchaenterprise/pom.xml | 4 +- .../google-cloud-redis/README.md | 6 +- .../google-cloud-redis/pom.xml | 4 +- .../google-cloud-resourcemanager/README.md | 6 +- .../google-cloud-resourcemanager/pom.xml | 4 +- .../google-cloud-scheduler/README.md | 6 +- .../google-cloud-scheduler/pom.xml | 4 +- .../google-cloud-securitycenter/README.md | 6 +- .../google-cloud-securitycenter/pom.xml | 4 +- .../google-cloud-spanner/README.md | 6 +- .../google-cloud-spanner/pom.xml | 4 +- .../google-cloud-speech/README.md | 6 +- .../google-cloud-speech/pom.xml | 4 +- .../google-cloud-storage/README.md | 6 +- .../google-cloud-storage/pom.xml | 4 +- .../google-cloud-talent/README.md | 6 +- .../google-cloud-talent/pom.xml | 4 +- .../google-cloud-tasks/README.md | 6 +- .../google-cloud-tasks/pom.xml | 4 +- .../google-cloud-texttospeech/README.md | 6 +- .../google-cloud-texttospeech/pom.xml | 4 +- .../google-cloud-trace/README.md | 6 +- .../google-cloud-trace/pom.xml | 4 +- .../google-cloud-translate/README.md | 6 +- .../google-cloud-translate/pom.xml | 4 +- .../google-cloud-video-intelligence/README.md | 6 +- .../google-cloud-video-intelligence/pom.xml | 4 +- .../google-cloud-vision/README.md | 6 +- .../google-cloud-vision/pom.xml | 4 +- .../google-cloud-webrisk/README.md | 6 +- .../google-cloud-webrisk/pom.xml | 4 +- .../google-cloud-websecurityscanner/README.md | 6 +- .../google-cloud-websecurityscanner/pom.xml | 4 +- google-cloud-clients/grafeas/pom.xml | 4 +- google-cloud-clients/pom.xml | 6 +- google-cloud-examples/README.md | 6 +- google-cloud-examples/pom.xml | 4 +- .../google-cloud-appengineflexcompat/pom.xml | 4 +- .../google-cloud-appengineflexcustom/pom.xml | 4 +- .../google-cloud-appengineflexjava/pom.xml | 4 +- .../google-cloud-appenginejava8/pom.xml | 4 +- .../google-cloud-bigtable-emulator/README.md | 10 +- .../google-cloud-bigtable-emulator/pom.xml | 6 +- .../google-cloud-conformance-tests/pom.xml | 2 +- .../google-cloud-gcloud-maven-plugin/pom.xml | 4 +- .../google-cloud-managedtest/pom.xml | 4 +- google-cloud-testing/pom.xml | 6 +- .../google-cloud-compat-checker/pom.xml | 4 +- google-cloud-util/pom.xml | 2 +- versions.txt | 406 +++++++++--------- 257 files changed, 1086 insertions(+), 1086 deletions(-) diff --git a/README.md b/README.md index cefa998cdda1..87060117f769 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-bom - 0.98.0-alpha + 0.99.0-alpha pom import @@ -95,11 +95,11 @@ If you are using Maven, add this to your pom.xml file [//]: # ({x-version-update-start:google-cloud-storage:released}) If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-storage:1.80.0' +compile 'com.google.cloud:google-cloud-storage:1.81.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-storage" % "1.80.0" +libraryDependencies += "com.google.cloud" % "google-cloud-storage" % "1.81.0" ``` [//]: # ({x-version-update-end}) @@ -120,7 +120,7 @@ If you are running into problems with version conflicts, the easiest way to solv com.google.cloud google-cloud-bom - 0.98.0-alpha + 0.99.0-alpha pom import diff --git a/google-api-grpc/grpc-google-cloud-asset-v1/pom.xml b/google-api-grpc/grpc-google-cloud-asset-v1/pom.xml index da6a71a12771..6702a79e4b57 100644 --- a/google-api-grpc/grpc-google-cloud-asset-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-asset-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-asset-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-asset-v1 GRPC library for grpc-google-cloud-asset-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-asset-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-asset-v1beta1/pom.xml index 5ff78972f295..edcd9ce920c0 100644 --- a/google-api-grpc/grpc-google-cloud-asset-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-asset-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-asset-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-asset-v1beta1 GRPC library for grpc-google-cloud-asset-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-automl-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-automl-v1beta1/pom.xml index acb50a5939f9..3f6316935544 100644 --- a/google-api-grpc/grpc-google-cloud-automl-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-automl-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-automl-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-automl-v1beta1 GRPC library for grpc-google-cloud-automl-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-bigquerydatatransfer-v1/pom.xml b/google-api-grpc/grpc-google-cloud-bigquerydatatransfer-v1/pom.xml index a0543513f9ab..dcb0e0046192 100644 --- a/google-api-grpc/grpc-google-cloud-bigquerydatatransfer-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-bigquerydatatransfer-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-bigquerydatatransfer-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-bigquerydatatransfer-v1 GRPC library for grpc-google-cloud-bigquerydatatransfer-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-bigquerystorage-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-bigquerystorage-v1beta1/pom.xml index aeb6e3a1b595..9defb63a8a6a 100644 --- a/google-api-grpc/grpc-google-cloud-bigquerystorage-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-bigquerystorage-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-bigquerystorage-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-bigquerystorage-v1beta1 GRPC library for grpc-google-cloud-bigquerystorage-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-bigtable-admin-v2/pom.xml b/google-api-grpc/grpc-google-cloud-bigtable-admin-v2/pom.xml index cbdb8940e9d2..f391000f2142 100644 --- a/google-api-grpc/grpc-google-cloud-bigtable-admin-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-bigtable-admin-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-bigtable-admin-v2 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-bigtable-admin-v2 GRPC library for grpc-google-cloud-bigtable-admin-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-bigtable-v2/pom.xml b/google-api-grpc/grpc-google-cloud-bigtable-v2/pom.xml index 354b6833a586..37acf282ec97 100644 --- a/google-api-grpc/grpc-google-cloud-bigtable-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-bigtable-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-bigtable-v2 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-bigtable-v2 GRPC library for grpc-google-cloud-bigtable-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-container-v1/pom.xml b/google-api-grpc/grpc-google-cloud-container-v1/pom.xml index 4ba35e8eef57..4c714f43730a 100644 --- a/google-api-grpc/grpc-google-cloud-container-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-container-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-container-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-container-v1 GRPC library for grpc-google-cloud-container-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-containeranalysis-v1/pom.xml b/google-api-grpc/grpc-google-cloud-containeranalysis-v1/pom.xml index 14d40bb6d9b5..21f2ee599d71 100644 --- a/google-api-grpc/grpc-google-cloud-containeranalysis-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-containeranalysis-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-containeranalysis-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-containeranalysis-v1 GRPC library for grpc-google-cloud-containeranalysis-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-containeranalysis-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-containeranalysis-v1beta1/pom.xml index 51661703579c..7841ad2ca713 100644 --- a/google-api-grpc/grpc-google-cloud-containeranalysis-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-containeranalysis-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-containeranalysis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-containeranalysis-v1beta1 GRPC library for grpc-google-cloud-containeranalysis-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-datacatalog-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-datacatalog-v1beta1/pom.xml index 55ba9b16284c..ef6916b2c0af 100644 --- a/google-api-grpc/grpc-google-cloud-datacatalog-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-datacatalog-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-datacatalog-v1beta1 - 0.11.1-alpha-SNAPSHOT + 0.12.0-alpha grpc-google-cloud-datacatalog-v1beta1 GRPC library for grpc-google-cloud-datacatalog-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-datalabeling-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-datalabeling-v1beta1/pom.xml index ccea20fafb56..94c821f1260f 100644 --- a/google-api-grpc/grpc-google-cloud-datalabeling-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-datalabeling-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-datalabeling-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-datalabeling-v1beta1 GRPC library for grpc-google-cloud-datalabeling-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-dataproc-v1/pom.xml b/google-api-grpc/grpc-google-cloud-dataproc-v1/pom.xml index 7fb4269a77ed..115be8731b90 100644 --- a/google-api-grpc/grpc-google-cloud-dataproc-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-dataproc-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-dataproc-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-dataproc-v1 GRPC library for grpc-google-cloud-dataproc-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-dataproc-v1beta2/pom.xml b/google-api-grpc/grpc-google-cloud-dataproc-v1beta2/pom.xml index aebcd5ea8267..02ef22593140 100644 --- a/google-api-grpc/grpc-google-cloud-dataproc-v1beta2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-dataproc-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-dataproc-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-dataproc-v1beta2 GRPC library for grpc-google-cloud-dataproc-v1beta2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-dialogflow-v2/pom.xml b/google-api-grpc/grpc-google-cloud-dialogflow-v2/pom.xml index ccc4910fe359..5d3fbed0a820 100644 --- a/google-api-grpc/grpc-google-cloud-dialogflow-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-dialogflow-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-dialogflow-v2 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-dialogflow-v2 GRPC library for grpc-google-cloud-dialogflow-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-dialogflow-v2beta1/pom.xml b/google-api-grpc/grpc-google-cloud-dialogflow-v2beta1/pom.xml index 7e3d75bbd75f..bff0be3e7526 100644 --- a/google-api-grpc/grpc-google-cloud-dialogflow-v2beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-dialogflow-v2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-dialogflow-v2beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-dialogflow-v2beta1 GRPC library for grpc-google-cloud-dialogflow-v2beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-dlp-v2/pom.xml b/google-api-grpc/grpc-google-cloud-dlp-v2/pom.xml index 9f33bb8e3b5b..6e8954a5eca3 100644 --- a/google-api-grpc/grpc-google-cloud-dlp-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-dlp-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-dlp-v2 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-dlp-v2 GRPC library for grpc-google-cloud-dlp-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-error-reporting-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-error-reporting-v1beta1/pom.xml index 6b771b336f6f..d6c7101a67e0 100644 --- a/google-api-grpc/grpc-google-cloud-error-reporting-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-error-reporting-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-error-reporting-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-error-reporting-v1beta1 GRPC library for grpc-google-cloud-error-reporting-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-firestore-admin-v1/pom.xml b/google-api-grpc/grpc-google-cloud-firestore-admin-v1/pom.xml index 75ac7a13faa2..bfe9af635fa1 100644 --- a/google-api-grpc/grpc-google-cloud-firestore-admin-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-firestore-admin-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-firestore-admin-v1 - 1.10.1-SNAPSHOT + 1.11.0 grpc-google-cloud-firestore-admin-v1 GRPC library for grpc-google-cloud-firestore-admin-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-firestore-v1/pom.xml b/google-api-grpc/grpc-google-cloud-firestore-v1/pom.xml index c6667a6a3365..ea958f972a6f 100644 --- a/google-api-grpc/grpc-google-cloud-firestore-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-firestore-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-firestore-v1 - 1.10.1-SNAPSHOT + 1.11.0 grpc-google-cloud-firestore-v1 GRPC library for grpc-google-cloud-firestore-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-firestore-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-firestore-v1beta1/pom.xml index bb678072d3bd..f11f39d42ca9 100644 --- a/google-api-grpc/grpc-google-cloud-firestore-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-firestore-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-firestore-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-firestore-v1beta1 GRPC library for grpc-google-cloud-firestore-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-iamcredentials-v1/pom.xml b/google-api-grpc/grpc-google-cloud-iamcredentials-v1/pom.xml index ee7c41961c67..b74f6a1d5cd6 100644 --- a/google-api-grpc/grpc-google-cloud-iamcredentials-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-iamcredentials-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-iamcredentials-v1 - 0.25.1-alpha-SNAPSHOT + 0.26.0-alpha grpc-google-cloud-iamcredentials-v1 GRPC library for grpc-google-cloud-iamcredentials-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-iot-v1/pom.xml b/google-api-grpc/grpc-google-cloud-iot-v1/pom.xml index d2b6634ec60a..504e4e6362b0 100644 --- a/google-api-grpc/grpc-google-cloud-iot-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-iot-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-iot-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-iot-v1 GRPC library for grpc-google-cloud-iot-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-kms-v1/pom.xml b/google-api-grpc/grpc-google-cloud-kms-v1/pom.xml index 9fd96593321b..5ef228508184 100644 --- a/google-api-grpc/grpc-google-cloud-kms-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-kms-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-kms-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-kms-v1 GRPC library for grpc-google-cloud-kms-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-language-v1/pom.xml b/google-api-grpc/grpc-google-cloud-language-v1/pom.xml index 5f879cd13e5d..9e1662664e66 100644 --- a/google-api-grpc/grpc-google-cloud-language-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-language-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-language-v1 - 1.62.1-SNAPSHOT + 1.63.0 grpc-google-cloud-language-v1 GRPC library for grpc-google-cloud-language-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-language-v1beta2/pom.xml b/google-api-grpc/grpc-google-cloud-language-v1beta2/pom.xml index 56bf0418466c..ae92639856de 100644 --- a/google-api-grpc/grpc-google-cloud-language-v1beta2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-language-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-language-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-language-v1beta2 GRPC library for grpc-google-cloud-language-v1beta2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-logging-v2/pom.xml b/google-api-grpc/grpc-google-cloud-logging-v2/pom.xml index a5ded30ab6c3..479c38df16f5 100644 --- a/google-api-grpc/grpc-google-cloud-logging-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-logging-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-logging-v2 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-logging-v2 GRPC library for grpc-google-cloud-logging-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-monitoring-v3/pom.xml b/google-api-grpc/grpc-google-cloud-monitoring-v3/pom.xml index 4e0b4637acf1..39f621b55ed1 100644 --- a/google-api-grpc/grpc-google-cloud-monitoring-v3/pom.xml +++ b/google-api-grpc/grpc-google-cloud-monitoring-v3/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-monitoring-v3 - 1.62.1-SNAPSHOT + 1.63.0 grpc-google-cloud-monitoring-v3 GRPC library for grpc-google-cloud-monitoring-v3 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-os-login-v1/pom.xml b/google-api-grpc/grpc-google-cloud-os-login-v1/pom.xml index 4cfdd4a26d0a..6a8b09531983 100644 --- a/google-api-grpc/grpc-google-cloud-os-login-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-os-login-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-os-login-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-os-login-v1 GRPC library for grpc-google-cloud-os-login-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-phishingprotection-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-phishingprotection-v1beta1/pom.xml index 4ac4c252e8f7..e300e934a94a 100644 --- a/google-api-grpc/grpc-google-cloud-phishingprotection-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-phishingprotection-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-phishingprotection-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 grpc-google-cloud-phishingprotection-v1beta1 GRPC library for grpc-google-cloud-phishingprotection-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-pubsub-v1/pom.xml b/google-api-grpc/grpc-google-cloud-pubsub-v1/pom.xml index e53fe713db2c..5b3b05b791a3 100644 --- a/google-api-grpc/grpc-google-cloud-pubsub-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-pubsub-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-pubsub-v1 - 1.62.1-SNAPSHOT + 1.63.0 grpc-google-cloud-pubsub-v1 GRPC library for grpc-google-cloud-pubsub-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-recaptchaenterprise-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-recaptchaenterprise-v1beta1/pom.xml index ffce9b825918..3b9b25c30ace 100644 --- a/google-api-grpc/grpc-google-cloud-recaptchaenterprise-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-recaptchaenterprise-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-recaptchaenterprise-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 grpc-google-cloud-recaptchaenterprise-v1beta1 GRPC library for grpc-google-cloud-recaptchaenterprise-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-redis-v1/pom.xml b/google-api-grpc/grpc-google-cloud-redis-v1/pom.xml index 596f445e6427..31ae0c614f9d 100644 --- a/google-api-grpc/grpc-google-cloud-redis-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-redis-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-redis-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-redis-v1 GRPC library for grpc-google-cloud-redis-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-redis-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-redis-v1beta1/pom.xml index c57ab30849e1..adb6b3d70c4c 100644 --- a/google-api-grpc/grpc-google-cloud-redis-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-redis-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-redis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-redis-v1beta1 GRPC library for grpc-google-cloud-redis-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-scheduler-v1/pom.xml b/google-api-grpc/grpc-google-cloud-scheduler-v1/pom.xml index 4cf01f466e3f..b8f0e7127a8b 100644 --- a/google-api-grpc/grpc-google-cloud-scheduler-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-scheduler-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-scheduler-v1 - 1.3.1-SNAPSHOT + 1.4.0 grpc-google-cloud-scheduler-v1 GRPC library for grpc-google-cloud-scheduler-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-scheduler-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-scheduler-v1beta1/pom.xml index f903a4c87ab3..54203931f83b 100644 --- a/google-api-grpc/grpc-google-cloud-scheduler-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-scheduler-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-scheduler-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-scheduler-v1beta1 GRPC library for grpc-google-cloud-scheduler-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-securitycenter-v1/pom.xml b/google-api-grpc/grpc-google-cloud-securitycenter-v1/pom.xml index 437461190e85..ac12fbfa23c0 100644 --- a/google-api-grpc/grpc-google-cloud-securitycenter-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-securitycenter-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-securitycenter-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-securitycenter-v1 GRPC library for grpc-google-cloud-securitycenter-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-securitycenter-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-securitycenter-v1beta1/pom.xml index 0dddcbb8922d..92d742d5f38e 100644 --- a/google-api-grpc/grpc-google-cloud-securitycenter-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-securitycenter-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-securitycenter-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-securitycenter-v1beta1 GRPC library for grpc-google-cloud-securitycenter-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-spanner-admin-database-v1/pom.xml b/google-api-grpc/grpc-google-cloud-spanner-admin-database-v1/pom.xml index ee8939423db7..5a953c5f804e 100644 --- a/google-api-grpc/grpc-google-cloud-spanner-admin-database-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-spanner-admin-database-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-spanner-admin-database-v1 - 1.25.1-SNAPSHOT + 1.26.0 grpc-google-cloud-spanner-admin-database-v1 GRPC library for grpc-google-cloud-spanner-admin-database-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-spanner-admin-instance-v1/pom.xml b/google-api-grpc/grpc-google-cloud-spanner-admin-instance-v1/pom.xml index efaa3a4c6f98..def1df98623b 100644 --- a/google-api-grpc/grpc-google-cloud-spanner-admin-instance-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-spanner-admin-instance-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-spanner-admin-instance-v1 - 1.25.1-SNAPSHOT + 1.26.0 grpc-google-cloud-spanner-admin-instance-v1 GRPC library for grpc-google-cloud-spanner-admin-instance-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-spanner-v1/pom.xml b/google-api-grpc/grpc-google-cloud-spanner-v1/pom.xml index ceefb4b98c9b..f075250567fd 100644 --- a/google-api-grpc/grpc-google-cloud-spanner-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-spanner-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-spanner-v1 - 1.25.1-SNAPSHOT + 1.26.0 grpc-google-cloud-spanner-v1 GRPC library for grpc-google-cloud-spanner-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-speech-v1/pom.xml b/google-api-grpc/grpc-google-cloud-speech-v1/pom.xml index 6aec5e51d51c..4134032a4549 100644 --- a/google-api-grpc/grpc-google-cloud-speech-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-speech-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-speech-v1 - 1.10.1-SNAPSHOT + 1.11.0 grpc-google-cloud-speech-v1 GRPC library for grpc-google-cloud-speech-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-speech-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-speech-v1beta1/pom.xml index ca4167061ed2..46a2a389dc21 100644 --- a/google-api-grpc/grpc-google-cloud-speech-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-speech-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-speech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-speech-v1beta1 GRPC library for grpc-google-cloud-speech-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-speech-v1p1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-speech-v1p1beta1/pom.xml index 285e5df444ac..b12ec1ae1660 100644 --- a/google-api-grpc/grpc-google-cloud-speech-v1p1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-speech-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-speech-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-speech-v1p1beta1 GRPC library for grpc-google-cloud-speech-v1p1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-talent-v4beta1/pom.xml b/google-api-grpc/grpc-google-cloud-talent-v4beta1/pom.xml index 2f2727355a73..15b3c797db6c 100644 --- a/google-api-grpc/grpc-google-cloud-talent-v4beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-talent-v4beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-talent-v4beta1 - 0.15.1-beta-SNAPSHOT + 0.16.0-beta grpc-google-cloud-talent-v4beta1 GRPC library for grpc-google-cloud-talent-v4beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-tasks-v2/pom.xml b/google-api-grpc/grpc-google-cloud-tasks-v2/pom.xml index f05d59f87e0f..baf2097a06d2 100644 --- a/google-api-grpc/grpc-google-cloud-tasks-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-tasks-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-tasks-v2 - 1.7.1-SNAPSHOT + 1.8.0 grpc-google-cloud-tasks-v2 GRPC library for grpc-google-cloud-tasks-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-tasks-v2beta2/pom.xml b/google-api-grpc/grpc-google-cloud-tasks-v2beta2/pom.xml index d784a06c5488..28a7f22b3661 100644 --- a/google-api-grpc/grpc-google-cloud-tasks-v2beta2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-tasks-v2beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-tasks-v2beta2 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-tasks-v2beta2 GRPC library for grpc-google-cloud-tasks-v2beta2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-tasks-v2beta3/pom.xml b/google-api-grpc/grpc-google-cloud-tasks-v2beta3/pom.xml index a396a3137725..3e54cc02b593 100644 --- a/google-api-grpc/grpc-google-cloud-tasks-v2beta3/pom.xml +++ b/google-api-grpc/grpc-google-cloud-tasks-v2beta3/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-tasks-v2beta3 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-tasks-v2beta3 GRPC library for grpc-google-cloud-tasks-v2beta3 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-texttospeech-v1/pom.xml b/google-api-grpc/grpc-google-cloud-texttospeech-v1/pom.xml index 7b2362b9d8c1..efee6a3e030d 100644 --- a/google-api-grpc/grpc-google-cloud-texttospeech-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-texttospeech-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-texttospeech-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-texttospeech-v1 GRPC library for grpc-google-cloud-texttospeech-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-texttospeech-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-texttospeech-v1beta1/pom.xml index 6b8b48e56a00..ed776ce5b160 100644 --- a/google-api-grpc/grpc-google-cloud-texttospeech-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-texttospeech-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-texttospeech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-texttospeech-v1beta1 GRPC library for grpc-google-cloud-texttospeech-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-trace-v1/pom.xml b/google-api-grpc/grpc-google-cloud-trace-v1/pom.xml index 9ff67d591d09..01056f0f167b 100644 --- a/google-api-grpc/grpc-google-cloud-trace-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-trace-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-trace-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-trace-v1 GRPC library for grpc-google-cloud-trace-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-trace-v2/pom.xml b/google-api-grpc/grpc-google-cloud-trace-v2/pom.xml index 42c8972ccadf..853992bd7ccb 100644 --- a/google-api-grpc/grpc-google-cloud-trace-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-trace-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-trace-v2 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-trace-v2 GRPC library for grpc-google-cloud-trace-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-translate-v3beta1/pom.xml b/google-api-grpc/grpc-google-cloud-translate-v3beta1/pom.xml index 4166e37c5d97..54ce1d786c94 100644 --- a/google-api-grpc/grpc-google-cloud-translate-v3beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-translate-v3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-translate-v3beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-translate-v3beta1 GRPC library for grpc-google-cloud-translate-v3beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1/pom.xml index bf8e494022c1..a119783549df 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-video-intelligence-v1 GRPC library for grpc-google-cloud-video-intelligence-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta1/pom.xml index 2c484bf8263e..e660d4ba3beb 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-video-intelligence-v1beta1 GRPC library for grpc-google-cloud-video-intelligence-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta2/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta2/pom.xml index 21148e70317a..699c9591c9d4 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-video-intelligence-v1beta2 GRPC library for grpc-google-cloud-video-intelligence-v1beta2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p1beta1/pom.xml index 574a0ceb6ff0..3bd2f57c3043 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-video-intelligence-v1p1beta1 GRPC library for grpc-google-cloud-video-intelligence-v1p1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p2beta1/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p2beta1/pom.xml index af3380613272..601eee557ee4 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p2beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1p2beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-video-intelligence-v1p2beta1 GRPC library for grpc-google-cloud-video-intelligence-v1p2beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p3beta1/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p3beta1/pom.xml index c5a6f234c9ed..07845e864330 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p3beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-video-intelligence-v1p3beta1 GRPC library for grpc-google-cloud-video-intelligence-v1p3beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-vision-v1/pom.xml b/google-api-grpc/grpc-google-cloud-vision-v1/pom.xml index 970d65cfb6c3..7aaa981df39a 100644 --- a/google-api-grpc/grpc-google-cloud-vision-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-vision-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-vision-v1 - 1.62.1-SNAPSHOT + 1.63.0 grpc-google-cloud-vision-v1 GRPC library for grpc-google-cloud-vision-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-vision-v1p1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-vision-v1p1beta1/pom.xml index 4c22c3e97b07..20c2887d884c 100644 --- a/google-api-grpc/grpc-google-cloud-vision-v1p1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-vision-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-vision-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-vision-v1p1beta1 GRPC library for grpc-google-cloud-vision-v1p1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-vision-v1p2beta1/pom.xml b/google-api-grpc/grpc-google-cloud-vision-v1p2beta1/pom.xml index ef78d11c23d9..ab481faa3f5c 100644 --- a/google-api-grpc/grpc-google-cloud-vision-v1p2beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-vision-v1p2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-vision-v1p2beta1 - 1.62.1-SNAPSHOT + 1.63.0 grpc-google-cloud-vision-v1p2beta1 GRPC library for grpc-google-cloud-vision-v1p2beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-vision-v1p3beta1/pom.xml b/google-api-grpc/grpc-google-cloud-vision-v1p3beta1/pom.xml index a411ec8e6e0c..504661bee42f 100644 --- a/google-api-grpc/grpc-google-cloud-vision-v1p3beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-vision-v1p3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-vision-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-vision-v1p3beta1 GRPC library for grpc-google-cloud-vision-v1p3beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-vision-v1p4beta1/pom.xml b/google-api-grpc/grpc-google-cloud-vision-v1p4beta1/pom.xml index e906098a114c..488bf4618ac4 100644 --- a/google-api-grpc/grpc-google-cloud-vision-v1p4beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-vision-v1p4beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-vision-v1p4beta1 - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-vision-v1p4beta1 GRPC library for grpc-google-cloud-vision-v1p4beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-webrisk-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-webrisk-v1beta1/pom.xml index f6b94ee32259..480638ba3500 100644 --- a/google-api-grpc/grpc-google-cloud-webrisk-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-webrisk-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-webrisk-v1beta1 - 0.13.1-alpha-SNAPSHOT + 0.14.0-alpha grpc-google-cloud-webrisk-v1beta1 GRPC library for grpc-google-cloud-webrisk-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-websecurityscanner-v1alpha/pom.xml b/google-api-grpc/grpc-google-cloud-websecurityscanner-v1alpha/pom.xml index a61818e911b9..2cad755fa72b 100644 --- a/google-api-grpc/grpc-google-cloud-websecurityscanner-v1alpha/pom.xml +++ b/google-api-grpc/grpc-google-cloud-websecurityscanner-v1alpha/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-websecurityscanner-v1alpha - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-websecurityscanner-v1alpha GRPC library for grpc-google-cloud-websecurityscanner-v1alpha com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/grpc-google-cloud-websecurityscanner-v1beta/pom.xml b/google-api-grpc/grpc-google-cloud-websecurityscanner-v1beta/pom.xml index e30b6fc16c59..909de31a2366 100644 --- a/google-api-grpc/grpc-google-cloud-websecurityscanner-v1beta/pom.xml +++ b/google-api-grpc/grpc-google-cloud-websecurityscanner-v1beta/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-websecurityscanner-v1beta - 0.63.1-SNAPSHOT + 0.64.0 grpc-google-cloud-websecurityscanner-v1beta GRPC library for grpc-google-cloud-websecurityscanner-v1beta com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/pom.xml b/google-api-grpc/pom.xml index c39d139deab7..796b8aa02829 100644 --- a/google-api-grpc/pom.xml +++ b/google-api-grpc/pom.xml @@ -4,7 +4,7 @@ com.google.api.grpc google-api-grpc pom - 0.63.1-SNAPSHOT + 0.64.0 Google Cloud API gRPC https://github.com/googleapis/google-cloud-java/tree/master/google-api-grpc @@ -143,677 +143,677 @@ com.google.api.grpc proto-google-cloud-asset-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-asset-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-asset-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-asset-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-automl-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-automl-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-bigtable-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-bigtable-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-bigtable-admin-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-bigtable-admin-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-bigquerydatatransfer-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-bigquerydatatransfer-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-bigquerystorage-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-bigquerystorage-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-container-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-container-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-containeranalysis-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-containeranalysis-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-containeranalysis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-containeranalysis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-datacatalog-v1beta1 - 0.11.1-alpha-SNAPSHOT + 0.12.0-alpha com.google.api.grpc grpc-google-cloud-datacatalog-v1beta1 - 0.11.1-alpha-SNAPSHOT + 0.12.0-alpha com.google.api.grpc proto-google-cloud-datalabeling-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-datalabeling-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-dataproc-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-dataproc-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-dataproc-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-dataproc-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-datastore-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-dlp-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-dlp-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-dialogflow-v2beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-dialogflow-v2beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-dialogflow-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-dialogflow-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-error-reporting-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-error-reporting-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-firestore-admin-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc proto-google-cloud-firestore-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc proto-google-cloud-firestore-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-firestore-admin-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc grpc-google-cloud-firestore-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc grpc-google-cloud-firestore-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-kms-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-kms-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-language-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc grpc-google-cloud-language-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc proto-google-cloud-language-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-language-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-logging-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-logging-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-monitoring-v3 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc grpc-google-cloud-monitoring-v3 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc proto-google-cloud-os-login-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-os-login-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-pubsub-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc grpc-google-cloud-pubsub-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc proto-google-cloud-redis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-redis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-redis-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-redis-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-scheduler-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-scheduler-v1 - 1.3.1-SNAPSHOT + 1.4.0 com.google.api.grpc grpc-google-cloud-scheduler-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-scheduler-v1 - 1.3.1-SNAPSHOT + 1.4.0 com.google.api.grpc proto-google-cloud-spanner-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc grpc-google-cloud-spanner-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc proto-google-cloud-spanner-admin-database-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc grpc-google-cloud-spanner-admin-database-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc proto-google-cloud-spanner-admin-instance-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc grpc-google-cloud-spanner-admin-instance-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc proto-google-cloud-speech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-speech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-speech-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-speech-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-speech-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc grpc-google-cloud-speech-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc proto-google-cloud-tasks-v2 - 1.7.1-SNAPSHOT + 1.8.0 com.google.api.grpc grpc-google-cloud-tasks-v2 - 1.7.1-SNAPSHOT + 1.8.0 com.google.api.grpc proto-google-cloud-tasks-v2beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-tasks-v2beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-tasks-v2beta3 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-tasks-v2beta3 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-texttospeech-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-texttospeech-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-texttospeech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-texttospeech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-trace-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-trace-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-translate-v3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-translate-v3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-trace-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-trace-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-vision-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc grpc-google-cloud-vision-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc proto-google-cloud-vision-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-vision-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-vision-v1p2beta1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc grpc-google-cloud-vision-v1p2beta1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc proto-google-cloud-vision-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-vision-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-vision-v1p4beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-vision-v1p4beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-video-intelligence-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-video-intelligence-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-video-intelligence-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-video-intelligence-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-video-intelligence-v1p2beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1p2beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-video-intelligence-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-iot-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-iot-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-securitycenter-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-securitycenter-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-securitycenter-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-securitycenter-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-websecurityscanner-v1alpha - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-websecurityscanner-v1alpha - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-websecurityscanner-v1beta - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-websecurityscanner-v1beta - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-iamcredentials-v1 - 0.25.1-alpha-SNAPSHOT + 0.26.0-alpha com.google.api.grpc grpc-google-cloud-iamcredentials-v1 - 0.25.1-alpha-SNAPSHOT + 0.26.0-alpha com.google.api.grpc proto-google-cloud-talent-v4beta1 - 0.15.1-beta-SNAPSHOT + 0.16.0-beta com.google.api.grpc grpc-google-cloud-talent-v4beta1 - 0.15.1-beta-SNAPSHOT + 0.16.0-beta com.google.api.grpc proto-google-cloud-webrisk-v1beta1 - 0.13.1-alpha-SNAPSHOT + 0.14.0-alpha com.google.api.grpc grpc-google-cloud-webrisk-v1beta1 - 0.13.1-alpha-SNAPSHOT + 0.14.0-alpha com.google.api.grpc proto-google-cloud-phishingprotection-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 com.google.api.grpc grpc-google-cloud-phishingprotection-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 com.google.api.grpc proto-google-cloud-recaptchaenterprise-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 com.google.api.grpc grpc-google-cloud-recaptchaenterprise-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 diff --git a/google-api-grpc/proto-google-cloud-asset-v1/pom.xml b/google-api-grpc/proto-google-cloud-asset-v1/pom.xml index 8dc133a677a9..9c0143f8ef14 100644 --- a/google-api-grpc/proto-google-cloud-asset-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-asset-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-asset-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-asset-v1 PROTO library for proto-google-cloud-asset-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-asset-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-asset-v1beta1/pom.xml index e4d43fa5e18e..48e8d49dbf84 100644 --- a/google-api-grpc/proto-google-cloud-asset-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-asset-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-asset-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-asset-v1beta1 PROTO library for proto-google-cloud-asset-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-automl-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-automl-v1beta1/pom.xml index 622962fab0a7..13c8b1a24c19 100644 --- a/google-api-grpc/proto-google-cloud-automl-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-automl-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-automl-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-automl-v1beta1 PROTO library for proto-google-cloud-automl-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-bigquerydatatransfer-v1/pom.xml b/google-api-grpc/proto-google-cloud-bigquerydatatransfer-v1/pom.xml index 39f282b484ce..9888901dcc3f 100644 --- a/google-api-grpc/proto-google-cloud-bigquerydatatransfer-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-bigquerydatatransfer-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-bigquerydatatransfer-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-bigquerydatatransfer-v1 PROTO library for proto-google-cloud-bigquerydatatransfer-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/pom.xml index 28738c7fb977..a80c9d7523a3 100644 --- a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-bigquerystorage-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-bigquerystorage-v1beta1 PROTO library for proto-google-cloud-bigquerystorage-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-bigtable-admin-v2/pom.xml b/google-api-grpc/proto-google-cloud-bigtable-admin-v2/pom.xml index b9cefdc58b98..6fb536dbd1d3 100644 --- a/google-api-grpc/proto-google-cloud-bigtable-admin-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-bigtable-admin-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-bigtable-admin-v2 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-bigtable-admin-v2 PROTO library for proto-google-cloud-bigtable-admin-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-bigtable-v2/pom.xml b/google-api-grpc/proto-google-cloud-bigtable-v2/pom.xml index ad79754d9fa1..176b14e45671 100644 --- a/google-api-grpc/proto-google-cloud-bigtable-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-bigtable-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-bigtable-v2 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-bigtable-v2 PROTO library for proto-google-cloud-bigtable-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-container-v1/pom.xml b/google-api-grpc/proto-google-cloud-container-v1/pom.xml index 0931a4a12b69..6c7987f84aad 100644 --- a/google-api-grpc/proto-google-cloud-container-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-container-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-container-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-container-v1 PROTO library for proto-google-cloud-container-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-containeranalysis-v1/pom.xml b/google-api-grpc/proto-google-cloud-containeranalysis-v1/pom.xml index 5b8a24ca46ca..523beaaac63e 100644 --- a/google-api-grpc/proto-google-cloud-containeranalysis-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-containeranalysis-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-containeranalysis-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-containeranalysis-v1 PROTO library for proto-google-cloud-containeranalysis-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-containeranalysis-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-containeranalysis-v1beta1/pom.xml index f4f71cf2dd02..9823dcf0f67d 100644 --- a/google-api-grpc/proto-google-cloud-containeranalysis-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-containeranalysis-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-containeranalysis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-containeranalysis-v1beta1 PROTO library for proto-google-cloud-containeranalysis-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-datacatalog-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-datacatalog-v1beta1/pom.xml index 3b9952a92c63..ad4fa491770e 100644 --- a/google-api-grpc/proto-google-cloud-datacatalog-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-datacatalog-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-datacatalog-v1beta1 - 0.11.1-alpha-SNAPSHOT + 0.12.0-alpha proto-google-cloud-datacatalog-v1beta1 PROTO library for proto-google-cloud-datacatalog-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-datalabeling-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-datalabeling-v1beta1/pom.xml index 44eb8ddccbf9..26c7e39ba3af 100644 --- a/google-api-grpc/proto-google-cloud-datalabeling-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-datalabeling-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-datalabeling-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-datalabeling-v1beta1 PROTO library for proto-google-cloud-datalabeling-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-dataproc-v1/pom.xml b/google-api-grpc/proto-google-cloud-dataproc-v1/pom.xml index e21fec81db7d..212406d2e1f1 100644 --- a/google-api-grpc/proto-google-cloud-dataproc-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-dataproc-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-dataproc-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-dataproc-v1 PROTO library for proto-google-cloud-dataproc-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-dataproc-v1beta2/pom.xml b/google-api-grpc/proto-google-cloud-dataproc-v1beta2/pom.xml index 417a33e80417..aae94cd70458 100644 --- a/google-api-grpc/proto-google-cloud-dataproc-v1beta2/pom.xml +++ b/google-api-grpc/proto-google-cloud-dataproc-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-dataproc-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-dataproc-v1beta2 PROTO library for proto-google-cloud-dataproc-v1beta2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-datastore-v1/pom.xml b/google-api-grpc/proto-google-cloud-datastore-v1/pom.xml index 081ea813e4b5..71d29494a8a0 100644 --- a/google-api-grpc/proto-google-cloud-datastore-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-datastore-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-datastore-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-datastore-v1 PROTO library for proto-google-cloud-datastore-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-dialogflow-v2/pom.xml b/google-api-grpc/proto-google-cloud-dialogflow-v2/pom.xml index 22cf80af57cc..b64cc6bc0019 100644 --- a/google-api-grpc/proto-google-cloud-dialogflow-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-dialogflow-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-dialogflow-v2 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-dialogflow-v2 PROTO library for proto-google-cloud-dialogflow-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-dialogflow-v2beta1/pom.xml b/google-api-grpc/proto-google-cloud-dialogflow-v2beta1/pom.xml index ec1b64a84462..0e2f2e4165ac 100644 --- a/google-api-grpc/proto-google-cloud-dialogflow-v2beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-dialogflow-v2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-dialogflow-v2beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-dialogflow-v2beta1 PROTO library for proto-google-cloud-dialogflow-v2beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-dlp-v2/pom.xml b/google-api-grpc/proto-google-cloud-dlp-v2/pom.xml index f21232a70377..88205959aa17 100644 --- a/google-api-grpc/proto-google-cloud-dlp-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-dlp-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-dlp-v2 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-dlp-v2 PROTO library for proto-google-cloud-dlp-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-error-reporting-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-error-reporting-v1beta1/pom.xml index 54169837ae47..7156877aa034 100644 --- a/google-api-grpc/proto-google-cloud-error-reporting-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-error-reporting-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-error-reporting-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-error-reporting-v1beta1 PROTO library for proto-google-cloud-error-reporting-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-firestore-admin-v1/pom.xml b/google-api-grpc/proto-google-cloud-firestore-admin-v1/pom.xml index 697f5cddecc1..52d20fa1de1f 100644 --- a/google-api-grpc/proto-google-cloud-firestore-admin-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-firestore-admin-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-firestore-admin-v1 - 1.10.1-SNAPSHOT + 1.11.0 proto-google-cloud-firestore-admin-v1 PROTO library for proto-google-cloud-firestore-admin-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-firestore-v1/pom.xml b/google-api-grpc/proto-google-cloud-firestore-v1/pom.xml index 31376e1d57e6..50292b2d892b 100644 --- a/google-api-grpc/proto-google-cloud-firestore-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-firestore-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-firestore-v1 - 1.10.1-SNAPSHOT + 1.11.0 proto-google-cloud-firestore-v1 PROTO library for proto-google-cloud-firestore-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-firestore-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-firestore-v1beta1/pom.xml index 96665a58ef22..1972ffa9c713 100644 --- a/google-api-grpc/proto-google-cloud-firestore-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-firestore-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-firestore-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-firestore-v1beta1 PROTO library for proto-google-cloud-firestore-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-iamcredentials-v1/pom.xml b/google-api-grpc/proto-google-cloud-iamcredentials-v1/pom.xml index 6d1cbe96cf94..f21029961a9d 100644 --- a/google-api-grpc/proto-google-cloud-iamcredentials-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-iamcredentials-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-iamcredentials-v1 - 0.25.1-alpha-SNAPSHOT + 0.26.0-alpha proto-google-cloud-iamcredentials-v1 PROTO library for proto-google-cloud-iamcredentials-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-iot-v1/pom.xml b/google-api-grpc/proto-google-cloud-iot-v1/pom.xml index 9f65999ba867..2139e0878f55 100644 --- a/google-api-grpc/proto-google-cloud-iot-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-iot-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-iot-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-iot-v1 PROTO library for proto-google-cloud-iot-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-kms-v1/pom.xml b/google-api-grpc/proto-google-cloud-kms-v1/pom.xml index 4b75cb044809..b2a9e4411426 100644 --- a/google-api-grpc/proto-google-cloud-kms-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-kms-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-kms-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-kms-v1 PROTO library for proto-google-cloud-kms-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-language-v1/pom.xml b/google-api-grpc/proto-google-cloud-language-v1/pom.xml index 6a4824709fe8..088f85bda4eb 100644 --- a/google-api-grpc/proto-google-cloud-language-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-language-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-language-v1 - 1.62.1-SNAPSHOT + 1.63.0 proto-google-cloud-language-v1 PROTO library for proto-google-cloud-language-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-language-v1beta2/pom.xml b/google-api-grpc/proto-google-cloud-language-v1beta2/pom.xml index ae4a3b07f130..0b8d876a67e1 100644 --- a/google-api-grpc/proto-google-cloud-language-v1beta2/pom.xml +++ b/google-api-grpc/proto-google-cloud-language-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-language-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-language-v1beta2 PROTO library for proto-google-cloud-language-v1beta2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-logging-v2/pom.xml b/google-api-grpc/proto-google-cloud-logging-v2/pom.xml index 94647aea9c87..f2538ce986d9 100644 --- a/google-api-grpc/proto-google-cloud-logging-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-logging-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-logging-v2 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-logging-v2 PROTO library for proto-google-cloud-logging-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-monitoring-v3/pom.xml b/google-api-grpc/proto-google-cloud-monitoring-v3/pom.xml index e0229e930239..bb8367ff969e 100644 --- a/google-api-grpc/proto-google-cloud-monitoring-v3/pom.xml +++ b/google-api-grpc/proto-google-cloud-monitoring-v3/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-monitoring-v3 - 1.62.1-SNAPSHOT + 1.63.0 proto-google-cloud-monitoring-v3 PROTO library for proto-google-cloud-monitoring-v3 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-os-login-v1/pom.xml b/google-api-grpc/proto-google-cloud-os-login-v1/pom.xml index 773a46786bde..57931d53688e 100644 --- a/google-api-grpc/proto-google-cloud-os-login-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-os-login-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-os-login-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-os-login-v1 PROTO library for proto-google-cloud-os-login-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-phishingprotection-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-phishingprotection-v1beta1/pom.xml index 224d2b58c10b..c6fb44a3ab4b 100644 --- a/google-api-grpc/proto-google-cloud-phishingprotection-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-phishingprotection-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-phishingprotection-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 proto-google-cloud-phishingprotection-v1beta1 PROTO library for proto-google-cloud-phishingprotection-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-pubsub-v1/pom.xml b/google-api-grpc/proto-google-cloud-pubsub-v1/pom.xml index f6b9f0177b99..84eca144c7fa 100644 --- a/google-api-grpc/proto-google-cloud-pubsub-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-pubsub-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-pubsub-v1 - 1.62.1-SNAPSHOT + 1.63.0 proto-google-cloud-pubsub-v1 PROTO library for proto-google-cloud-pubsub-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-recaptchaenterprise-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-recaptchaenterprise-v1beta1/pom.xml index 3015c8ce058a..a7c463c082f7 100644 --- a/google-api-grpc/proto-google-cloud-recaptchaenterprise-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-recaptchaenterprise-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-recaptchaenterprise-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 proto-google-cloud-recaptchaenterprise-v1beta1 PROTO library for proto-google-cloud-recaptchaenterprise-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-redis-v1/pom.xml b/google-api-grpc/proto-google-cloud-redis-v1/pom.xml index ff3ef5e8619d..d35c1672c937 100644 --- a/google-api-grpc/proto-google-cloud-redis-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-redis-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-redis-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-redis-v1 PROTO library for proto-google-cloud-redis-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-redis-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-redis-v1beta1/pom.xml index 2e71819d1b59..d22ffe649b53 100644 --- a/google-api-grpc/proto-google-cloud-redis-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-redis-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-redis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-redis-v1beta1 PROTO library for proto-google-cloud-redis-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-scheduler-v1/pom.xml b/google-api-grpc/proto-google-cloud-scheduler-v1/pom.xml index dd12f23f238b..6fec74c2153b 100644 --- a/google-api-grpc/proto-google-cloud-scheduler-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-scheduler-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-scheduler-v1 - 1.3.1-SNAPSHOT + 1.4.0 proto-google-cloud-scheduler-v1 PROTO library for proto-google-cloud-scheduler-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-scheduler-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-scheduler-v1beta1/pom.xml index 1fd8dedf8fab..b4b8b33abde6 100644 --- a/google-api-grpc/proto-google-cloud-scheduler-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-scheduler-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-scheduler-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-scheduler-v1beta1 PROTO library for proto-google-cloud-scheduler-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-securitycenter-v1/pom.xml b/google-api-grpc/proto-google-cloud-securitycenter-v1/pom.xml index 6d1ff533f2e0..67b2093f2877 100644 --- a/google-api-grpc/proto-google-cloud-securitycenter-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-securitycenter-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-securitycenter-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-securitycenter-v1 PROTO library for proto-google-cloud-securitycenter-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-securitycenter-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-securitycenter-v1beta1/pom.xml index ad8c0c013b6c..0592ede06762 100644 --- a/google-api-grpc/proto-google-cloud-securitycenter-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-securitycenter-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-securitycenter-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-securitycenter-v1beta1 PROTO library for proto-google-cloud-securitycenter-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-spanner-admin-database-v1/pom.xml b/google-api-grpc/proto-google-cloud-spanner-admin-database-v1/pom.xml index c017b635073b..6c6919cfeffd 100644 --- a/google-api-grpc/proto-google-cloud-spanner-admin-database-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-spanner-admin-database-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-spanner-admin-database-v1 - 1.25.1-SNAPSHOT + 1.26.0 proto-google-cloud-spanner-admin-database-v1 PROTO library for proto-google-cloud-spanner-admin-database-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-spanner-admin-instance-v1/pom.xml b/google-api-grpc/proto-google-cloud-spanner-admin-instance-v1/pom.xml index bcacc53b7aa3..54252a5a5660 100644 --- a/google-api-grpc/proto-google-cloud-spanner-admin-instance-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-spanner-admin-instance-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-spanner-admin-instance-v1 - 1.25.1-SNAPSHOT + 1.26.0 proto-google-cloud-spanner-admin-instance-v1 PROTO library for proto-google-cloud-spanner-admin-instance-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-spanner-v1/pom.xml b/google-api-grpc/proto-google-cloud-spanner-v1/pom.xml index ed5f3ae5f0e5..d4f31b98a1dd 100644 --- a/google-api-grpc/proto-google-cloud-spanner-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-spanner-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-spanner-v1 - 1.25.1-SNAPSHOT + 1.26.0 proto-google-cloud-spanner-v1 PROTO library for proto-google-cloud-spanner-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-speech-v1/pom.xml b/google-api-grpc/proto-google-cloud-speech-v1/pom.xml index 0039e77db61b..c929b4843270 100644 --- a/google-api-grpc/proto-google-cloud-speech-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-speech-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-speech-v1 - 1.10.1-SNAPSHOT + 1.11.0 proto-google-cloud-speech-v1 PROTO library for proto-google-cloud-speech-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-speech-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-speech-v1beta1/pom.xml index 3c346937f848..0016b32eb694 100644 --- a/google-api-grpc/proto-google-cloud-speech-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-speech-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-speech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-speech-v1beta1 PROTO library for proto-google-cloud-speech-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-speech-v1p1beta1/pom.xml b/google-api-grpc/proto-google-cloud-speech-v1p1beta1/pom.xml index 34ac4f03170e..56debcc52a91 100644 --- a/google-api-grpc/proto-google-cloud-speech-v1p1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-speech-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-speech-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-speech-v1p1beta1 PROTO library for proto-google-cloud-speech-v1p1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/pom.xml b/google-api-grpc/proto-google-cloud-talent-v4beta1/pom.xml index f34af8435174..ba1a0cfce8fa 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-talent-v4beta1 - 0.15.1-beta-SNAPSHOT + 0.16.0-beta proto-google-cloud-talent-v4beta1 PROTO library for proto-google-cloud-talent-v4beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-tasks-v2/pom.xml b/google-api-grpc/proto-google-cloud-tasks-v2/pom.xml index 055a6b6ec25c..869fbba8cb53 100644 --- a/google-api-grpc/proto-google-cloud-tasks-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-tasks-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-tasks-v2 - 1.7.1-SNAPSHOT + 1.8.0 proto-google-cloud-tasks-v2 PROTO library for proto-google-cloud-tasks-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-tasks-v2beta2/pom.xml b/google-api-grpc/proto-google-cloud-tasks-v2beta2/pom.xml index 48230ac2807b..103da511dde3 100644 --- a/google-api-grpc/proto-google-cloud-tasks-v2beta2/pom.xml +++ b/google-api-grpc/proto-google-cloud-tasks-v2beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-tasks-v2beta2 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-tasks-v2beta2 PROTO library for proto-google-cloud-tasks-v2beta2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-tasks-v2beta3/pom.xml b/google-api-grpc/proto-google-cloud-tasks-v2beta3/pom.xml index 32373cecdc16..894cd58131d4 100644 --- a/google-api-grpc/proto-google-cloud-tasks-v2beta3/pom.xml +++ b/google-api-grpc/proto-google-cloud-tasks-v2beta3/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-tasks-v2beta3 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-tasks-v2beta3 PROTO library for proto-google-cloud-tasks-v2beta3 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-texttospeech-v1/pom.xml b/google-api-grpc/proto-google-cloud-texttospeech-v1/pom.xml index ce8c3480af92..3ed77388ccf2 100644 --- a/google-api-grpc/proto-google-cloud-texttospeech-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-texttospeech-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-texttospeech-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-texttospeech-v1 PROTO library for proto-google-cloud-texttospeech-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-texttospeech-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-texttospeech-v1beta1/pom.xml index 0aad0e988bd2..2e81f20da303 100644 --- a/google-api-grpc/proto-google-cloud-texttospeech-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-texttospeech-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-texttospeech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-texttospeech-v1beta1 PROTO library for proto-google-cloud-texttospeech-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-trace-v1/pom.xml b/google-api-grpc/proto-google-cloud-trace-v1/pom.xml index f9166334d76f..a854e41c78e5 100644 --- a/google-api-grpc/proto-google-cloud-trace-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-trace-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-trace-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-trace-v1 PROTO library for proto-google-cloud-trace-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-trace-v2/pom.xml b/google-api-grpc/proto-google-cloud-trace-v2/pom.xml index e26c3c8f31e3..cb987bcf0b5d 100644 --- a/google-api-grpc/proto-google-cloud-trace-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-trace-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-trace-v2 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-trace-v2 PROTO library for proto-google-cloud-trace-v2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-translate-v3beta1/pom.xml b/google-api-grpc/proto-google-cloud-translate-v3beta1/pom.xml index 6bd6270ef5b9..79a0d31a0a62 100644 --- a/google-api-grpc/proto-google-cloud-translate-v3beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-translate-v3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-translate-v3beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-translate-v3beta1 PROTO library for proto-google-cloud-translate-v3beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1/pom.xml index b8c168f58a9f..e90019a232ef 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-video-intelligence-v1 PROTO library for proto-google-cloud-video-intelligence-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/pom.xml index efa3e1a1ca4b..f2b93387e2a5 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-video-intelligence-v1beta1 PROTO library for proto-google-cloud-video-intelligence-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/pom.xml index e586da3f974b..7c76ee5298a7 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-video-intelligence-v1beta2 PROTO library for proto-google-cloud-video-intelligence-v1beta2 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/pom.xml index da4cdb9ae308..5db301766f08 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-video-intelligence-v1p1beta1 PROTO library for proto-google-cloud-video-intelligence-v1p1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/pom.xml index 547e558711fb..786a1cb59726 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1p2beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-video-intelligence-v1p2beta1 PROTO library for proto-google-cloud-video-intelligence-v1p2beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/pom.xml index 5a92394d48c7..58fe27050af6 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-video-intelligence-v1p3beta1 PROTO library for proto-google-cloud-video-intelligence-v1p3beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-vision-v1/pom.xml b/google-api-grpc/proto-google-cloud-vision-v1/pom.xml index c477de819d9a..716a344fa89b 100644 --- a/google-api-grpc/proto-google-cloud-vision-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-vision-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-vision-v1 - 1.62.1-SNAPSHOT + 1.63.0 proto-google-cloud-vision-v1 PROTO library for proto-google-cloud-vision-v1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-vision-v1p1beta1/pom.xml b/google-api-grpc/proto-google-cloud-vision-v1p1beta1/pom.xml index fc4609b19d13..506fbda1ca24 100644 --- a/google-api-grpc/proto-google-cloud-vision-v1p1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-vision-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-vision-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-vision-v1p1beta1 PROTO library for proto-google-cloud-vision-v1p1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-vision-v1p2beta1/pom.xml b/google-api-grpc/proto-google-cloud-vision-v1p2beta1/pom.xml index 6b8ae95aa2a5..f98b7786e229 100644 --- a/google-api-grpc/proto-google-cloud-vision-v1p2beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-vision-v1p2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-vision-v1p2beta1 - 1.62.1-SNAPSHOT + 1.63.0 proto-google-cloud-vision-v1p2beta1 PROTO library for proto-google-cloud-vision-v1p2beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-vision-v1p3beta1/pom.xml b/google-api-grpc/proto-google-cloud-vision-v1p3beta1/pom.xml index 937d8106e19d..cb6f62aa3b8a 100644 --- a/google-api-grpc/proto-google-cloud-vision-v1p3beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-vision-v1p3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-vision-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-vision-v1p3beta1 PROTO library for proto-google-cloud-vision-v1p3beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-vision-v1p4beta1/pom.xml b/google-api-grpc/proto-google-cloud-vision-v1p4beta1/pom.xml index ff0e0d724208..db2dd4641ecc 100644 --- a/google-api-grpc/proto-google-cloud-vision-v1p4beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-vision-v1p4beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-vision-v1p4beta1 - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-vision-v1p4beta1 PROTO library for proto-google-cloud-vision-v1p4beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-webrisk-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-webrisk-v1beta1/pom.xml index f80afbab1adc..8b0887024727 100644 --- a/google-api-grpc/proto-google-cloud-webrisk-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-webrisk-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-webrisk-v1beta1 - 0.13.1-alpha-SNAPSHOT + 0.14.0-alpha proto-google-cloud-webrisk-v1beta1 PROTO library for proto-google-cloud-webrisk-v1beta1 com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-websecurityscanner-v1alpha/pom.xml b/google-api-grpc/proto-google-cloud-websecurityscanner-v1alpha/pom.xml index 90dd5102cca3..145551ff2a96 100644 --- a/google-api-grpc/proto-google-cloud-websecurityscanner-v1alpha/pom.xml +++ b/google-api-grpc/proto-google-cloud-websecurityscanner-v1alpha/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-websecurityscanner-v1alpha - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-websecurityscanner-v1alpha PROTO library for proto-google-cloud-websecurityscanner-v1alpha com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-api-grpc/proto-google-cloud-websecurityscanner-v1beta/pom.xml b/google-api-grpc/proto-google-cloud-websecurityscanner-v1beta/pom.xml index 522d9e790db3..4f615565a98c 100644 --- a/google-api-grpc/proto-google-cloud-websecurityscanner-v1beta/pom.xml +++ b/google-api-grpc/proto-google-cloud-websecurityscanner-v1beta/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-websecurityscanner-v1beta - 0.63.1-SNAPSHOT + 0.64.0 proto-google-cloud-websecurityscanner-v1beta PROTO library for proto-google-cloud-websecurityscanner-v1beta com.google.api.grpc google-api-grpc - 0.63.1-SNAPSHOT + 0.64.0 diff --git a/google-cloud-bom/README.md b/google-cloud-bom/README.md index 988dd15cba62..e3b59d69c2ba 100644 --- a/google-cloud-bom/README.md +++ b/google-cloud-bom/README.md @@ -13,7 +13,7 @@ To use it in Maven, add the following to your POM: com.google.cloud google-cloud-bom - 0.98.0-alpha + 0.99.0-alpha pom import diff --git a/google-cloud-bom/pom.xml b/google-cloud-bom/pom.xml index 5fe052396148..23e916f2c061 100644 --- a/google-cloud-bom/pom.xml +++ b/google-cloud-bom/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-bom pom - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha Google Cloud Java BOM https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-bom @@ -197,923 +197,923 @@ com.google.cloud google-cloud-asset - 0.98.1-beta-SNAPSHOT + 0.99.0-beta com.google.api.grpc proto-google-cloud-asset-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-asset-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-asset-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-asset-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-automl - 0.98.1-beta-SNAPSHOT + 0.99.0-beta com.google.api.grpc proto-google-cloud-automl-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-automl-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-bigtable - 0.98.1-SNAPSHOT + 0.99.0 com.google.api.grpc proto-google-cloud-bigtable-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-bigtable-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-bigtable-admin-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-bigtable-admin-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-bigtable-emulator - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.cloud google-cloud-bigquery - 1.80.1-SNAPSHOT + 1.81.0 com.google.cloud google-cloud-bigquerydatatransfer - 0.98.1-beta-SNAPSHOT + 0.99.0-beta com.google.api.grpc proto-google-cloud-bigquerydatatransfer-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-bigquerydatatransfer-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-bigquerystorage-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-bigquerystorage-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-compute - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.cloud google-cloud-container - 0.98.1-beta-SNAPSHOT + 0.99.0-beta com.google.api.grpc proto-google-cloud-container-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-container-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-containeranalysis - 0.98.1-beta-SNAPSHOT + 0.99.0-beta com.google.api.grpc proto-google-cloud-containeranalysis-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-containeranalysis-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-containeranalysis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-containeranalysis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-contrib - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.cloud google-cloud-nio - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.cloud google-cloud-core - 1.80.1-SNAPSHOT + 1.81.0 com.google.cloud google-cloud-core-grpc - 1.80.1-SNAPSHOT + 1.81.0 com.google.cloud google-cloud-core-http - 1.80.1-SNAPSHOT + 1.81.0 com.google.cloud google-cloud-datacatalog - 0.11.1-alpha-SNAPSHOT + 0.12.0-alpha com.google.api.grpc proto-google-cloud-datacatalog-v1beta1 - 0.11.1-alpha-SNAPSHOT + 0.12.0-alpha com.google.api.grpc grpc-google-cloud-datacatalog-v1beta1 - 0.11.1-alpha-SNAPSHOT + 0.12.0-alpha com.google.cloud google-cloud-datalabeling - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.api.grpc proto-google-cloud-datalabeling-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-datalabeling-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-dataproc - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.api.grpc proto-google-cloud-dataproc-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-dataproc-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-dataproc-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-dataproc-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-datastore - 1.80.1-SNAPSHOT + 1.81.0 com.google.api.grpc proto-google-cloud-datastore-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-dlp - 0.98.1-beta-SNAPSHOT + 0.99.0-beta com.google.api.grpc proto-google-cloud-dlp-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-dlp-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-dialogflow - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.api.grpc proto-google-cloud-dialogflow-v2beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-dialogflow-v2beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-dialogflow-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-dialogflow-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-dns - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.cloud google-cloud-errorreporting - 0.98.1-beta-SNAPSHOT + 0.99.0-beta com.google.api.grpc proto-google-cloud-error-reporting-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-error-reporting-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-firestore - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc proto-google-cloud-firestore-admin-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc proto-google-cloud-firestore-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc proto-google-cloud-firestore-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-firestore-admin-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc grpc-google-cloud-firestore-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc grpc-google-cloud-firestore-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-kms - 1.16.1-SNAPSHOT + 1.17.0 com.google.api.grpc proto-google-cloud-kms-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-kms-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-language - 1.80.1-SNAPSHOT + 1.81.0 com.google.api.grpc proto-google-cloud-language-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc grpc-google-cloud-language-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc proto-google-cloud-language-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-language-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-logging - 1.80.1-SNAPSHOT + 1.81.0 com.google.api.grpc proto-google-cloud-logging-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-logging-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-logging-logback - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.cloud google-cloud-monitoring - 1.80.1-SNAPSHOT + 1.81.0 com.google.api.grpc proto-google-cloud-monitoring-v3 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc grpc-google-cloud-monitoring-v3 - 1.62.1-SNAPSHOT + 1.63.0 com.google.cloud google-cloud-os-login - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.api.grpc proto-google-cloud-os-login-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-os-login-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-pubsub - 1.80.1-SNAPSHOT + 1.81.0 com.google.api.grpc proto-google-cloud-pubsub-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc grpc-google-cloud-pubsub-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.cloud google-cloud-redis - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.api.grpc proto-google-cloud-redis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-redis-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-redis-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-redis-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-resourcemanager - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha com.google.cloud google-cloud-scheduler - 1.3.1-SNAPSHOT + 1.4.0 com.google.api.grpc proto-google-cloud-scheduler-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-scheduler-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-securitycenter - 0.98.1-SNAPSHOT + 0.99.0 com.google.api.grpc grpc-google-cloud-scheduler-v1 - 1.3.1-SNAPSHOT + 1.4.0 com.google.api.grpc proto-google-cloud-scheduler-v1 - 1.3.1-SNAPSHOT + 1.4.0 com.google.api.grpc proto-google-cloud-securitycenter-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-securitycenter-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-securitycenter-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-securitycenter-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-spanner - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc proto-google-cloud-spanner-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc grpc-google-cloud-spanner-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc proto-google-cloud-spanner-admin-database-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc grpc-google-cloud-spanner-admin-database-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc proto-google-cloud-spanner-admin-instance-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.api.grpc grpc-google-cloud-spanner-admin-instance-v1 - 1.25.1-SNAPSHOT + 1.26.0 com.google.cloud google-cloud-speech - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc proto-google-cloud-speech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-speech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-speech-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-speech-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-speech-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.api.grpc grpc-google-cloud-speech-v1 - 1.10.1-SNAPSHOT + 1.11.0 com.google.cloud google-cloud-storage - 1.80.1-SNAPSHOT + 1.81.0 com.google.cloud google-cloud-tasks - 1.7.1-SNAPSHOT + 1.8.0 com.google.api.grpc proto-google-cloud-tasks-v2 - 1.7.1-SNAPSHOT + 1.8.0 com.google.api.grpc grpc-google-cloud-tasks-v2 - 1.7.1-SNAPSHOT + 1.8.0 com.google.api.grpc proto-google-cloud-tasks-v2beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-tasks-v2beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-tasks-v2beta3 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-tasks-v2beta3 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-texttospeech - 0.98.1-beta-SNAPSHOT + 0.99.0-beta com.google.api.grpc proto-google-cloud-texttospeech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-texttospeech-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-texttospeech-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-texttospeech-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-trace - 0.98.1-beta-SNAPSHOT + 0.99.0-beta com.google.api.grpc proto-google-cloud-trace-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-trace-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-trace-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-trace-v2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-translate-v3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-translate-v3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-translate - 1.80.1-SNAPSHOT + 1.81.0 com.google.cloud google-cloud-vision - 1.80.1-SNAPSHOT + 1.81.0 com.google.api.grpc proto-google-cloud-vision-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc grpc-google-cloud-vision-v1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc proto-google-cloud-vision-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-vision-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-vision-v1p2beta1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc grpc-google-cloud-vision-v1p2beta1 - 1.62.1-SNAPSHOT + 1.63.0 com.google.api.grpc proto-google-cloud-vision-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-vision-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-vision-v1p4beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-vision-v1p4beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.cloud google-cloud-video-intelligence - 0.98.1-beta-SNAPSHOT + 0.99.0-beta com.google.api.grpc proto-google-cloud-video-intelligence-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-video-intelligence-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1beta2 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-video-intelligence-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-video-intelligence-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1p1beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-video-intelligence-v1p2beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1p2beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-video-intelligence-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-video-intelligence-v1p3beta1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-iot-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-iot-v1 - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-websecurityscanner-v1alpha - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-websecurityscanner-v1alpha - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-websecurityscanner-v1beta - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc grpc-google-cloud-websecurityscanner-v1beta - 0.63.1-SNAPSHOT + 0.64.0 com.google.api.grpc proto-google-cloud-iamcredentials-v1 - 0.25.1-alpha-SNAPSHOT + 0.26.0-alpha com.google.api.grpc grpc-google-cloud-iamcredentials-v1 - 0.25.1-alpha-SNAPSHOT + 0.26.0-alpha com.google.cloud google-cloud-iamcredentials - 0.25.1-alpha-SNAPSHOT + 0.26.0-alpha com.google.api.grpc proto-google-cloud-talent-v4beta1 - 0.15.1-beta-SNAPSHOT + 0.16.0-beta com.google.api.grpc grpc-google-cloud-talent-v4beta1 - 0.15.1-beta-SNAPSHOT + 0.16.0-beta com.google.cloud google-cloud-talent - 0.15.1-beta-SNAPSHOT + 0.16.0-beta com.google.api.grpc proto-google-cloud-webrisk-v1beta1 - 0.13.1-alpha-SNAPSHOT + 0.14.0-alpha com.google.api.grpc grpc-google-cloud-webrisk-v1beta1 - 0.13.1-alpha-SNAPSHOT + 0.14.0-alpha com.google.cloud google-cloud-webrisk - 0.13.1-alpha-SNAPSHOT + 0.14.0-alpha com.google.api.grpc proto-google-cloud-phishingprotection-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 com.google.api.grpc grpc-google-cloud-phishingprotection-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 com.google.cloud google-cloud-phishingprotection - 0.9.1-SNAPSHOT + 0.10.0 com.google.api.grpc proto-google-cloud-recaptchaenterprise-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 com.google.api.grpc grpc-google-cloud-recaptchaenterprise-v1beta1 - 0.9.1-SNAPSHOT + 0.10.0 com.google.cloud google-cloud-recaptchaenterprise - 0.9.1-SNAPSHOT + 0.10.0 io.grafeas grafeas - 0.1.1-SNAPSHOT + 0.2.0 diff --git a/google-cloud-clients/google-cloud-asset/README.md b/google-cloud-clients/google-cloud-asset/README.md index 6e234c0cb75f..77c30ae3c488 100644 --- a/google-cloud-clients/google-cloud-asset/README.md +++ b/google-cloud-clients/google-cloud-asset/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-asset - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-asset:0.98.0-beta' +compile 'com.google.cloud:google-cloud-asset:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-asset" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-asset" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-asset/pom.xml b/google-cloud-clients/google-cloud-asset/pom.xml index d5a8b4a991ae..a91e914cf15e 100644 --- a/google-cloud-clients/google-cloud-asset/pom.xml +++ b/google-cloud-clients/google-cloud-asset/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-asset - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Asset https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-asset @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-asset diff --git a/google-cloud-clients/google-cloud-automl/README.md b/google-cloud-clients/google-cloud-automl/README.md index 51eec5e12970..065eedf4ce1a 100644 --- a/google-cloud-clients/google-cloud-automl/README.md +++ b/google-cloud-clients/google-cloud-automl/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-automl - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-automl:0.98.0-beta' +compile 'com.google.cloud:google-cloud-automl:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-automl" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-automl" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-automl/pom.xml b/google-cloud-clients/google-cloud-automl/pom.xml index 16dc9dbfc7e9..f5b236ca29fc 100644 --- a/google-cloud-clients/google-cloud-automl/pom.xml +++ b/google-cloud-clients/google-cloud-automl/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-automl - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Auto ML https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-automl @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-automl diff --git a/google-cloud-clients/google-cloud-bigquery/README.md b/google-cloud-clients/google-cloud-bigquery/README.md index 38dddf9d4b49..3ebab1163b85 100644 --- a/google-cloud-clients/google-cloud-bigquery/README.md +++ b/google-cloud-clients/google-cloud-bigquery/README.md @@ -18,16 +18,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-bigquery - 1.80.0 + 1.81.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-bigquery:1.80.0' +compile 'com.google.cloud:google-cloud-bigquery:1.81.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "1.80.0" +libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "1.81.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-bigquery/pom.xml b/google-cloud-clients/google-cloud-bigquery/pom.xml index 5bacb1fb450d..afa1b0efbb26 100644 --- a/google-cloud-clients/google-cloud-bigquery/pom.xml +++ b/google-cloud-clients/google-cloud-bigquery/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-bigquery - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud BigQuery https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-bigquery @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-bigquery diff --git a/google-cloud-clients/google-cloud-bigquerydatatransfer/README.md b/google-cloud-clients/google-cloud-bigquerydatatransfer/README.md index 32cebfbd4952..fe29d1179816 100644 --- a/google-cloud-clients/google-cloud-bigquerydatatransfer/README.md +++ b/google-cloud-clients/google-cloud-bigquerydatatransfer/README.md @@ -23,16 +23,16 @@ Add this to your pom.xml file com.google.cloud google-cloud-bigquerydatatransfer - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-bigquerydatatransfer:0.98.0-beta' +compile 'com.google.cloud:google-cloud-bigquerydatatransfer:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-bigquerydatatransfer" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-bigquerydatatransfer" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml b/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml index 6d04d6726295..c6402eae017b 100644 --- a/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml +++ b/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-bigquerydatatransfer - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Bigquery Data Transfer https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-bigquerydatatransfer @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-bigquerydatatransfer diff --git a/google-cloud-clients/google-cloud-bigquerystorage/README.md b/google-cloud-clients/google-cloud-bigquerystorage/README.md index 91dd8ca09276..0d3e440d1fed 100644 --- a/google-cloud-clients/google-cloud-bigquerystorage/README.md +++ b/google-cloud-clients/google-cloud-bigquerystorage/README.md @@ -20,16 +20,16 @@ Add this to your pom.xml file com.google.cloud google-cloud-bigquerystorage - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-bigquerystorage:0.98.0-beta' +compile 'com.google.cloud:google-cloud-bigquerystorage:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-bigquerystorage" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-bigquerystorage" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-bigquerystorage/pom.xml b/google-cloud-clients/google-cloud-bigquerystorage/pom.xml index df5958024510..392989261561 100644 --- a/google-cloud-clients/google-cloud-bigquerystorage/pom.xml +++ b/google-cloud-clients/google-cloud-bigquerystorage/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-bigquerystorage - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Bigquery Storage https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-bigquerystorage @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-bigquerystorage diff --git a/google-cloud-clients/google-cloud-bigtable/README.md b/google-cloud-clients/google-cloud-bigtable/README.md index 1b392e0b65d7..3cb77d812e7a 100644 --- a/google-cloud-clients/google-cloud-bigtable/README.md +++ b/google-cloud-clients/google-cloud-bigtable/README.md @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-bigtable - 0.98.0 + 0.99.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-bigtable:0.98.0' +compile 'com.google.cloud:google-cloud-bigtable:0.99.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-bigtable" % "0.98.0" +libraryDependencies += "com.google.cloud" % "google-cloud-bigtable" % "0.99.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-bigtable/pom.xml b/google-cloud-clients/google-cloud-bigtable/pom.xml index 8fc2cb4e9200..f809b0cee223 100644 --- a/google-cloud-clients/google-cloud-bigtable/pom.xml +++ b/google-cloud-clients/google-cloud-bigtable/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-bigtable - 0.98.1-SNAPSHOT + 0.99.0 jar Google Cloud Bigtable https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-bigtable @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-bigtable diff --git a/google-cloud-clients/google-cloud-compute/README.md b/google-cloud-clients/google-cloud-compute/README.md index cf56aed33157..857e270ed7e0 100644 --- a/google-cloud-clients/google-cloud-compute/README.md +++ b/google-cloud-clients/google-cloud-compute/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-compute - 0.98.0-alpha + 0.99.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-compute:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-compute:0.99.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-compute" % "0.98.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-compute" % "0.99.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-compute/pom.xml b/google-cloud-clients/google-cloud-compute/pom.xml index 99c17097d73d..6db990ff0f50 100644 --- a/google-cloud-clients/google-cloud-compute/pom.xml +++ b/google-cloud-clients/google-cloud-compute/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-compute - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud Compute https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-compute @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-compute diff --git a/google-cloud-clients/google-cloud-container/README.md b/google-cloud-clients/google-cloud-container/README.md index a93a22c338b0..29b4fedb62af 100644 --- a/google-cloud-clients/google-cloud-container/README.md +++ b/google-cloud-clients/google-cloud-container/README.md @@ -22,16 +22,16 @@ Add this to your pom.xml file com.google.cloud google-cloud-container - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-container:0.98.0-beta' +compile 'com.google.cloud:google-cloud-container:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-container" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-container" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-container/pom.xml b/google-cloud-clients/google-cloud-container/pom.xml index 6bbc7f6ea306..378565f5cf09 100644 --- a/google-cloud-clients/google-cloud-container/pom.xml +++ b/google-cloud-clients/google-cloud-container/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-container - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Container https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-container @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-container diff --git a/google-cloud-clients/google-cloud-containeranalysis/README.md b/google-cloud-clients/google-cloud-containeranalysis/README.md index 4d7cf9ec6ea8..862feeaa6b86 100644 --- a/google-cloud-clients/google-cloud-containeranalysis/README.md +++ b/google-cloud-clients/google-cloud-containeranalysis/README.md @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-containeranalysis - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-containeranalysis:0.98.0-beta' +compile 'com.google.cloud:google-cloud-containeranalysis:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-containeranalysis" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-containeranalysis" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-containeranalysis/pom.xml b/google-cloud-clients/google-cloud-containeranalysis/pom.xml index e00ab766f709..d05d2342914b 100644 --- a/google-cloud-clients/google-cloud-containeranalysis/pom.xml +++ b/google-cloud-clients/google-cloud-containeranalysis/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-containeranalysis - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Container Analysis https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-containeranalysis @@ -15,7 +15,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-containeranalysis diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/README.md b/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/README.md index 5718d02ca9ef..42be80d0ce43 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/README.md +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/README.md @@ -21,16 +21,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-logging-logback - 0.98.0-alpha + 0.99.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-logging-logback:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-logging-logback:0.99.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-logging-logback" % "0.98.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-logging-logback" % "0.99.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml index 4e955d2b7cc6..9fde3d729edc 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml @@ -5,7 +5,7 @@ 4.0.0 google-cloud-logging-logback - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud Logging Logback Appender https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback @@ -20,7 +20,7 @@ com.google.cloud google-cloud-contrib - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/README.md b/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/README.md index b9f5598dd26b..68d24851782f 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/README.md +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/README.md @@ -24,12 +24,12 @@ To run this example: [//]: # ({x-version-update-start:google-cloud-nio:current}) ``` - java -cp google-cloud-clients/google-cloud-contrib/google-cloud-nio/target/google-cloud-nio-0.98.1-alpha-SNAPSHOT.jar:google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.98.1-alpha-SNAPSHOT.jar com.google.cloud.nio.examples.ListFilesystems + java -cp google-cloud-clients/google-cloud-contrib/google-cloud-nio/target/google-cloud-nio-0.99.0-alpha.jar:google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.99.0-alpha.jar com.google.cloud.nio.examples.ListFilesystems ``` Notice that it lists Google Cloud Storage, which it wouldn't if you ran it without the NIO jar: ``` - java -cp google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.98.1-alpha-SNAPSHOT.jar com.google.cloud.nio.examples.ListFilesystems + java -cp google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.99.0-alpha.jar com.google.cloud.nio.examples.ListFilesystems ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml index eb66dd639851..b8cef6c0e797 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-nio-examples - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud NIO Examples https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples @@ -12,7 +12,7 @@ com.google.cloud google-cloud-contrib - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-nio-examples diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-nio/README.md b/google-cloud-clients/google-cloud-contrib/google-cloud-nio/README.md index 6aae63ade279..60b220aedb78 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-nio/README.md +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-nio/README.md @@ -26,16 +26,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-nio - 0.98.0-alpha + 0.99.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-nio:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-nio:0.99.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-nio" % "0.98.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-nio" % "0.99.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml index 24feecef5627..702af8d06a35 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-nio - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud NIO https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-contrib/google-cloud-nio @@ -12,7 +12,7 @@ com.google.cloud google-cloud-contrib - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-nio diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-notification/README.md b/google-cloud-clients/google-cloud-contrib/google-cloud-notification/README.md index ff21f7f88b03..7591d12546c6 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-notification/README.md +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-notification/README.md @@ -17,16 +17,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-notification - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-notification:0.98.0-beta' +compile 'com.google.cloud:google-cloud-notification:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-notification" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-notification" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml index e2f0d5379088..3c6784c3a004 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-notification - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Pub/Sub Notifications for GCS https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-notification @@ -15,7 +15,7 @@ com.google.cloud google-cloud-contrib - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-notification diff --git a/google-cloud-clients/google-cloud-contrib/pom.xml b/google-cloud-clients/google-cloud-contrib/pom.xml index c31277742354..338d572ab9ef 100644 --- a/google-cloud-clients/google-cloud-contrib/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-contrib - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha pom Google Cloud Contributions https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-contrib @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-contrib diff --git a/google-cloud-clients/google-cloud-core-grpc/pom.xml b/google-cloud-clients/google-cloud-core-grpc/pom.xml index 519225e10e3b..79bb9f3720a4 100644 --- a/google-cloud-clients/google-cloud-core-grpc/pom.xml +++ b/google-cloud-clients/google-cloud-core-grpc/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-core-grpc - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud Core gRPC https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-core-grpc @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-core-grpc diff --git a/google-cloud-clients/google-cloud-core-http/pom.xml b/google-cloud-clients/google-cloud-core-http/pom.xml index 965201188c0c..ab7c8a908de0 100644 --- a/google-cloud-clients/google-cloud-core-http/pom.xml +++ b/google-cloud-clients/google-cloud-core-http/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-core-http - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud Core HTTP https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-core-http @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-core-http diff --git a/google-cloud-clients/google-cloud-core/README.md b/google-cloud-clients/google-cloud-core/README.md index 841cd664a125..e0870cb5681e 100644 --- a/google-cloud-clients/google-cloud-core/README.md +++ b/google-cloud-clients/google-cloud-core/README.md @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-core - 1.80.0 + 1.81.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-core:1.80.0' +compile 'com.google.cloud:google-cloud-core:1.81.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-core" % "1.80.0" +libraryDependencies += "com.google.cloud" % "google-cloud-core" % "1.81.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-core/pom.xml b/google-cloud-clients/google-cloud-core/pom.xml index 71f9e59d15f1..4efc6c82a46f 100644 --- a/google-cloud-clients/google-cloud-core/pom.xml +++ b/google-cloud-clients/google-cloud-core/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-core - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud Core https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-core @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-core diff --git a/google-cloud-clients/google-cloud-datacatalog/README.md b/google-cloud-clients/google-cloud-datacatalog/README.md index 6b40e45625c5..c8628a007ea7 100644 --- a/google-cloud-clients/google-cloud-datacatalog/README.md +++ b/google-cloud-clients/google-cloud-datacatalog/README.md @@ -24,16 +24,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-datacatalog - 0.11.0-alpha + 0.12.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-datacatalog:0.11.0-alpha' +compile 'com.google.cloud:google-cloud-datacatalog:0.12.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-datacatalog" % "0.11.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-datacatalog" % "0.12.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-datacatalog/pom.xml b/google-cloud-clients/google-cloud-datacatalog/pom.xml index d68ffaeaad29..486517e6a4d4 100644 --- a/google-cloud-clients/google-cloud-datacatalog/pom.xml +++ b/google-cloud-clients/google-cloud-datacatalog/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-datacatalog - 0.11.1-alpha-SNAPSHOT + 0.12.0-alpha jar Google Cloud Datacatalog https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-datacatalog @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-datacatalog diff --git a/google-cloud-clients/google-cloud-datalabeling/README.md b/google-cloud-clients/google-cloud-datalabeling/README.md index bd6c4a4eda02..55a7ef665ce6 100644 --- a/google-cloud-clients/google-cloud-datalabeling/README.md +++ b/google-cloud-clients/google-cloud-datalabeling/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-datalabeling - 0.98.0-alpha + 0.99.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-datalabeling:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-datalabeling:0.99.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-datalabeling" % "0.98.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-datalabeling" % "0.99.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-datalabeling/pom.xml b/google-cloud-clients/google-cloud-datalabeling/pom.xml index 095fb9d4b960..0ba6b70e9bfd 100644 --- a/google-cloud-clients/google-cloud-datalabeling/pom.xml +++ b/google-cloud-clients/google-cloud-datalabeling/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-datalabeling - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud Asset https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-datalabeling @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-datalabeling diff --git a/google-cloud-clients/google-cloud-dataproc/README.md b/google-cloud-clients/google-cloud-dataproc/README.md index 1f80da1abbb4..d86bfb3d9cde 100644 --- a/google-cloud-clients/google-cloud-dataproc/README.md +++ b/google-cloud-clients/google-cloud-dataproc/README.md @@ -22,16 +22,16 @@ Add this to your pom.xml file com.google.cloud google-cloud-dataproc - 0.98.0-alpha + 0.99.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-dataproc:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-dataproc:0.99.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-dataproc" % "0.98.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-dataproc" % "0.99.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-dataproc/pom.xml b/google-cloud-clients/google-cloud-dataproc/pom.xml index f2c7ccdda0aa..30c9531d5037 100644 --- a/google-cloud-clients/google-cloud-dataproc/pom.xml +++ b/google-cloud-clients/google-cloud-dataproc/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-dataproc - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud Dataproc https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-dataproc @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-dataproc diff --git a/google-cloud-clients/google-cloud-datastore/README.md b/google-cloud-clients/google-cloud-datastore/README.md index 0d110c30b624..e19d29f2fd38 100644 --- a/google-cloud-clients/google-cloud-datastore/README.md +++ b/google-cloud-clients/google-cloud-datastore/README.md @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-datastore - 1.80.0 + 1.81.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-datastore:1.80.0' +compile 'com.google.cloud:google-cloud-datastore:1.81.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-datastore" % "1.80.0" +libraryDependencies += "com.google.cloud" % "google-cloud-datastore" % "1.81.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-datastore/pom.xml b/google-cloud-clients/google-cloud-datastore/pom.xml index dea718286b82..77af3bfd0257 100644 --- a/google-cloud-clients/google-cloud-datastore/pom.xml +++ b/google-cloud-clients/google-cloud-datastore/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-datastore - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud Datastore https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-datastore @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-datastore diff --git a/google-cloud-clients/google-cloud-dialogflow/README.md b/google-cloud-clients/google-cloud-dialogflow/README.md index e66e96817fc0..710f3d26a4c3 100644 --- a/google-cloud-clients/google-cloud-dialogflow/README.md +++ b/google-cloud-clients/google-cloud-dialogflow/README.md @@ -23,16 +23,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-dialogflow - 0.98.0-alpha + 0.99.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-dialogflow:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-dialogflow:0.99.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-dialogflow" % "0.98.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-dialogflow" % "0.99.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-dialogflow/pom.xml b/google-cloud-clients/google-cloud-dialogflow/pom.xml index e5bd1964d466..1bee70fda475 100644 --- a/google-cloud-clients/google-cloud-dialogflow/pom.xml +++ b/google-cloud-clients/google-cloud-dialogflow/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-dialogflow - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud Dialog Flow API https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-dialogflow @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-dialogflow diff --git a/google-cloud-clients/google-cloud-dlp/README.md b/google-cloud-clients/google-cloud-dlp/README.md index 2d49f29b0175..618599e070ae 100644 --- a/google-cloud-clients/google-cloud-dlp/README.md +++ b/google-cloud-clients/google-cloud-dlp/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-dlp - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-dlp:0.98.0-beta' +compile 'com.google.cloud:google-cloud-dlp:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-dlp" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-dlp" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-dlp/pom.xml b/google-cloud-clients/google-cloud-dlp/pom.xml index 3e3bb3d140c5..73143934f4c1 100644 --- a/google-cloud-clients/google-cloud-dlp/pom.xml +++ b/google-cloud-clients/google-cloud-dlp/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-dlp - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Data Loss Prevention API https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-dlp @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-dlp diff --git a/google-cloud-clients/google-cloud-dns/README.md b/google-cloud-clients/google-cloud-dns/README.md index c6b59bc5105a..6f4674d86251 100644 --- a/google-cloud-clients/google-cloud-dns/README.md +++ b/google-cloud-clients/google-cloud-dns/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-dns - 0.98.0-alpha + 0.99.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-dns:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-dns:0.99.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-dns" % "0.98.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-dns" % "0.99.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-dns/pom.xml b/google-cloud-clients/google-cloud-dns/pom.xml index ad7dc9c47dff..725cf2963827 100644 --- a/google-cloud-clients/google-cloud-dns/pom.xml +++ b/google-cloud-clients/google-cloud-dns/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-dns - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud DNS https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-dns @@ -14,7 +14,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-dns diff --git a/google-cloud-clients/google-cloud-errorreporting/README.md b/google-cloud-clients/google-cloud-errorreporting/README.md index dc0a88042c6c..801c43669e46 100644 --- a/google-cloud-clients/google-cloud-errorreporting/README.md +++ b/google-cloud-clients/google-cloud-errorreporting/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-errorreporting - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-errorreporting:0.98.0-beta' +compile 'com.google.cloud:google-cloud-errorreporting:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-errorreporting" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-errorreporting" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-errorreporting/pom.xml b/google-cloud-clients/google-cloud-errorreporting/pom.xml index ffc4988fc73f..2a711b2e80c8 100644 --- a/google-cloud-clients/google-cloud-errorreporting/pom.xml +++ b/google-cloud-clients/google-cloud-errorreporting/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-errorreporting - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Error Reporting https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-errorreporting @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-errorreporting diff --git a/google-cloud-clients/google-cloud-firestore/README.md b/google-cloud-clients/google-cloud-firestore/README.md index 178687c80ee6..007c4cf40712 100644 --- a/google-cloud-clients/google-cloud-firestore/README.md +++ b/google-cloud-clients/google-cloud-firestore/README.md @@ -17,16 +17,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-firestore - 1.10.0 + 1.11.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-firestore:1.10.0' +compile 'com.google.cloud:google-cloud-firestore:1.11.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-firestore" % "1.10.0" +libraryDependencies += "com.google.cloud" % "google-cloud-firestore" % "1.11.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-firestore/pom.xml b/google-cloud-clients/google-cloud-firestore/pom.xml index 957ad3529c0f..f8b4bca0f71e 100644 --- a/google-cloud-clients/google-cloud-firestore/pom.xml +++ b/google-cloud-clients/google-cloud-firestore/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-firestore - 1.10.1-SNAPSHOT + 1.11.0 jar Google Cloud Firestore https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-firestore @@ -15,7 +15,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-firestore diff --git a/google-cloud-clients/google-cloud-iamcredentials/README.md b/google-cloud-clients/google-cloud-iamcredentials/README.md index 26b758258d83..fe96607a4aba 100644 --- a/google-cloud-clients/google-cloud-iamcredentials/README.md +++ b/google-cloud-clients/google-cloud-iamcredentials/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-iamcredentials - 0.25.0-alpha + 0.26.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-iamcredentials:0.25.0-alpha' +compile 'com.google.cloud:google-cloud-iamcredentials:0.26.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-iamcredentials" % "0.25.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-iamcredentials" % "0.26.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-iamcredentials/pom.xml b/google-cloud-clients/google-cloud-iamcredentials/pom.xml index 94881131c40e..16127691d395 100644 --- a/google-cloud-clients/google-cloud-iamcredentials/pom.xml +++ b/google-cloud-clients/google-cloud-iamcredentials/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-iamcredentials - 0.25.1-alpha-SNAPSHOT + 0.26.0-alpha jar Google Cloud Java Client for IAM Service Account Credentials API https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-iamcredentials @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-iamcredentials diff --git a/google-cloud-clients/google-cloud-iot/README.md b/google-cloud-clients/google-cloud-iot/README.md index 5fb66f9fda81..e1dff1c80460 100644 --- a/google-cloud-clients/google-cloud-iot/README.md +++ b/google-cloud-clients/google-cloud-iot/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-iot - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-iot:0.98.0-beta' +compile 'com.google.cloud:google-cloud-iot:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-iot" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-iot" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-iot/pom.xml b/google-cloud-clients/google-cloud-iot/pom.xml index 9efd93685e01..424a47d14cd1 100644 --- a/google-cloud-clients/google-cloud-iot/pom.xml +++ b/google-cloud-clients/google-cloud-iot/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-iot - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud IoT https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-iot @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-iot diff --git a/google-cloud-clients/google-cloud-kms/README.md b/google-cloud-clients/google-cloud-kms/README.md index a6db929e608f..3a7208ad186a 100644 --- a/google-cloud-clients/google-cloud-kms/README.md +++ b/google-cloud-clients/google-cloud-kms/README.md @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-kms - 1.16.0 + 1.17.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-kms:1.16.0' +compile 'com.google.cloud:google-cloud-kms:1.17.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-kms" % "1.16.0" +libraryDependencies += "com.google.cloud" % "google-cloud-kms" % "1.17.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-kms/pom.xml b/google-cloud-clients/google-cloud-kms/pom.xml index 9d7595538715..c443e78af411 100644 --- a/google-cloud-clients/google-cloud-kms/pom.xml +++ b/google-cloud-clients/google-cloud-kms/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-kms - 1.16.1-SNAPSHOT + 1.17.0 jar Google Cloud KMS https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-kms @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-kms-v1 diff --git a/google-cloud-clients/google-cloud-language/README.md b/google-cloud-clients/google-cloud-language/README.md index b02dddef6aa5..515785f16eb7 100644 --- a/google-cloud-clients/google-cloud-language/README.md +++ b/google-cloud-clients/google-cloud-language/README.md @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-language - 1.80.0 + 1.81.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-language:1.80.0' +compile 'com.google.cloud:google-cloud-language:1.81.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-language" % "1.80.0" +libraryDependencies += "com.google.cloud" % "google-cloud-language" % "1.81.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-language/pom.xml b/google-cloud-clients/google-cloud-language/pom.xml index 4bdd0f2ed0ba..fcf8a0c7d7e3 100644 --- a/google-cloud-clients/google-cloud-language/pom.xml +++ b/google-cloud-clients/google-cloud-language/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-language - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud Natural Language https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-language @@ -15,7 +15,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-language diff --git a/google-cloud-clients/google-cloud-logging/README.md b/google-cloud-clients/google-cloud-logging/README.md index b362fab9f162..9591f5cde6e3 100644 --- a/google-cloud-clients/google-cloud-logging/README.md +++ b/google-cloud-clients/google-cloud-logging/README.md @@ -19,16 +19,16 @@ Add this to your pom.xml file com.google.cloud google-cloud-logging - 1.80.0 + 1.81.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-logging:1.80.0' +compile 'com.google.cloud:google-cloud-logging:1.81.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-logging" % "1.80.0" +libraryDependencies += "com.google.cloud" % "google-cloud-logging" % "1.81.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-logging/pom.xml b/google-cloud-clients/google-cloud-logging/pom.xml index 5bf68cc6dcf8..255f2fd509ac 100644 --- a/google-cloud-clients/google-cloud-logging/pom.xml +++ b/google-cloud-clients/google-cloud-logging/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-logging - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud Logging https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-logging @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-logging diff --git a/google-cloud-clients/google-cloud-monitoring/README.md b/google-cloud-clients/google-cloud-monitoring/README.md index d71f56ee5945..123b23e2f9a0 100644 --- a/google-cloud-clients/google-cloud-monitoring/README.md +++ b/google-cloud-clients/google-cloud-monitoring/README.md @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-monitoring - 1.80.0 + 1.81.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-monitoring:1.80.0' +compile 'com.google.cloud:google-cloud-monitoring:1.81.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-monitoring" % "1.80.0" +libraryDependencies += "com.google.cloud" % "google-cloud-monitoring" % "1.81.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-monitoring/pom.xml b/google-cloud-clients/google-cloud-monitoring/pom.xml index f79f84c0aa98..8f2ba4623fda 100644 --- a/google-cloud-clients/google-cloud-monitoring/pom.xml +++ b/google-cloud-clients/google-cloud-monitoring/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-monitoring - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud Monitoring https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-monitoring @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-monitoring diff --git a/google-cloud-clients/google-cloud-os-login/README.md b/google-cloud-clients/google-cloud-os-login/README.md index 182e7dfad7f3..5a2596ffef0a 100644 --- a/google-cloud-clients/google-cloud-os-login/README.md +++ b/google-cloud-clients/google-cloud-os-login/README.md @@ -22,16 +22,16 @@ Add this to your pom.xml file com.google.cloud google-cloud-os-login - 0.98.0-alpha + 0.99.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-os-login:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-os-login:0.99.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-os-login" % "0.98.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-os-login" % "0.99.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-os-login/pom.xml b/google-cloud-clients/google-cloud-os-login/pom.xml index cfb02c55a058..933edfa72c07 100644 --- a/google-cloud-clients/google-cloud-os-login/pom.xml +++ b/google-cloud-clients/google-cloud-os-login/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-os-login - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud OS Login https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-os-login @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-os-login diff --git a/google-cloud-clients/google-cloud-phishingprotection/README.md b/google-cloud-clients/google-cloud-phishingprotection/README.md index 948f7e74bb4b..5dbe9a5b3192 100644 --- a/google-cloud-clients/google-cloud-phishingprotection/README.md +++ b/google-cloud-clients/google-cloud-phishingprotection/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-phishingprotection - 0.9.0 + 0.10.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-phishingprotection:0.9.0' +compile 'com.google.cloud:google-cloud-phishingprotection:0.10.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-phishingprotection" % "0.9.0" +libraryDependencies += "com.google.cloud" % "google-cloud-phishingprotection" % "0.10.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-phishingprotection/pom.xml b/google-cloud-clients/google-cloud-phishingprotection/pom.xml index ecc8071a248e..ed0e14e25ad1 100644 --- a/google-cloud-clients/google-cloud-phishingprotection/pom.xml +++ b/google-cloud-clients/google-cloud-phishingprotection/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-phishingprotection - 0.9.1-SNAPSHOT + 0.10.0 jar Google Cloud Phishing Protection https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-phishingprotection @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-phishingprotection diff --git a/google-cloud-clients/google-cloud-pubsub/README.md b/google-cloud-clients/google-cloud-pubsub/README.md index c01fd71fee8c..14f604a0856e 100644 --- a/google-cloud-clients/google-cloud-pubsub/README.md +++ b/google-cloud-clients/google-cloud-pubsub/README.md @@ -19,16 +19,16 @@ Add this to your pom.xml file com.google.cloud google-cloud-pubsub - 1.80.0 + 1.81.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-pubsub:1.80.0' +compile 'com.google.cloud:google-cloud-pubsub:1.81.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-pubsub" % "1.80.0" +libraryDependencies += "com.google.cloud" % "google-cloud-pubsub" % "1.81.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-pubsub/pom.xml b/google-cloud-clients/google-cloud-pubsub/pom.xml index ac4c98027009..31020e9caddd 100644 --- a/google-cloud-clients/google-cloud-pubsub/pom.xml +++ b/google-cloud-clients/google-cloud-pubsub/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-pubsub - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud Pub/Sub https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-pubsub @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-pubsub diff --git a/google-cloud-clients/google-cloud-recaptchaenterprise/README.md b/google-cloud-clients/google-cloud-recaptchaenterprise/README.md index 56fd8d4632a3..913faf84f71f 100644 --- a/google-cloud-clients/google-cloud-recaptchaenterprise/README.md +++ b/google-cloud-clients/google-cloud-recaptchaenterprise/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-recaptchaenterprise - 0.9.0 + 0.10.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-recaptchaenterprise:0.9.0' +compile 'com.google.cloud:google-cloud-recaptchaenterprise:0.10.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-recaptchaenterprise" % "0.9.0" +libraryDependencies += "com.google.cloud" % "google-cloud-recaptchaenterprise" % "0.10.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml b/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml index 7ef9f4499f0b..f8b43bfdde93 100644 --- a/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml +++ b/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-recaptchaenterprise - 0.9.1-SNAPSHOT + 0.10.0 jar reCAPTCHA Enterprise https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-recaptchaenterprise @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-recaptchaenterprise diff --git a/google-cloud-clients/google-cloud-redis/README.md b/google-cloud-clients/google-cloud-redis/README.md index 2bcb17abbf2a..c65867df2b50 100644 --- a/google-cloud-clients/google-cloud-redis/README.md +++ b/google-cloud-clients/google-cloud-redis/README.md @@ -22,16 +22,16 @@ Add this to your pom.xml file com.google.cloud google-cloud-redis - 0.98.0-alpha + 0.99.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-redis:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-redis:0.99.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-redis" % "0.98.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-redis" % "0.99.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-redis/pom.xml b/google-cloud-clients/google-cloud-redis/pom.xml index 42cd39fa1e26..c7d5fe56d304 100644 --- a/google-cloud-clients/google-cloud-redis/pom.xml +++ b/google-cloud-clients/google-cloud-redis/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-redis - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud Redis https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-redis @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-redis diff --git a/google-cloud-clients/google-cloud-resourcemanager/README.md b/google-cloud-clients/google-cloud-resourcemanager/README.md index f0aa47032166..8760fd0b14df 100644 --- a/google-cloud-clients/google-cloud-resourcemanager/README.md +++ b/google-cloud-clients/google-cloud-resourcemanager/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-resourcemanager - 0.98.0-alpha + 0.99.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-resourcemanager:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-resourcemanager:0.99.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-resourcemanager" % "0.98.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-resourcemanager" % "0.99.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-resourcemanager/pom.xml b/google-cloud-clients/google-cloud-resourcemanager/pom.xml index 053e72d3b900..327e7f95aadf 100644 --- a/google-cloud-clients/google-cloud-resourcemanager/pom.xml +++ b/google-cloud-clients/google-cloud-resourcemanager/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-resourcemanager - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud Resource Manager https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-resourcemanager @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-resourcemanager diff --git a/google-cloud-clients/google-cloud-scheduler/README.md b/google-cloud-clients/google-cloud-scheduler/README.md index 124af0131149..777aad1aa92b 100644 --- a/google-cloud-clients/google-cloud-scheduler/README.md +++ b/google-cloud-clients/google-cloud-scheduler/README.md @@ -22,16 +22,16 @@ Add this to your pom.xml file com.google.cloud google-cloud-scheduler - 1.3.0 + 1.4.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-scheduler:1.3.0' +compile 'com.google.cloud:google-cloud-scheduler:1.4.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-scheduler" % "1.3.0" +libraryDependencies += "com.google.cloud" % "google-cloud-scheduler" % "1.4.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-scheduler/pom.xml b/google-cloud-clients/google-cloud-scheduler/pom.xml index 502882bb1b93..f9d2fa3ac443 100644 --- a/google-cloud-clients/google-cloud-scheduler/pom.xml +++ b/google-cloud-clients/google-cloud-scheduler/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-scheduler - 1.3.1-SNAPSHOT + 1.4.0 jar Google Cloud Scheduler https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-scheduler @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-scheduler diff --git a/google-cloud-clients/google-cloud-securitycenter/README.md b/google-cloud-clients/google-cloud-securitycenter/README.md index 552e3bda5e05..e28735392145 100644 --- a/google-cloud-clients/google-cloud-securitycenter/README.md +++ b/google-cloud-clients/google-cloud-securitycenter/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-securitycenter - 0.98.0 + 0.99.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-securitycenter:0.98.0' +compile 'com.google.cloud:google-cloud-securitycenter:0.99.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-securitycenter" % "0.98.0" +libraryDependencies += "com.google.cloud" % "google-cloud-securitycenter" % "0.99.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-securitycenter/pom.xml b/google-cloud-clients/google-cloud-securitycenter/pom.xml index b8903a6ca4c0..68feb9557e2c 100644 --- a/google-cloud-clients/google-cloud-securitycenter/pom.xml +++ b/google-cloud-clients/google-cloud-securitycenter/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-securitycenter - 0.98.1-SNAPSHOT + 0.99.0 jar Google Cloud Security Command Center https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-securitycenter @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-securitycenter diff --git a/google-cloud-clients/google-cloud-spanner/README.md b/google-cloud-clients/google-cloud-spanner/README.md index 5d4b6b7645bd..0b559ea4cd18 100644 --- a/google-cloud-clients/google-cloud-spanner/README.md +++ b/google-cloud-clients/google-cloud-spanner/README.md @@ -17,16 +17,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-spanner - 1.25.0 + 1.26.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-spanner:1.25.0' +compile 'com.google.cloud:google-cloud-spanner:1.26.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-spanner" % "1.25.0" +libraryDependencies += "com.google.cloud" % "google-cloud-spanner" % "1.26.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-spanner/pom.xml b/google-cloud-clients/google-cloud-spanner/pom.xml index 04bd9f9edee8..5aa788c844d2 100644 --- a/google-cloud-clients/google-cloud-spanner/pom.xml +++ b/google-cloud-clients/google-cloud-spanner/pom.xml @@ -4,7 +4,7 @@ http://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 google-cloud-spanner - 1.25.1-SNAPSHOT + 1.26.0 jar Google Cloud Spanner https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-spanner @@ -14,7 +14,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-spanner diff --git a/google-cloud-clients/google-cloud-speech/README.md b/google-cloud-clients/google-cloud-speech/README.md index a180205c6701..c07ddf7a8bfd 100644 --- a/google-cloud-clients/google-cloud-speech/README.md +++ b/google-cloud-clients/google-cloud-speech/README.md @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-speech - 1.10.0 + 1.11.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-speech:1.10.0' +compile 'com.google.cloud:google-cloud-speech:1.11.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-speech" % "1.10.0" +libraryDependencies += "com.google.cloud" % "google-cloud-speech" % "1.11.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-speech/pom.xml b/google-cloud-clients/google-cloud-speech/pom.xml index af5c36a894ac..9b32584e6c99 100644 --- a/google-cloud-clients/google-cloud-speech/pom.xml +++ b/google-cloud-clients/google-cloud-speech/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-speech - 1.10.1-SNAPSHOT + 1.11.0 jar Google Cloud Speech https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-speech @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-speech diff --git a/google-cloud-clients/google-cloud-storage/README.md b/google-cloud-clients/google-cloud-storage/README.md index 6e26f01cf2d7..c7023d0e9e1a 100644 --- a/google-cloud-clients/google-cloud-storage/README.md +++ b/google-cloud-clients/google-cloud-storage/README.md @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-storage - 1.80.0 + 1.81.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-storage:1.80.0' +compile 'com.google.cloud:google-cloud-storage:1.81.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-storage" % "1.80.0" +libraryDependencies += "com.google.cloud" % "google-cloud-storage" % "1.81.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-storage/pom.xml b/google-cloud-clients/google-cloud-storage/pom.xml index 1ce7233ed5da..f6966071dcba 100644 --- a/google-cloud-clients/google-cloud-storage/pom.xml +++ b/google-cloud-clients/google-cloud-storage/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-storage - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud Storage https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-storage @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-storage diff --git a/google-cloud-clients/google-cloud-talent/README.md b/google-cloud-clients/google-cloud-talent/README.md index 9b5647698383..7b3b28048f82 100644 --- a/google-cloud-clients/google-cloud-talent/README.md +++ b/google-cloud-clients/google-cloud-talent/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-talent - 0.15.0-beta + 0.16.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-talent:0.15.0-beta' +compile 'com.google.cloud:google-cloud-talent:0.16.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-talent" % "0.15.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-talent" % "0.16.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-talent/pom.xml b/google-cloud-clients/google-cloud-talent/pom.xml index 46cae2e88d66..9b828f2e7893 100644 --- a/google-cloud-clients/google-cloud-talent/pom.xml +++ b/google-cloud-clients/google-cloud-talent/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-talent - 0.15.1-beta-SNAPSHOT + 0.16.0-beta jar Google Cloud Talent Solution https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-talent @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-talent diff --git a/google-cloud-clients/google-cloud-tasks/README.md b/google-cloud-clients/google-cloud-tasks/README.md index 62e27d5abd95..0721ff60651b 100644 --- a/google-cloud-clients/google-cloud-tasks/README.md +++ b/google-cloud-clients/google-cloud-tasks/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-tasks - 1.7.0 + 1.8.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-tasks:1.7.0' +compile 'com.google.cloud:google-cloud-tasks:1.8.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-tasks" % "1.7.0" +libraryDependencies += "com.google.cloud" % "google-cloud-tasks" % "1.8.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-tasks/pom.xml b/google-cloud-clients/google-cloud-tasks/pom.xml index 258d9744515b..de52a60799cd 100644 --- a/google-cloud-clients/google-cloud-tasks/pom.xml +++ b/google-cloud-clients/google-cloud-tasks/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-tasks - 1.7.1-SNAPSHOT + 1.8.0 jar Google Cloud Tasks https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-tasks @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-tasks-v2 diff --git a/google-cloud-clients/google-cloud-texttospeech/README.md b/google-cloud-clients/google-cloud-texttospeech/README.md index 81315325ec39..b7e438311658 100644 --- a/google-cloud-clients/google-cloud-texttospeech/README.md +++ b/google-cloud-clients/google-cloud-texttospeech/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-texttospeech - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-texttospeech:0.98.0-beta' +compile 'com.google.cloud:google-cloud-texttospeech:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-texttospeech" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-texttospeech" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-texttospeech/pom.xml b/google-cloud-clients/google-cloud-texttospeech/pom.xml index 764c05992d8e..6a7a1e53ee63 100644 --- a/google-cloud-clients/google-cloud-texttospeech/pom.xml +++ b/google-cloud-clients/google-cloud-texttospeech/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-texttospeech - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Text-to-Speech https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-texttospeech @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-texttospeech-v1beta1 diff --git a/google-cloud-clients/google-cloud-trace/README.md b/google-cloud-clients/google-cloud-trace/README.md index 28cac60b212b..b641ffc77659 100644 --- a/google-cloud-clients/google-cloud-trace/README.md +++ b/google-cloud-clients/google-cloud-trace/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-trace - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-trace:0.98.0-beta' +compile 'com.google.cloud:google-cloud-trace:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-trace" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-trace" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-trace/pom.xml b/google-cloud-clients/google-cloud-trace/pom.xml index 50ab7c2c7df0..61486422568c 100644 --- a/google-cloud-clients/google-cloud-trace/pom.xml +++ b/google-cloud-clients/google-cloud-trace/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-trace - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Trace https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-trace @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-trace diff --git a/google-cloud-clients/google-cloud-translate/README.md b/google-cloud-clients/google-cloud-translate/README.md index 687d58d246c9..dfd226a6bb05 100644 --- a/google-cloud-clients/google-cloud-translate/README.md +++ b/google-cloud-clients/google-cloud-translate/README.md @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-translate - 1.80.0 + 1.81.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-translate:1.80.0' +compile 'com.google.cloud:google-cloud-translate:1.81.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-translate" % "1.80.0" +libraryDependencies += "com.google.cloud" % "google-cloud-translate" % "1.81.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-translate/pom.xml b/google-cloud-clients/google-cloud-translate/pom.xml index 6cdc474a59b7..f707569f1f7f 100644 --- a/google-cloud-clients/google-cloud-translate/pom.xml +++ b/google-cloud-clients/google-cloud-translate/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-translate - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud Translation https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-translate @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-translate diff --git a/google-cloud-clients/google-cloud-video-intelligence/README.md b/google-cloud-clients/google-cloud-video-intelligence/README.md index 2678da31ffd7..f294292f6274 100644 --- a/google-cloud-clients/google-cloud-video-intelligence/README.md +++ b/google-cloud-clients/google-cloud-video-intelligence/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-video-intelligence - 0.98.0-beta + 0.99.0-beta ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-video-intelligence:0.98.0-beta' +compile 'com.google.cloud:google-cloud-video-intelligence:0.99.0-beta' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-video-intelligence" % "0.98.0-beta" +libraryDependencies += "com.google.cloud" % "google-cloud-video-intelligence" % "0.99.0-beta" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-video-intelligence/pom.xml b/google-cloud-clients/google-cloud-video-intelligence/pom.xml index 37114de951f0..880351a421b8 100644 --- a/google-cloud-clients/google-cloud-video-intelligence/pom.xml +++ b/google-cloud-clients/google-cloud-video-intelligence/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-video-intelligence - 0.98.1-beta-SNAPSHOT + 0.99.0-beta jar Google Cloud Video Intelligence https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-video-intelligence @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-video-intelligence diff --git a/google-cloud-clients/google-cloud-vision/README.md b/google-cloud-clients/google-cloud-vision/README.md index 81db954121b3..7caaedeae702 100644 --- a/google-cloud-clients/google-cloud-vision/README.md +++ b/google-cloud-clients/google-cloud-vision/README.md @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-vision - 1.80.0 + 1.81.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-vision:1.80.0' +compile 'com.google.cloud:google-cloud-vision:1.81.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-vision" % "1.80.0" +libraryDependencies += "com.google.cloud" % "google-cloud-vision" % "1.81.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-vision/pom.xml b/google-cloud-clients/google-cloud-vision/pom.xml index a1043515688b..fc4064647938 100644 --- a/google-cloud-clients/google-cloud-vision/pom.xml +++ b/google-cloud-clients/google-cloud-vision/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-vision - 1.80.1-SNAPSHOT + 1.81.0 jar Google Cloud Vision https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-vision @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-vision diff --git a/google-cloud-clients/google-cloud-webrisk/README.md b/google-cloud-clients/google-cloud-webrisk/README.md index 5494e1da5fbb..9b6209628e70 100644 --- a/google-cloud-clients/google-cloud-webrisk/README.md +++ b/google-cloud-clients/google-cloud-webrisk/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-webrisk - 0.13.0-alpha + 0.14.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-webrisk:0.13.0-alpha' +compile 'com.google.cloud:google-cloud-webrisk:0.14.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-webrisk" % "0.13.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-webrisk" % "0.14.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-webrisk/pom.xml b/google-cloud-clients/google-cloud-webrisk/pom.xml index c1f724bca05c..b568e2820c77 100644 --- a/google-cloud-clients/google-cloud-webrisk/pom.xml +++ b/google-cloud-clients/google-cloud-webrisk/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-webrisk - 0.13.1-alpha-SNAPSHOT + 0.14.0-alpha jar Google Cloud Web Risk https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-webrisk @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-webrisk diff --git a/google-cloud-clients/google-cloud-websecurityscanner/README.md b/google-cloud-clients/google-cloud-websecurityscanner/README.md index da8d9ecb7b69..2fb52716f7db 100644 --- a/google-cloud-clients/google-cloud-websecurityscanner/README.md +++ b/google-cloud-clients/google-cloud-websecurityscanner/README.md @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-websecurityscanner - 0.98.0 + 0.99.0 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-websecurityscanner:0.98.0' +compile 'com.google.cloud:google-cloud-websecurityscanner:0.99.0' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-websecurityscanner" % "0.98.0" +libraryDependencies += "com.google.cloud" % "google-cloud-websecurityscanner" % "0.99.0" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-websecurityscanner/pom.xml b/google-cloud-clients/google-cloud-websecurityscanner/pom.xml index a3f15d2c1214..7cbfc5d3a552 100644 --- a/google-cloud-clients/google-cloud-websecurityscanner/pom.xml +++ b/google-cloud-clients/google-cloud-websecurityscanner/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-websecurityscanner - 0.98.1-SNAPSHOT + 0.99.0 jar Google Cloud Web Security Scanner https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-websecurityscanner @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-websecurityscanner diff --git a/google-cloud-clients/grafeas/pom.xml b/google-cloud-clients/grafeas/pom.xml index 0cf3fe428ee0..8f3df0491dbf 100644 --- a/google-cloud-clients/grafeas/pom.xml +++ b/google-cloud-clients/grafeas/pom.xml @@ -5,7 +5,7 @@ 4.0.0 io.grafeas grafeas - 0.1.1-SNAPSHOT + 0.2.0 jar Grafeas Client https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/grafeas @@ -16,7 +16,7 @@ com.google.cloud google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha grafeas diff --git a/google-cloud-clients/pom.xml b/google-cloud-clients/pom.xml index 32c2e88ea1c2..77adbae121c8 100644 --- a/google-cloud-clients/pom.xml +++ b/google-cloud-clients/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-clients pom - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha Google Cloud https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients @@ -153,7 +153,7 @@ https://googleapis.github.io/google-cloud-java/google-api-grpc/apidocs github google-cloud-clients - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha 1.30.2 1.47.1 @@ -285,7 +285,7 @@ com.google.cloud google-cloud-core - 1.80.1-SNAPSHOT + 1.81.0 test-jar diff --git a/google-cloud-examples/README.md b/google-cloud-examples/README.md index f5ed971f4a9e..9a865968fcb1 100644 --- a/google-cloud-examples/README.md +++ b/google-cloud-examples/README.md @@ -21,16 +21,16 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-examples - 0.98.0-alpha + 0.99.0-alpha ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-examples:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-examples:0.99.0-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-examples" % "0.98.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-examples" % "0.99.0-alpha" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-examples/pom.xml b/google-cloud-examples/pom.xml index bc6d9f298716..e505e9a153d1 100644 --- a/google-cloud-examples/pom.xml +++ b/google-cloud-examples/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-examples - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud Examples https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-examples @@ -18,7 +18,7 @@ com.google.cloud google-cloud-bom - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha pom import diff --git a/google-cloud-testing/google-cloud-appengineflexcompat/pom.xml b/google-cloud-testing/google-cloud-appengineflexcompat/pom.xml index cdf591abed17..2484ab45a873 100644 --- a/google-cloud-testing/google-cloud-appengineflexcompat/pom.xml +++ b/google-cloud-testing/google-cloud-appengineflexcompat/pom.xml @@ -4,13 +4,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-appengineflexcompat - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha war google-cloud-testing com.google.cloud - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha diff --git a/google-cloud-testing/google-cloud-appengineflexcustom/pom.xml b/google-cloud-testing/google-cloud-appengineflexcustom/pom.xml index f8fd1877252b..0dc364b9c27c 100644 --- a/google-cloud-testing/google-cloud-appengineflexcustom/pom.xml +++ b/google-cloud-testing/google-cloud-appengineflexcustom/pom.xml @@ -4,13 +4,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-appengineflexcustom - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha war google-cloud-testing com.google.cloud - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha diff --git a/google-cloud-testing/google-cloud-appengineflexjava/pom.xml b/google-cloud-testing/google-cloud-appengineflexjava/pom.xml index 8f132d713f03..87fe37efcc8b 100644 --- a/google-cloud-testing/google-cloud-appengineflexjava/pom.xml +++ b/google-cloud-testing/google-cloud-appengineflexjava/pom.xml @@ -4,13 +4,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-appengineflexjava - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha war google-cloud-testing com.google.cloud - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha diff --git a/google-cloud-testing/google-cloud-appenginejava8/pom.xml b/google-cloud-testing/google-cloud-appenginejava8/pom.xml index 969c1b89a4ef..849ffc7695b9 100644 --- a/google-cloud-testing/google-cloud-appenginejava8/pom.xml +++ b/google-cloud-testing/google-cloud-appenginejava8/pom.xml @@ -4,13 +4,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-appenginejava8 - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha war google-cloud-testing com.google.cloud - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha diff --git a/google-cloud-testing/google-cloud-bigtable-emulator/README.md b/google-cloud-testing/google-cloud-bigtable-emulator/README.md index 01262481990c..f3554cfe7959 100644 --- a/google-cloud-testing/google-cloud-bigtable-emulator/README.md +++ b/google-cloud-testing/google-cloud-bigtable-emulator/README.md @@ -19,7 +19,7 @@ If you are using Maven, add this to your pom.xml file com.google.cloud google-cloud-bom - 0.98.0-alpha + 0.99.0-alpha pom import @@ -48,14 +48,14 @@ If you are using Maven, add this to your pom.xml file If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-bigtable:0.98.0-alpha' -testCompile 'com.google.cloud:google-cloud-bigtable-emulator:0.98.0-alpha' +compile 'com.google.cloud:google-cloud-bigtable:0.99.0-alpha' +testCompile 'com.google.cloud:google-cloud-bigtable-emulator:0.99.0-alpha' testCompile 'junit:junit:4.12' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-bigtable" % "0.98.0-alpha" -libraryDependencies += "com.google.cloud" % "google-cloud-bigtable-emulator" % "0.98.0-alpha" % Test +libraryDependencies += "com.google.cloud" % "google-cloud-bigtable" % "0.99.0-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-bigtable-emulator" % "0.99.0-alpha" % Test libraryDependencies += "junit" % "junit" % "4.12" % Test ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-testing/google-cloud-bigtable-emulator/pom.xml b/google-cloud-testing/google-cloud-bigtable-emulator/pom.xml index e903b998ae5d..244a1dea91f0 100644 --- a/google-cloud-testing/google-cloud-bigtable-emulator/pom.xml +++ b/google-cloud-testing/google-cloud-bigtable-emulator/pom.xml @@ -6,7 +6,7 @@ com.google.cloud google-cloud-bigtable-emulator - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha Google Cloud Java - Bigtable Emulator https://github.com/googleapis/google-cloud-java @@ -69,7 +69,7 @@ com.google.cloud google-cloud-gcloud-maven-plugin - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha @@ -126,7 +126,7 @@ com.google.cloud google-cloud-bom - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha pom import diff --git a/google-cloud-testing/google-cloud-conformance-tests/pom.xml b/google-cloud-testing/google-cloud-conformance-tests/pom.xml index 1e21f5ccbd5a..2617386f7aae 100644 --- a/google-cloud-testing/google-cloud-conformance-tests/pom.xml +++ b/google-cloud-testing/google-cloud-conformance-tests/pom.xml @@ -10,7 +10,7 @@ com.google.cloud google-cloud-testing - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha diff --git a/google-cloud-testing/google-cloud-gcloud-maven-plugin/pom.xml b/google-cloud-testing/google-cloud-gcloud-maven-plugin/pom.xml index 573dd050a05a..ee71e709c21b 100644 --- a/google-cloud-testing/google-cloud-gcloud-maven-plugin/pom.xml +++ b/google-cloud-testing/google-cloud-gcloud-maven-plugin/pom.xml @@ -7,11 +7,11 @@ google-cloud-testing com.google.cloud - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-gcloud-maven-plugin - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha maven-plugin Experimental Maven plugin to interact with the Google Cloud SDK (https://cloud.google.com/sdk/). Currently this plugin is meant to be an internal implementation diff --git a/google-cloud-testing/google-cloud-managedtest/pom.xml b/google-cloud-testing/google-cloud-managedtest/pom.xml index 4830729188b3..9c20a6fd35f5 100644 --- a/google-cloud-testing/google-cloud-managedtest/pom.xml +++ b/google-cloud-testing/google-cloud-managedtest/pom.xml @@ -4,13 +4,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-managedtest - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar google-cloud-testing com.google.cloud - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha diff --git a/google-cloud-testing/pom.xml b/google-cloud-testing/pom.xml index 341c464a983d..09caaaf74b17 100644 --- a/google-cloud-testing/pom.xml +++ b/google-cloud-testing/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.google.cloud google-cloud-testing - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha pom Google Cloud Testing @@ -33,14 +33,14 @@ com.google.cloud google-cloud-bom - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha pom import com.google.cloud google-cloud-core - 1.80.1-SNAPSHOT + 1.81.0 test-jar diff --git a/google-cloud-util/google-cloud-compat-checker/pom.xml b/google-cloud-util/google-cloud-compat-checker/pom.xml index bcc091281aa8..da5c39499c4e 100644 --- a/google-cloud-util/google-cloud-compat-checker/pom.xml +++ b/google-cloud-util/google-cloud-compat-checker/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-compat-checker - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha jar Google Cloud Java Compatibility Checker https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-util/google-cloud-compat-checker @@ -12,7 +12,7 @@ com.google.cloud google-cloud-util - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha google-cloud-compat-checker diff --git a/google-cloud-util/pom.xml b/google-cloud-util/pom.xml index 66924128eca5..fe9f389890be 100644 --- a/google-cloud-util/pom.xml +++ b/google-cloud-util/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-util - 0.98.1-alpha-SNAPSHOT + 0.99.0-alpha pom Google Cloud Util https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-util diff --git a/versions.txt b/versions.txt index 842646def938..858268b02e24 100644 --- a/versions.txt +++ b/versions.txt @@ -1,206 +1,206 @@ # Format: # module:released-version:current-version -google-api-grpc:0.63.0:0.63.1-SNAPSHOT -google-cloud:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-appengineflexcompat:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-appengineflexcustom:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-appengineflexjava:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-appenginejava8:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-asset:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-automl:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-bigquery:1.80.0:1.80.1-SNAPSHOT -google-cloud-bigquerydatatransfer:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-bigquerystorage:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-bigtable:0.98.0:0.98.1-SNAPSHOT -google-cloud-bigtable-emulator:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-bom:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-clients:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-compat-checker:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-compute:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-container:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-containeranalysis:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-contrib:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-core:1.80.0:1.80.1-SNAPSHOT -google-cloud-core-grpc:1.80.0:1.80.1-SNAPSHOT -google-cloud-core-http:1.80.0:1.80.1-SNAPSHOT -google-cloud-datacatalog:0.11.0-alpha:0.11.1-alpha-SNAPSHOT -google-cloud-datalabeling:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-dataproc:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-datastore:1.80.0:1.80.1-SNAPSHOT -google-cloud-dialogflow:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-dlp:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-dns:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-errorreporting:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-examples:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-firestore:1.10.0:1.10.1-SNAPSHOT -google-cloud-gcloud-maven-plugin:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-iamcredentials:0.25.0-alpha:0.25.1-alpha-SNAPSHOT -google-cloud-iot:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-kms:1.16.0:1.16.1-SNAPSHOT -google-cloud-language:1.80.0:1.80.1-SNAPSHOT -google-cloud-logging:1.80.0:1.80.1-SNAPSHOT -google-cloud-logging-logback:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-managedtest:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-monitoring:1.80.0:1.80.1-SNAPSHOT -google-cloud-nio:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-nio-examples:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-notification:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-os-login:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-phishingprotection:0.9.0:0.9.1-SNAPSHOT -google-cloud-pubsub:1.80.0:1.80.1-SNAPSHOT -google-cloud-recaptchaenterprise:0.9.0:0.9.1-SNAPSHOT -google-cloud-redis:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-resourcemanager:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-scheduler:1.3.0:1.3.1-SNAPSHOT -google-cloud-securitycenter:0.98.0:0.98.1-SNAPSHOT -google-cloud-spanner:1.25.0:1.25.1-SNAPSHOT -google-cloud-speech:1.10.0:1.10.1-SNAPSHOT -google-cloud-storage:1.80.0:1.80.1-SNAPSHOT -google-cloud-talent:0.15.0-beta:0.15.1-beta-SNAPSHOT -google-cloud-tasks:1.7.0:1.7.1-SNAPSHOT -google-cloud-testing:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-texttospeech:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-trace:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-translate:1.80.0:1.80.1-SNAPSHOT -google-cloud-util:0.98.0-alpha:0.98.1-alpha-SNAPSHOT -google-cloud-video-intelligence:0.98.0-beta:0.98.1-beta-SNAPSHOT -google-cloud-vision:1.80.0:1.80.1-SNAPSHOT -google-cloud-webrisk:0.13.0-alpha:0.13.1-alpha-SNAPSHOT -google-cloud-websecurityscanner:0.98.0:0.98.1-SNAPSHOT -grafeas:0.1.0:0.1.1-SNAPSHOT -grpc-google-cloud-asset-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-asset-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-automl-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-bigquerydatatransfer-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-bigquerystorage-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-bigtable-admin-v2:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-bigtable-v2:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-container-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-containeranalysis-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-containeranalysis-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-datacatalog-v1beta1:0.11.0-alpha:0.11.1-alpha-SNAPSHOT -grpc-google-cloud-datalabeling-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-dataproc-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-dataproc-v1beta2:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-dialogflow-v2:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-dialogflow-v2beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-dlp-v2:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-error-reporting-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-firestore-admin-v1:1.10.0:1.10.1-SNAPSHOT -grpc-google-cloud-firestore-v1:1.10.0:1.10.1-SNAPSHOT -grpc-google-cloud-firestore-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-iamcredentials-v1:0.25.0-alpha:0.25.1-alpha-SNAPSHOT -grpc-google-cloud-iot-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-kms-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-language-v1:1.62.0:1.62.1-SNAPSHOT -grpc-google-cloud-language-v1beta2:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-logging-v2:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-monitoring-v3:1.62.0:1.62.1-SNAPSHOT -grpc-google-cloud-os-login-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-phishingprotection-v1beta1:0.9.0:0.9.1-SNAPSHOT -grpc-google-cloud-pubsub-v1:1.62.0:1.62.1-SNAPSHOT -grpc-google-cloud-recaptchaenterprise-v1beta1:0.9.0:0.9.1-SNAPSHOT -grpc-google-cloud-redis-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-redis-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-scheduler-v1:1.3.0:1.3.1-SNAPSHOT -grpc-google-cloud-scheduler-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-securitycenter-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-securitycenter-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-spanner-admin-database-v1:1.25.0:1.25.1-SNAPSHOT -grpc-google-cloud-spanner-admin-instance-v1:1.25.0:1.25.1-SNAPSHOT -grpc-google-cloud-spanner-v1:1.25.0:1.25.1-SNAPSHOT -grpc-google-cloud-speech-v1:1.10.0:1.10.1-SNAPSHOT -grpc-google-cloud-speech-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-speech-v1p1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-talent-v4beta1:0.15.0-beta:0.15.1-beta-SNAPSHOT -grpc-google-cloud-tasks-v2:1.7.0:1.7.1-SNAPSHOT -grpc-google-cloud-tasks-v2beta2:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-tasks-v2beta3:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-texttospeech-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-texttospeech-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-trace-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-trace-v2:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-translate-v3beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-video-intelligence-v1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-video-intelligence-v1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-video-intelligence-v1beta2:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-video-intelligence-v1p1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-video-intelligence-v1p2beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-video-intelligence-v1p3beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-vision-v1:1.62.0:1.62.1-SNAPSHOT -grpc-google-cloud-vision-v1p1beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-vision-v1p2beta1:1.62.0:1.62.1-SNAPSHOT -grpc-google-cloud-vision-v1p3beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-vision-v1p4beta1:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-webrisk-v1beta1:0.13.0-alpha:0.13.1-alpha-SNAPSHOT -grpc-google-cloud-websecurityscanner-v1alpha:0.63.0:0.63.1-SNAPSHOT -grpc-google-cloud-websecurityscanner-v1beta:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-asset-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-asset-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-automl-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-bigquerydatatransfer-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-bigquerystorage-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-bigtable-admin-v2:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-bigtable-v2:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-container-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-containeranalysis-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-containeranalysis-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-datacatalog-v1beta1:0.11.0-alpha:0.11.1-alpha-SNAPSHOT -proto-google-cloud-datalabeling-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-dataproc-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-dataproc-v1beta2:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-datastore-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-dialogflow-v2:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-dialogflow-v2beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-dlp-v2:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-error-reporting-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-firestore-admin-v1:1.10.0:1.10.1-SNAPSHOT -proto-google-cloud-firestore-v1:1.10.0:1.10.1-SNAPSHOT -proto-google-cloud-firestore-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-iamcredentials-v1:0.25.0-alpha:0.25.1-alpha-SNAPSHOT -proto-google-cloud-iot-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-kms-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-language-v1:1.62.0:1.62.1-SNAPSHOT -proto-google-cloud-language-v1beta2:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-logging-v2:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-monitoring-v3:1.62.0:1.62.1-SNAPSHOT -proto-google-cloud-os-login-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-phishingprotection-v1beta1:0.9.0:0.9.1-SNAPSHOT -proto-google-cloud-pubsub-v1:1.62.0:1.62.1-SNAPSHOT -proto-google-cloud-recaptchaenterprise-v1beta1:0.9.0:0.9.1-SNAPSHOT -proto-google-cloud-redis-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-redis-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-scheduler-v1:1.3.0:1.3.1-SNAPSHOT -proto-google-cloud-scheduler-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-securitycenter-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-securitycenter-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-spanner-admin-database-v1:1.25.0:1.25.1-SNAPSHOT -proto-google-cloud-spanner-admin-instance-v1:1.25.0:1.25.1-SNAPSHOT -proto-google-cloud-spanner-v1:1.25.0:1.25.1-SNAPSHOT -proto-google-cloud-speech-v1:1.10.0:1.10.1-SNAPSHOT -proto-google-cloud-speech-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-speech-v1p1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-talent-v4beta1:0.15.0-beta:0.15.1-beta-SNAPSHOT -proto-google-cloud-tasks-v2:1.7.0:1.7.1-SNAPSHOT -proto-google-cloud-tasks-v2beta2:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-tasks-v2beta3:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-texttospeech-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-texttospeech-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-trace-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-trace-v2:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-translate-v3beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-video-intelligence-v1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-video-intelligence-v1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-video-intelligence-v1beta2:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-video-intelligence-v1p1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-video-intelligence-v1p2beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-video-intelligence-v1p3beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-vision-v1:1.62.0:1.62.1-SNAPSHOT -proto-google-cloud-vision-v1p1beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-vision-v1p2beta1:1.62.0:1.62.1-SNAPSHOT -proto-google-cloud-vision-v1p3beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-vision-v1p4beta1:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-webrisk-v1beta1:0.13.0-alpha:0.13.1-alpha-SNAPSHOT -proto-google-cloud-websecurityscanner-v1alpha:0.63.0:0.63.1-SNAPSHOT -proto-google-cloud-websecurityscanner-v1beta:0.63.0:0.63.1-SNAPSHOT +google-api-grpc:0.64.0:0.64.0 +google-cloud:0.99.0-alpha:0.99.0-alpha +google-cloud-appengineflexcompat:0.99.0-alpha:0.99.0-alpha +google-cloud-appengineflexcustom:0.99.0-alpha:0.99.0-alpha +google-cloud-appengineflexjava:0.99.0-alpha:0.99.0-alpha +google-cloud-appenginejava8:0.99.0-alpha:0.99.0-alpha +google-cloud-asset:0.99.0-beta:0.99.0-beta +google-cloud-automl:0.99.0-beta:0.99.0-beta +google-cloud-bigquery:1.81.0:1.81.0 +google-cloud-bigquerydatatransfer:0.99.0-beta:0.99.0-beta +google-cloud-bigquerystorage:0.99.0-beta:0.99.0-beta +google-cloud-bigtable:0.99.0:0.99.0 +google-cloud-bigtable-emulator:0.99.0-alpha:0.99.0-alpha +google-cloud-bom:0.99.0-alpha:0.99.0-alpha +google-cloud-clients:0.99.0-alpha:0.99.0-alpha +google-cloud-compat-checker:0.99.0-alpha:0.99.0-alpha +google-cloud-compute:0.99.0-alpha:0.99.0-alpha +google-cloud-container:0.99.0-beta:0.99.0-beta +google-cloud-containeranalysis:0.99.0-beta:0.99.0-beta +google-cloud-contrib:0.99.0-alpha:0.99.0-alpha +google-cloud-core:1.81.0:1.81.0 +google-cloud-core-grpc:1.81.0:1.81.0 +google-cloud-core-http:1.81.0:1.81.0 +google-cloud-datacatalog:0.12.0-alpha:0.12.0-alpha +google-cloud-datalabeling:0.99.0-alpha:0.99.0-alpha +google-cloud-dataproc:0.99.0-alpha:0.99.0-alpha +google-cloud-datastore:1.81.0:1.81.0 +google-cloud-dialogflow:0.99.0-alpha:0.99.0-alpha +google-cloud-dlp:0.99.0-beta:0.99.0-beta +google-cloud-dns:0.99.0-alpha:0.99.0-alpha +google-cloud-errorreporting:0.99.0-beta:0.99.0-beta +google-cloud-examples:0.99.0-alpha:0.99.0-alpha +google-cloud-firestore:1.11.0:1.11.0 +google-cloud-gcloud-maven-plugin:0.99.0-alpha:0.99.0-alpha +google-cloud-iamcredentials:0.26.0-alpha:0.26.0-alpha +google-cloud-iot:0.99.0-beta:0.99.0-beta +google-cloud-kms:1.17.0:1.17.0 +google-cloud-language:1.81.0:1.81.0 +google-cloud-logging:1.81.0:1.81.0 +google-cloud-logging-logback:0.99.0-alpha:0.99.0-alpha +google-cloud-managedtest:0.99.0-alpha:0.99.0-alpha +google-cloud-monitoring:1.81.0:1.81.0 +google-cloud-nio:0.99.0-alpha:0.99.0-alpha +google-cloud-nio-examples:0.99.0-alpha:0.99.0-alpha +google-cloud-notification:0.99.0-beta:0.99.0-beta +google-cloud-os-login:0.99.0-alpha:0.99.0-alpha +google-cloud-phishingprotection:0.10.0:0.10.0 +google-cloud-pubsub:1.81.0:1.81.0 +google-cloud-recaptchaenterprise:0.10.0:0.10.0 +google-cloud-redis:0.99.0-alpha:0.99.0-alpha +google-cloud-resourcemanager:0.99.0-alpha:0.99.0-alpha +google-cloud-scheduler:1.4.0:1.4.0 +google-cloud-securitycenter:0.99.0:0.99.0 +google-cloud-spanner:1.26.0:1.26.0 +google-cloud-speech:1.11.0:1.11.0 +google-cloud-storage:1.81.0:1.81.0 +google-cloud-talent:0.16.0-beta:0.16.0-beta +google-cloud-tasks:1.8.0:1.8.0 +google-cloud-testing:0.99.0-alpha:0.99.0-alpha +google-cloud-texttospeech:0.99.0-beta:0.99.0-beta +google-cloud-trace:0.99.0-beta:0.99.0-beta +google-cloud-translate:1.81.0:1.81.0 +google-cloud-util:0.99.0-alpha:0.99.0-alpha +google-cloud-video-intelligence:0.99.0-beta:0.99.0-beta +google-cloud-vision:1.81.0:1.81.0 +google-cloud-webrisk:0.14.0-alpha:0.14.0-alpha +google-cloud-websecurityscanner:0.99.0:0.99.0 +grafeas:0.2.0:0.2.0 +grpc-google-cloud-asset-v1:0.64.0:0.64.0 +grpc-google-cloud-asset-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-automl-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-bigquerydatatransfer-v1:0.64.0:0.64.0 +grpc-google-cloud-bigquerystorage-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-bigtable-admin-v2:0.64.0:0.64.0 +grpc-google-cloud-bigtable-v2:0.64.0:0.64.0 +grpc-google-cloud-container-v1:0.64.0:0.64.0 +grpc-google-cloud-containeranalysis-v1:0.64.0:0.64.0 +grpc-google-cloud-containeranalysis-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-datacatalog-v1beta1:0.12.0-alpha:0.12.0-alpha +grpc-google-cloud-datalabeling-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-dataproc-v1:0.64.0:0.64.0 +grpc-google-cloud-dataproc-v1beta2:0.64.0:0.64.0 +grpc-google-cloud-dialogflow-v2:0.64.0:0.64.0 +grpc-google-cloud-dialogflow-v2beta1:0.64.0:0.64.0 +grpc-google-cloud-dlp-v2:0.64.0:0.64.0 +grpc-google-cloud-error-reporting-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-firestore-admin-v1:1.11.0:1.11.0 +grpc-google-cloud-firestore-v1:1.11.0:1.11.0 +grpc-google-cloud-firestore-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-iamcredentials-v1:0.26.0-alpha:0.26.0-alpha +grpc-google-cloud-iot-v1:0.64.0:0.64.0 +grpc-google-cloud-kms-v1:0.64.0:0.64.0 +grpc-google-cloud-language-v1:1.63.0:1.63.0 +grpc-google-cloud-language-v1beta2:0.64.0:0.64.0 +grpc-google-cloud-logging-v2:0.64.0:0.64.0 +grpc-google-cloud-monitoring-v3:1.63.0:1.63.0 +grpc-google-cloud-os-login-v1:0.64.0:0.64.0 +grpc-google-cloud-phishingprotection-v1beta1:0.10.0:0.10.0 +grpc-google-cloud-pubsub-v1:1.63.0:1.63.0 +grpc-google-cloud-recaptchaenterprise-v1beta1:0.10.0:0.10.0 +grpc-google-cloud-redis-v1:0.64.0:0.64.0 +grpc-google-cloud-redis-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-scheduler-v1:1.4.0:1.4.0 +grpc-google-cloud-scheduler-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-securitycenter-v1:0.64.0:0.64.0 +grpc-google-cloud-securitycenter-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-spanner-admin-database-v1:1.26.0:1.26.0 +grpc-google-cloud-spanner-admin-instance-v1:1.26.0:1.26.0 +grpc-google-cloud-spanner-v1:1.26.0:1.26.0 +grpc-google-cloud-speech-v1:1.11.0:1.11.0 +grpc-google-cloud-speech-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-speech-v1p1beta1:0.64.0:0.64.0 +grpc-google-cloud-talent-v4beta1:0.16.0-beta:0.16.0-beta +grpc-google-cloud-tasks-v2:1.8.0:1.8.0 +grpc-google-cloud-tasks-v2beta2:0.64.0:0.64.0 +grpc-google-cloud-tasks-v2beta3:0.64.0:0.64.0 +grpc-google-cloud-texttospeech-v1:0.64.0:0.64.0 +grpc-google-cloud-texttospeech-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-trace-v1:0.64.0:0.64.0 +grpc-google-cloud-trace-v2:0.64.0:0.64.0 +grpc-google-cloud-translate-v3beta1:0.64.0:0.64.0 +grpc-google-cloud-video-intelligence-v1:0.64.0:0.64.0 +grpc-google-cloud-video-intelligence-v1beta1:0.64.0:0.64.0 +grpc-google-cloud-video-intelligence-v1beta2:0.64.0:0.64.0 +grpc-google-cloud-video-intelligence-v1p1beta1:0.64.0:0.64.0 +grpc-google-cloud-video-intelligence-v1p2beta1:0.64.0:0.64.0 +grpc-google-cloud-video-intelligence-v1p3beta1:0.64.0:0.64.0 +grpc-google-cloud-vision-v1:1.63.0:1.63.0 +grpc-google-cloud-vision-v1p1beta1:0.64.0:0.64.0 +grpc-google-cloud-vision-v1p2beta1:1.63.0:1.63.0 +grpc-google-cloud-vision-v1p3beta1:0.64.0:0.64.0 +grpc-google-cloud-vision-v1p4beta1:0.64.0:0.64.0 +grpc-google-cloud-webrisk-v1beta1:0.14.0-alpha:0.14.0-alpha +grpc-google-cloud-websecurityscanner-v1alpha:0.64.0:0.64.0 +grpc-google-cloud-websecurityscanner-v1beta:0.64.0:0.64.0 +proto-google-cloud-asset-v1:0.64.0:0.64.0 +proto-google-cloud-asset-v1beta1:0.64.0:0.64.0 +proto-google-cloud-automl-v1beta1:0.64.0:0.64.0 +proto-google-cloud-bigquerydatatransfer-v1:0.64.0:0.64.0 +proto-google-cloud-bigquerystorage-v1beta1:0.64.0:0.64.0 +proto-google-cloud-bigtable-admin-v2:0.64.0:0.64.0 +proto-google-cloud-bigtable-v2:0.64.0:0.64.0 +proto-google-cloud-container-v1:0.64.0:0.64.0 +proto-google-cloud-containeranalysis-v1:0.64.0:0.64.0 +proto-google-cloud-containeranalysis-v1beta1:0.64.0:0.64.0 +proto-google-cloud-datacatalog-v1beta1:0.12.0-alpha:0.12.0-alpha +proto-google-cloud-datalabeling-v1beta1:0.64.0:0.64.0 +proto-google-cloud-dataproc-v1:0.64.0:0.64.0 +proto-google-cloud-dataproc-v1beta2:0.64.0:0.64.0 +proto-google-cloud-datastore-v1:0.64.0:0.64.0 +proto-google-cloud-dialogflow-v2:0.64.0:0.64.0 +proto-google-cloud-dialogflow-v2beta1:0.64.0:0.64.0 +proto-google-cloud-dlp-v2:0.64.0:0.64.0 +proto-google-cloud-error-reporting-v1beta1:0.64.0:0.64.0 +proto-google-cloud-firestore-admin-v1:1.11.0:1.11.0 +proto-google-cloud-firestore-v1:1.11.0:1.11.0 +proto-google-cloud-firestore-v1beta1:0.64.0:0.64.0 +proto-google-cloud-iamcredentials-v1:0.26.0-alpha:0.26.0-alpha +proto-google-cloud-iot-v1:0.64.0:0.64.0 +proto-google-cloud-kms-v1:0.64.0:0.64.0 +proto-google-cloud-language-v1:1.63.0:1.63.0 +proto-google-cloud-language-v1beta2:0.64.0:0.64.0 +proto-google-cloud-logging-v2:0.64.0:0.64.0 +proto-google-cloud-monitoring-v3:1.63.0:1.63.0 +proto-google-cloud-os-login-v1:0.64.0:0.64.0 +proto-google-cloud-phishingprotection-v1beta1:0.10.0:0.10.0 +proto-google-cloud-pubsub-v1:1.63.0:1.63.0 +proto-google-cloud-recaptchaenterprise-v1beta1:0.10.0:0.10.0 +proto-google-cloud-redis-v1:0.64.0:0.64.0 +proto-google-cloud-redis-v1beta1:0.64.0:0.64.0 +proto-google-cloud-scheduler-v1:1.4.0:1.4.0 +proto-google-cloud-scheduler-v1beta1:0.64.0:0.64.0 +proto-google-cloud-securitycenter-v1:0.64.0:0.64.0 +proto-google-cloud-securitycenter-v1beta1:0.64.0:0.64.0 +proto-google-cloud-spanner-admin-database-v1:1.26.0:1.26.0 +proto-google-cloud-spanner-admin-instance-v1:1.26.0:1.26.0 +proto-google-cloud-spanner-v1:1.26.0:1.26.0 +proto-google-cloud-speech-v1:1.11.0:1.11.0 +proto-google-cloud-speech-v1beta1:0.64.0:0.64.0 +proto-google-cloud-speech-v1p1beta1:0.64.0:0.64.0 +proto-google-cloud-talent-v4beta1:0.16.0-beta:0.16.0-beta +proto-google-cloud-tasks-v2:1.8.0:1.8.0 +proto-google-cloud-tasks-v2beta2:0.64.0:0.64.0 +proto-google-cloud-tasks-v2beta3:0.64.0:0.64.0 +proto-google-cloud-texttospeech-v1:0.64.0:0.64.0 +proto-google-cloud-texttospeech-v1beta1:0.64.0:0.64.0 +proto-google-cloud-trace-v1:0.64.0:0.64.0 +proto-google-cloud-trace-v2:0.64.0:0.64.0 +proto-google-cloud-translate-v3beta1:0.64.0:0.64.0 +proto-google-cloud-video-intelligence-v1:0.64.0:0.64.0 +proto-google-cloud-video-intelligence-v1beta1:0.64.0:0.64.0 +proto-google-cloud-video-intelligence-v1beta2:0.64.0:0.64.0 +proto-google-cloud-video-intelligence-v1p1beta1:0.64.0:0.64.0 +proto-google-cloud-video-intelligence-v1p2beta1:0.64.0:0.64.0 +proto-google-cloud-video-intelligence-v1p3beta1:0.64.0:0.64.0 +proto-google-cloud-vision-v1:1.63.0:1.63.0 +proto-google-cloud-vision-v1p1beta1:0.64.0:0.64.0 +proto-google-cloud-vision-v1p2beta1:1.63.0:1.63.0 +proto-google-cloud-vision-v1p3beta1:0.64.0:0.64.0 +proto-google-cloud-vision-v1p4beta1:0.64.0:0.64.0 +proto-google-cloud-webrisk-v1beta1:0.14.0-alpha:0.14.0-alpha +proto-google-cloud-websecurityscanner-v1alpha:0.64.0:0.64.0 +proto-google-cloud-websecurityscanner-v1beta:0.64.0:0.64.0 From b6e1b36732aaeb2654714b2e4046700deccdd7c1 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:48:56 +0530 Subject: [PATCH 26/58] Scheduler : Cleanup dependency (#5670) * cleanup unused dependency of schedular * remove unused dependency of schedular --- .../google-cloud-scheduler/pom.xml | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/google-cloud-clients/google-cloud-scheduler/pom.xml b/google-cloud-clients/google-cloud-scheduler/pom.xml index f9d2fa3ac443..b429d1d326b4 100644 --- a/google-cloud-clients/google-cloud-scheduler/pom.xml +++ b/google-cloud-clients/google-cloud-scheduler/pom.xml @@ -18,10 +18,6 @@ google-cloud-scheduler - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -42,18 +38,6 @@ com.google.api.grpc grpc-google-cloud-scheduler-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -61,26 +45,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - - - com.google.truth - truth - test - - - com.google.api.grpc - grpc-google-iam-v1 - test - com.google.api From a8523817e15f27f0f0236b4bc3776baaf6fd1a67 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:49:12 +0530 Subject: [PATCH 27/58] Recaptchaenterprise : Cleanup dependency (#5668) * cleanup unused dependency of recaptchaenterprise * remove unused dependency of recaptchaenterprise --- .../google-cloud-recaptchaenterprise/pom.xml | 42 ------------------- 1 file changed, 42 deletions(-) diff --git a/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml b/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml index f8b43bfdde93..df1c2b934520 100644 --- a/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml +++ b/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml @@ -18,10 +18,6 @@ google-cloud-recaptchaenterprise - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -34,49 +30,11 @@ com.google.api.grpc grpc-google-cloud-recaptchaenterprise-v1beta1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - - - ${project.groupId} - google-cloud-core - test-jar - test - junit junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - - - com.google.truth - truth - test - - - com.google.api.grpc - grpc-google-iam-v1 - test - com.google.api gax-grpc From e31f4305ede0896f43dd59c8a2a2453efe21f3f8 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:49:34 +0530 Subject: [PATCH 28/58] Pubsub : Cleanup dependency (#5667) * cleanup unused dependency of contrib-google-cloud-pubsub * remove unused dependency of pubsub * add the newline at the end of the file --- google-cloud-clients/google-cloud-pubsub/pom.xml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/google-cloud-clients/google-cloud-pubsub/pom.xml b/google-cloud-clients/google-cloud-pubsub/pom.xml index 31020e9caddd..3bc41a164d7d 100644 --- a/google-cloud-clients/google-cloud-pubsub/pom.xml +++ b/google-cloud-clients/google-cloud-pubsub/pom.xml @@ -18,10 +18,6 @@ google-cloud-pubsub - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -34,18 +30,6 @@ com.google.api.grpc grpc-google-cloud-pubsub-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - com.google.auto.value auto-value From fc8e91bc7d9c743c495c985cee0d8cf520621cb2 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:49:52 +0530 Subject: [PATCH 29/58] Phishingprotection : Cleanup dependency (#5666) * cleanup unused dependency of contrib-google-cloud-phishingprotection * remove unused dependency of phishingprotection * add the newline at the end of the file --- .../google-cloud-phishingprotection/pom.xml | 42 ------------------- 1 file changed, 42 deletions(-) diff --git a/google-cloud-clients/google-cloud-phishingprotection/pom.xml b/google-cloud-clients/google-cloud-phishingprotection/pom.xml index ed0e14e25ad1..c1eea4715a07 100644 --- a/google-cloud-clients/google-cloud-phishingprotection/pom.xml +++ b/google-cloud-clients/google-cloud-phishingprotection/pom.xml @@ -18,10 +18,6 @@ google-cloud-phishingprotection - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -34,49 +30,11 @@ com.google.api.grpc grpc-google-cloud-phishingprotection-v1beta1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - - - ${project.groupId} - google-cloud-core - test-jar - test - junit junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - - - com.google.truth - truth - test - - - com.google.api.grpc - grpc-google-iam-v1 - test - com.google.api gax-grpc From 44420e8cdfd0d407986ad6eee7cd81974fdca625 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:50:15 +0530 Subject: [PATCH 30/58] Os-login : Cleanup dependency (#5665) * cleanup unused dependency of contrib-google-cloud-os-login * remove unused dependency of os-login * add the newline at the end of the file --- .../google-cloud-os-login/pom.xml | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/google-cloud-clients/google-cloud-os-login/pom.xml b/google-cloud-clients/google-cloud-os-login/pom.xml index 933edfa72c07..f92c2bea4f0d 100644 --- a/google-cloud-clients/google-cloud-os-login/pom.xml +++ b/google-cloud-clients/google-cloud-os-login/pom.xml @@ -18,10 +18,6 @@ google-cloud-os-login - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -34,18 +30,6 @@ com.google.api.grpc grpc-google-cloud-os-login-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -53,26 +37,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - - - com.google.truth - truth - test - - - com.google.api.grpc - grpc-google-iam-v1 - test - com.google.api From f858bf78171fb1b6c2132067e55efd778f9f91f0 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:50:29 +0530 Subject: [PATCH 31/58] Monitoring : Cleanup dependency (#5664) * cleanup unused dependency of contrib-google-cloud-monitoring * remove unused dependency of monitoring * add the newline at the end of the file --- .../google-cloud-monitoring/pom.xml | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/google-cloud-clients/google-cloud-monitoring/pom.xml b/google-cloud-clients/google-cloud-monitoring/pom.xml index 8f2ba4623fda..e9a89c34e8b8 100644 --- a/google-cloud-clients/google-cloud-monitoring/pom.xml +++ b/google-cloud-clients/google-cloud-monitoring/pom.xml @@ -18,10 +18,6 @@ google-cloud-monitoring - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -30,18 +26,6 @@ com.google.api.grpc proto-google-cloud-monitoring-v3 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -49,16 +33,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - com.google.api.grpc grpc-google-cloud-monitoring-v3 From 7f5653d5a6d8e2af700449f98347f1bea621cc25 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:50:50 +0530 Subject: [PATCH 32/58] Securitycenter : Cleanup dependency (#5671) * cleanup unused dependency of securitycenter * remove unused dependency of securitycenter --- .../google-cloud-securitycenter/pom.xml | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/google-cloud-clients/google-cloud-securitycenter/pom.xml b/google-cloud-clients/google-cloud-securitycenter/pom.xml index 68feb9557e2c..498884478b40 100644 --- a/google-cloud-clients/google-cloud-securitycenter/pom.xml +++ b/google-cloud-clients/google-cloud-securitycenter/pom.xml @@ -18,10 +18,6 @@ google-cloud-securitycenter - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -42,18 +38,6 @@ com.google.api.grpc grpc-google-cloud-securitycenter-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -61,26 +45,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - - - com.google.truth - truth - test - - - com.google.api.grpc - grpc-google-iam-v1 - test - com.google.api From 1d711a23850ffffd51728115bb3155b986e91856 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:51:14 +0530 Subject: [PATCH 33/58] Speech : Cleanup dependency (#5673) * cleanup unused dependency of speech * remove unused dependency of speech --- .../google-cloud-speech/pom.xml | 30 ------------------- 1 file changed, 30 deletions(-) diff --git a/google-cloud-clients/google-cloud-speech/pom.xml b/google-cloud-clients/google-cloud-speech/pom.xml index 9b32584e6c99..fb7688634a4e 100644 --- a/google-cloud-clients/google-cloud-speech/pom.xml +++ b/google-cloud-clients/google-cloud-speech/pom.xml @@ -18,18 +18,10 @@ google-cloud-speech - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc - - com.google.api.grpc - proto-google-cloud-speech-v1beta1 - com.google.api.grpc proto-google-cloud-speech-v1p1beta1 @@ -38,18 +30,6 @@ com.google.api.grpc proto-google-cloud-speech-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -57,16 +37,6 @@ junit test - - org.objenesis - objenesis - test - - - com.google.api.grpc - grpc-google-cloud-speech-v1beta1 - test - com.google.api.grpc grpc-google-cloud-speech-v1p1beta1 From 2a3be6c9a88ff47665a57b9d1bdf4d7641a8bd19 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:51:56 +0530 Subject: [PATCH 34/58] Redis : Cleanup dependency (#5669) * cleanup unused dependency of redis * remove unused dependency of redis --- .../google-cloud-redis/pom.xml | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/google-cloud-clients/google-cloud-redis/pom.xml b/google-cloud-clients/google-cloud-redis/pom.xml index c7d5fe56d304..663c1ff2f377 100644 --- a/google-cloud-clients/google-cloud-redis/pom.xml +++ b/google-cloud-clients/google-cloud-redis/pom.xml @@ -18,10 +18,6 @@ google-cloud-redis - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -42,18 +38,6 @@ com.google.api.grpc grpc-google-cloud-redis-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -61,26 +45,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - - - com.google.truth - truth - test - - - com.google.api.grpc - grpc-google-iam-v1 - test - com.google.api From 61a11278eb16fcbdab714835898705b54916efe3 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:53:04 +0530 Subject: [PATCH 35/58] Language : Cleanup dependency (#5644) * cleanup unused dependency of contrib-google-cloud-language * remove unused dependency of language * add the newline at the end of the file --- .../google-cloud-language/pom.xml | 30 ++----------------- 1 file changed, 2 insertions(+), 28 deletions(-) diff --git a/google-cloud-clients/google-cloud-language/pom.xml b/google-cloud-clients/google-cloud-language/pom.xml index fcf8a0c7d7e3..dab9cc0d74c9 100644 --- a/google-cloud-clients/google-cloud-language/pom.xml +++ b/google-cloud-clients/google-cloud-language/pom.xml @@ -1,7 +1,7 @@ + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-language 1.81.0 @@ -21,10 +21,6 @@ google-cloud-language - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -37,18 +33,6 @@ com.google.api.grpc proto-google-cloud-language-v1beta2 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -56,16 +40,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - com.google.api.grpc grpc-google-cloud-language-v1 From 5ff797989644be551220e1aa95bd6e443e203bfe Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:53:20 +0530 Subject: [PATCH 36/58] kms : Cleanup dependency (#5643) * cleanup unused dependency of contrib-google-cloud-kms * remove unused dependency grpc stub * remove unused dependency of kms * add the newline at the end of the file --- google-cloud-clients/google-cloud-kms/pom.xml | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/google-cloud-clients/google-cloud-kms/pom.xml b/google-cloud-clients/google-cloud-kms/pom.xml index c443e78af411..0e2b0014912a 100644 --- a/google-cloud-clients/google-cloud-kms/pom.xml +++ b/google-cloud-clients/google-cloud-kms/pom.xml @@ -18,10 +18,6 @@ google-cloud-kms-v1 - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -30,18 +26,6 @@ com.google.api.grpc proto-google-cloud-kms-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -49,16 +33,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - com.google.api.grpc grpc-google-cloud-kms-v1 From c4349b3cef9c68a49b2bc85fa5c28c7bc61218c6 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:53:43 +0530 Subject: [PATCH 37/58] IOT : Cleanup dependency (#5641) * cleanup unused dependency of contrib-google-cloud-iot * remove unused dependency of iot * add the newline at the end of the file --- google-cloud-clients/google-cloud-iot/pom.xml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/google-cloud-clients/google-cloud-iot/pom.xml b/google-cloud-clients/google-cloud-iot/pom.xml index 424a47d14cd1..ce3795206dbd 100644 --- a/google-cloud-clients/google-cloud-iot/pom.xml +++ b/google-cloud-clients/google-cloud-iot/pom.xml @@ -18,10 +18,6 @@ google-cloud-iot - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -30,18 +26,6 @@ com.google.api.grpc proto-google-cloud-iot-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - From 778a3dce9211c21c8bce2454fde7a4f34ab5113d Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:53:52 +0530 Subject: [PATCH 38/58] Iamcredentials : Cleanup dependency (#5640) * cleanup unused dependency of contrib-google-cloud-iamcredentials * remove unused dependency of imacredential * resolve new line at end of file --- .../google-cloud-iamcredentials/pom.xml | 42 ------------------- 1 file changed, 42 deletions(-) diff --git a/google-cloud-clients/google-cloud-iamcredentials/pom.xml b/google-cloud-clients/google-cloud-iamcredentials/pom.xml index 16127691d395..a41826dbf2ae 100644 --- a/google-cloud-clients/google-cloud-iamcredentials/pom.xml +++ b/google-cloud-clients/google-cloud-iamcredentials/pom.xml @@ -18,10 +18,6 @@ google-cloud-iamcredentials - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -34,49 +30,11 @@ com.google.api.grpc grpc-google-cloud-iamcredentials-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - - - ${project.groupId} - google-cloud-core - test-jar - test - junit junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - - - com.google.truth - truth - test - - - com.google.api.grpc - grpc-google-iam-v1 - test - com.google.api gax-grpc From 98e1912d1b8c9d0356edc4d4bfda9e4ce0cdd5b2 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:54:19 +0530 Subject: [PATCH 39/58] ErrorReporting : Cleanup dependency (#5638) * cleanup unused dependency of contrib-google-cloud-errorreporting * remove unused dependency of errorreporting * add the newline at the end of the file --- .../google-cloud-errorreporting/pom.xml | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/google-cloud-clients/google-cloud-errorreporting/pom.xml b/google-cloud-clients/google-cloud-errorreporting/pom.xml index 2a711b2e80c8..05fa372d1a22 100644 --- a/google-cloud-clients/google-cloud-errorreporting/pom.xml +++ b/google-cloud-clients/google-cloud-errorreporting/pom.xml @@ -18,10 +18,6 @@ google-cloud-errorreporting - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -30,18 +26,6 @@ com.google.api.grpc proto-google-cloud-error-reporting-v1beta1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -49,16 +33,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - com.google.api.grpc grpc-google-cloud-error-reporting-v1beta1 From 4bb5b051f84cb31ee15f5fa445ad3516585d4f8d Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:55:07 +0530 Subject: [PATCH 40/58] Dlp : Cleanup dependency (#5637) * cleanup unused dependency of contrib-google-cloud-dlp * remove unused dependency of dlp * add the newline at the end of the file --- google-cloud-clients/google-cloud-dlp/pom.xml | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/google-cloud-clients/google-cloud-dlp/pom.xml b/google-cloud-clients/google-cloud-dlp/pom.xml index 73143934f4c1..b81e74a32518 100644 --- a/google-cloud-clients/google-cloud-dlp/pom.xml +++ b/google-cloud-clients/google-cloud-dlp/pom.xml @@ -18,10 +18,6 @@ google-cloud-dlp - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -30,18 +26,6 @@ com.google.api.grpc proto-google-cloud-dlp-v2 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -49,16 +33,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - com.google.api.grpc grpc-google-cloud-dlp-v2 From e4a5544ed7acd56b5edd7e9aeb5396e29026d204 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:55:43 +0530 Subject: [PATCH 41/58] Dataproc : Cleanup dependency (#5635) * cleanup unused dependency of contrib-google-cloud-dataproc * remove unused dependency of dataproc * add the newline at the end of the file --- .../google-cloud-dataproc/pom.xml | 32 ------------------- 1 file changed, 32 deletions(-) diff --git a/google-cloud-clients/google-cloud-dataproc/pom.xml b/google-cloud-clients/google-cloud-dataproc/pom.xml index 30c9531d5037..b65e339bfb4f 100644 --- a/google-cloud-clients/google-cloud-dataproc/pom.xml +++ b/google-cloud-clients/google-cloud-dataproc/pom.xml @@ -18,10 +18,6 @@ google-cloud-dataproc - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -42,40 +38,12 @@ com.google.api.grpc grpc-google-cloud-dataproc-v1beta2 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - - junit junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - - - com.google.truth - truth - test - com.google.api From 24910eb449ce103001d06f790cb8e03b5b4b63f6 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 21:55:59 +0530 Subject: [PATCH 42/58] Dialogflow : Cleanup dependency (#5636) * cleanup unused dependency of contrib-google-cloud-dialogflow * remove unused dependency of dailogflow * add the newline at the end of the file --- .../google-cloud-dialogflow/pom.xml | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/google-cloud-clients/google-cloud-dialogflow/pom.xml b/google-cloud-clients/google-cloud-dialogflow/pom.xml index 1bee70fda475..69394519f2c4 100644 --- a/google-cloud-clients/google-cloud-dialogflow/pom.xml +++ b/google-cloud-clients/google-cloud-dialogflow/pom.xml @@ -18,10 +18,6 @@ google-cloud-dialogflow - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -34,18 +30,6 @@ com.google.api.grpc proto-google-cloud-dialogflow-v2 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -53,16 +37,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - com.google.api.grpc grpc-google-cloud-dialogflow-v2beta1 From 8125e29414e2c8b27cfaf9923fdf160e76f2bcf8 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Wed, 3 Jul 2019 09:26:32 -0700 Subject: [PATCH 43/58] Regenerate talent client (#5660) --- .../cloud/talent/v4beta1/JobServiceProto.java | 285 +++++++++--------- .../cloud/talent/v4beta1/job_service.proto | 1 + .../google-cloud-talent/synth.metadata | 6 +- 3 files changed, 148 insertions(+), 144 deletions(-) diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobServiceProto.java b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobServiceProto.java index 86ec6f41763a..7db3f690dee5 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobServiceProto.java +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/JobServiceProto.java @@ -80,148 +80,149 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "\n-google/cloud/talent/v4beta1/job_servic" + "e.proto\022\033google.cloud.talent.v4beta1\032\034go" + "ogle/api/annotations.proto\032\027google/api/c" - + "lient.proto\032(google/cloud/talent/v4beta1" - + "/common.proto\032)google/cloud/talent/v4bet" - + "a1/filters.proto\032+google/cloud/talent/v4" - + "beta1/histogram.proto\032%google/cloud/tale" - + "nt/v4beta1/job.proto\032#google/longrunning" - + "/operations.proto\032\036google/protobuf/durat" - + "ion.proto\032\033google/protobuf/empty.proto\032 " - + "google/protobuf/field_mask.proto\"Q\n\020Crea" - + "teJobRequest\022\016\n\006parent\030\001 \001(\t\022-\n\003job\030\002 \001(" - + "\0132 .google.cloud.talent.v4beta1.Job\"\035\n\rG" - + "etJobRequest\022\014\n\004name\030\001 \001(\t\"r\n\020UpdateJobR" - + "equest\022-\n\003job\030\001 \001(\0132 .google.cloud.talen" - + "t.v4beta1.Job\022/\n\013update_mask\030\002 \001(\0132\032.goo" - + "gle.protobuf.FieldMask\" \n\020DeleteJobReque" - + "st\022\014\n\004name\030\001 \001(\t\"8\n\026BatchDeleteJobsReque" - + "st\022\016\n\006parent\030\001 \001(\t\022\016\n\006filter\030\002 \001(\t\"\220\001\n\017L" - + "istJobsRequest\022\016\n\006parent\030\001 \001(\t\022\016\n\006filter" - + "\030\002 \001(\t\022\022\n\npage_token\030\003 \001(\t\022\021\n\tpage_size\030" - + "\004 \001(\005\0226\n\010job_view\030\005 \001(\0162$.google.cloud.t" - + "alent.v4beta1.JobView\"\234\001\n\020ListJobsRespon" - + "se\022.\n\004jobs\030\001 \003(\0132 .google.cloud.talent.v" - + "4beta1.Job\022\027\n\017next_page_token\030\002 \001(\t\022?\n\010m" - + "etadata\030\003 \001(\0132-.google.cloud.talent.v4be" - + "ta1.ResponseMetadata\"\240\t\n\021SearchJobsReque" - + "st\022\016\n\006parent\030\001 \001(\t\022N\n\013search_mode\030\002 \001(\0162" - + "9.google.cloud.talent.v4beta1.SearchJobs" - + "Request.SearchMode\022F\n\020request_metadata\030\003" - + " \001(\0132,.google.cloud.talent.v4beta1.Reque" - + "stMetadata\0228\n\tjob_query\030\004 \001(\0132%.google.c" - + "loud.talent.v4beta1.JobQuery\022\031\n\021enable_b" - + "roadening\030\005 \001(\010\022#\n\033require_precise_resul" - + "t_size\030\006 \001(\010\022F\n\021histogram_queries\030\007 \003(\0132" - + "+.google.cloud.talent.v4beta1.HistogramQ" - + "uery\0226\n\010job_view\030\010 \001(\0162$.google.cloud.ta" - + "lent.v4beta1.JobView\022\016\n\006offset\030\t \001(\005\022\021\n\t" - + "page_size\030\n \001(\005\022\022\n\npage_token\030\013 \001(\t\022\020\n\010o" - + "rder_by\030\014 \001(\t\022b\n\025diversification_level\030\r" - + " \001(\0162C.google.cloud.talent.v4beta1.Searc" - + "hJobsRequest.DiversificationLevel\022]\n\023cus" - + "tom_ranking_info\030\016 \001(\0132@.google.cloud.ta" - + "lent.v4beta1.SearchJobsRequest.CustomRan" - + "kingInfo\022\035\n\025disable_keyword_match\030\020 \001(\010\032" - + "\220\002\n\021CustomRankingInfo\022j\n\020importance_leve" - + "l\030\001 \001(\0162P.google.cloud.talent.v4beta1.Se" - + "archJobsRequest.CustomRankingInfo.Import" - + "anceLevel\022\032\n\022ranking_expression\030\002 \001(\t\"s\n" - + "\017ImportanceLevel\022 \n\034IMPORTANCE_LEVEL_UNS" - + "PECIFIED\020\000\022\010\n\004NONE\020\001\022\007\n\003LOW\020\002\022\010\n\004MILD\020\003\022" - + "\n\n\006MEDIUM\020\004\022\010\n\004HIGH\020\005\022\013\n\007EXTREME\020\006\"R\n\nSe" - + "archMode\022\033\n\027SEARCH_MODE_UNSPECIFIED\020\000\022\016\n" - + "\nJOB_SEARCH\020\001\022\027\n\023FEATURED_JOB_SEARCH\020\002\"W" - + "\n\024DiversificationLevel\022%\n!DIVERSIFICATIO" - + "N_LEVEL_UNSPECIFIED\020\000\022\014\n\010DISABLED\020\001\022\n\n\006S" - + "IMPLE\020\002\"\327\006\n\022SearchJobsResponse\022R\n\rmatchi" - + "ng_jobs\030\001 \003(\0132;.google.cloud.talent.v4be" - + "ta1.SearchJobsResponse.MatchingJob\022R\n\027hi" - + "stogram_query_results\030\002 \003(\01321.google.clo" - + "ud.talent.v4beta1.HistogramQueryResult\022\027" - + "\n\017next_page_token\030\003 \001(\t\022?\n\020location_filt" - + "ers\030\004 \003(\0132%.google.cloud.talent.v4beta1." - + "Location\022\034\n\024estimated_total_size\030\005 \001(\005\022\022" - + "\n\ntotal_size\030\006 \001(\005\022?\n\010metadata\030\007 \001(\0132-.g" - + "oogle.cloud.talent.v4beta1.ResponseMetad" - + "ata\022\"\n\032broadened_query_jobs_count\030\010 \001(\005\022" - + "I\n\020spell_correction\030\t \001(\0132/.google.cloud" - + ".talent.v4beta1.SpellingCorrection\032\334\001\n\013M" - + "atchingJob\022-\n\003job\030\001 \001(\0132 .google.cloud.t" - + "alent.v4beta1.Job\022\023\n\013job_summary\030\002 \001(\t\022\031" - + "\n\021job_title_snippet\030\003 \001(\t\022\033\n\023search_text" - + "_snippet\030\004 \001(\t\022Q\n\014commute_info\030\005 \001(\0132;.g" - + "oogle.cloud.talent.v4beta1.SearchJobsRes" - + "ponse.CommuteInfo\032~\n\013CommuteInfo\022;\n\014job_" - + "location\030\001 \001(\0132%.google.cloud.talent.v4b" - + "eta1.Location\0222\n\017travel_duration\030\002 \001(\0132\031" - + ".google.protobuf.Duration\"X\n\026BatchCreate" - + "JobsRequest\022\016\n\006parent\030\001 \001(\t\022.\n\004jobs\030\002 \003(" - + "\0132 .google.cloud.talent.v4beta1.Job\"\211\001\n\026" - + "BatchUpdateJobsRequest\022\016\n\006parent\030\001 \001(\t\022." - + "\n\004jobs\030\002 \003(\0132 .google.cloud.talent.v4bet" - + "a1.Job\022/\n\013update_mask\030\003 \001(\0132\032.google.pro" - + "tobuf.FieldMask*v\n\007JobView\022\030\n\024JOB_VIEW_U" - + "NSPECIFIED\020\000\022\024\n\020JOB_VIEW_ID_ONLY\020\001\022\024\n\020JO" - + "B_VIEW_MINIMAL\020\002\022\022\n\016JOB_VIEW_SMALL\020\003\022\021\n\r" - + "JOB_VIEW_FULL\020\0042\220\021\n\nJobService\022\274\001\n\tCreat" - + "eJob\022-.google.cloud.talent.v4beta1.Creat" - + "eJobRequest\032 .google.cloud.talent.v4beta" - + "1.Job\"^\202\323\344\223\002X\"+/v4beta1/{parent=projects" - + "/*/tenants/*}/jobs:\001*Z&\"!/v4beta1/{paren" - + "t=projects/*}/jobs:\001*\022\260\001\n\006GetJob\022*.googl" - + "e.cloud.talent.v4beta1.GetJobRequest\032 .g" - + "oogle.cloud.talent.v4beta1.Job\"X\202\323\344\223\002R\022+" - + "/v4beta1/{name=projects/*/tenants/*/jobs" - + "/*}Z#\022!/v4beta1/{name=projects/*/jobs/*}" - + "\022\304\001\n\tUpdateJob\022-.google.cloud.talent.v4b" - + "eta1.UpdateJobRequest\032 .google.cloud.tal" - + "ent.v4beta1.Job\"f\202\323\344\223\002`2//v4beta1/{job.n" - + "ame=projects/*/tenants/*/jobs/*}:\001*Z*2%/" - + "v4beta1/{job.name=projects/*/jobs/*}:\001*\022" - + "\254\001\n\tDeleteJob\022-.google.cloud.talent.v4be" - + "ta1.DeleteJobRequest\032\026.google.protobuf.E" - + "mpty\"X\202\323\344\223\002R*+/v4beta1/{name=projects/*/" - + "tenants/*/jobs/*}Z#*!/v4beta1/{name=proj" - + "ects/*/jobs/*}\022\301\001\n\010ListJobs\022,.google.clo" - + "ud.talent.v4beta1.ListJobsRequest\032-.goog" - + "le.cloud.talent.v4beta1.ListJobsResponse" - + "\"X\202\323\344\223\002R\022+/v4beta1/{parent=projects/*/te" - + "nants/*}/jobsZ#\022!/v4beta1/{parent=projec" - + "ts/*}/jobs\022\323\001\n\017BatchDeleteJobs\0223.google." - + "cloud.talent.v4beta1.BatchDeleteJobsRequ" - + "est\032\026.google.protobuf.Empty\"s\202\323\344\223\002m\"7/v4" - + "beta1/{parent=projects/*/tenants/*}/jobs" - + ":batchDelete:\001*Z/\"-/v4beta1/{parent=proj" - + "ects/*}/jobs:batchDelete\022\333\001\n\nSearchJobs\022" - + "..google.cloud.talent.v4beta1.SearchJobs" - + "Request\032/.google.cloud.talent.v4beta1.Se" - + "archJobsResponse\"l\202\323\344\223\002f\"2/v4beta1/{pare" - + "nt=projects/*/tenants/*}/jobs:search:\001*Z" - + "-\"(/v4beta1/{parent=projects/*}/jobs:sea" - + "rch:\001*\022\363\001\n\022SearchJobsForAlert\022..google.c" - + "loud.talent.v4beta1.SearchJobsRequest\032/." + + "lient.proto\032\'google/cloud/talent/v4beta1" + + "/batch.proto\032(google/cloud/talent/v4beta" + + "1/common.proto\032)google/cloud/talent/v4be" + + "ta1/filters.proto\032+google/cloud/talent/v" + + "4beta1/histogram.proto\032%google/cloud/tal" + + "ent/v4beta1/job.proto\032#google/longrunnin" + + "g/operations.proto\032\036google/protobuf/dura" + + "tion.proto\032\033google/protobuf/empty.proto\032" + + " google/protobuf/field_mask.proto\"Q\n\020Cre" + + "ateJobRequest\022\016\n\006parent\030\001 \001(\t\022-\n\003job\030\002 \001" + + "(\0132 .google.cloud.talent.v4beta1.Job\"\035\n\r" + + "GetJobRequest\022\014\n\004name\030\001 \001(\t\"r\n\020UpdateJob" + + "Request\022-\n\003job\030\001 \001(\0132 .google.cloud.tale" + + "nt.v4beta1.Job\022/\n\013update_mask\030\002 \001(\0132\032.go" + + "ogle.protobuf.FieldMask\" \n\020DeleteJobRequ" + + "est\022\014\n\004name\030\001 \001(\t\"8\n\026BatchDeleteJobsRequ" + + "est\022\016\n\006parent\030\001 \001(\t\022\016\n\006filter\030\002 \001(\t\"\220\001\n\017" + + "ListJobsRequest\022\016\n\006parent\030\001 \001(\t\022\016\n\006filte" + + "r\030\002 \001(\t\022\022\n\npage_token\030\003 \001(\t\022\021\n\tpage_size" + + "\030\004 \001(\005\0226\n\010job_view\030\005 \001(\0162$.google.cloud." + + "talent.v4beta1.JobView\"\234\001\n\020ListJobsRespo" + + "nse\022.\n\004jobs\030\001 \003(\0132 .google.cloud.talent." + + "v4beta1.Job\022\027\n\017next_page_token\030\002 \001(\t\022?\n\010" + + "metadata\030\003 \001(\0132-.google.cloud.talent.v4b" + + "eta1.ResponseMetadata\"\240\t\n\021SearchJobsRequ" + + "est\022\016\n\006parent\030\001 \001(\t\022N\n\013search_mode\030\002 \001(\016" + + "29.google.cloud.talent.v4beta1.SearchJob" + + "sRequest.SearchMode\022F\n\020request_metadata\030" + + "\003 \001(\0132,.google.cloud.talent.v4beta1.Requ" + + "estMetadata\0228\n\tjob_query\030\004 \001(\0132%.google." + + "cloud.talent.v4beta1.JobQuery\022\031\n\021enable_" + + "broadening\030\005 \001(\010\022#\n\033require_precise_resu" + + "lt_size\030\006 \001(\010\022F\n\021histogram_queries\030\007 \003(\013" + + "2+.google.cloud.talent.v4beta1.Histogram" + + "Query\0226\n\010job_view\030\010 \001(\0162$.google.cloud.t" + + "alent.v4beta1.JobView\022\016\n\006offset\030\t \001(\005\022\021\n" + + "\tpage_size\030\n \001(\005\022\022\n\npage_token\030\013 \001(\t\022\020\n\010" + + "order_by\030\014 \001(\t\022b\n\025diversification_level\030" + + "\r \001(\0162C.google.cloud.talent.v4beta1.Sear" + + "chJobsRequest.DiversificationLevel\022]\n\023cu" + + "stom_ranking_info\030\016 \001(\0132@.google.cloud.t" + + "alent.v4beta1.SearchJobsRequest.CustomRa" + + "nkingInfo\022\035\n\025disable_keyword_match\030\020 \001(\010" + + "\032\220\002\n\021CustomRankingInfo\022j\n\020importance_lev" + + "el\030\001 \001(\0162P.google.cloud.talent.v4beta1.S" + + "earchJobsRequest.CustomRankingInfo.Impor" + + "tanceLevel\022\032\n\022ranking_expression\030\002 \001(\t\"s" + + "\n\017ImportanceLevel\022 \n\034IMPORTANCE_LEVEL_UN" + + "SPECIFIED\020\000\022\010\n\004NONE\020\001\022\007\n\003LOW\020\002\022\010\n\004MILD\020\003" + + "\022\n\n\006MEDIUM\020\004\022\010\n\004HIGH\020\005\022\013\n\007EXTREME\020\006\"R\n\nS" + + "earchMode\022\033\n\027SEARCH_MODE_UNSPECIFIED\020\000\022\016" + + "\n\nJOB_SEARCH\020\001\022\027\n\023FEATURED_JOB_SEARCH\020\002\"" + + "W\n\024DiversificationLevel\022%\n!DIVERSIFICATI" + + "ON_LEVEL_UNSPECIFIED\020\000\022\014\n\010DISABLED\020\001\022\n\n\006" + + "SIMPLE\020\002\"\327\006\n\022SearchJobsResponse\022R\n\rmatch" + + "ing_jobs\030\001 \003(\0132;.google.cloud.talent.v4b" + + "eta1.SearchJobsResponse.MatchingJob\022R\n\027h" + + "istogram_query_results\030\002 \003(\01321.google.cl" + + "oud.talent.v4beta1.HistogramQueryResult\022" + + "\027\n\017next_page_token\030\003 \001(\t\022?\n\020location_fil" + + "ters\030\004 \003(\0132%.google.cloud.talent.v4beta1" + + ".Location\022\034\n\024estimated_total_size\030\005 \001(\005\022" + + "\022\n\ntotal_size\030\006 \001(\005\022?\n\010metadata\030\007 \001(\0132-." + + "google.cloud.talent.v4beta1.ResponseMeta" + + "data\022\"\n\032broadened_query_jobs_count\030\010 \001(\005" + + "\022I\n\020spell_correction\030\t \001(\0132/.google.clou" + + "d.talent.v4beta1.SpellingCorrection\032\334\001\n\013" + + "MatchingJob\022-\n\003job\030\001 \001(\0132 .google.cloud." + + "talent.v4beta1.Job\022\023\n\013job_summary\030\002 \001(\t\022" + + "\031\n\021job_title_snippet\030\003 \001(\t\022\033\n\023search_tex" + + "t_snippet\030\004 \001(\t\022Q\n\014commute_info\030\005 \001(\0132;." + "google.cloud.talent.v4beta1.SearchJobsRe" - + "sponse\"|\202\323\344\223\002v\":/v4beta1/{parent=project" - + "s/*/tenants/*}/jobs:searchForAlert:\001*Z5\"" - + "0/v4beta1/{parent=projects/*}/jobs:searc" - + "hForAlert:\001*\022\335\001\n\017BatchCreateJobs\0223.googl" - + "e.cloud.talent.v4beta1.BatchCreateJobsRe" - + "quest\032\035.google.longrunning.Operation\"v\202\323" - + "\344\223\002p\"7/v4beta1/{parent=projects/*/tenant" - + "s/*}/jobs:batchCreate:\001*Z2\"-/v4beta1/{pa" - + "rent=projects/*}/jobs:batchCreate:\001*\022\335\001\n" - + "\017BatchUpdateJobs\0223.google.cloud.talent.v" - + "4beta1.BatchUpdateJobsRequest\032\035.google.l" - + "ongrunning.Operation\"v\202\323\344\223\002p\"7/v4beta1/{" - + "parent=projects/*/tenants/*}/jobs:batchU" - + "pdate:\001*Z2\"-/v4beta1/{parent=projects/*}" - + "/jobs:batchUpdate:\001*\032l\312A\023jobs.googleapis" - + ".com\322AShttps://www.googleapis.com/auth/c" - + "loud-platform,https://www.googleapis.com" - + "/auth/jobsB}\n\037com.google.cloud.talent.v4" - + "beta1B\017JobServiceProtoP\001ZAgoogle.golang." - + "org/genproto/googleapis/cloud/talent/v4b" - + "eta1;talent\242\002\003CTSb\006proto3" + + "sponse.CommuteInfo\032~\n\013CommuteInfo\022;\n\014job" + + "_location\030\001 \001(\0132%.google.cloud.talent.v4" + + "beta1.Location\0222\n\017travel_duration\030\002 \001(\0132" + + "\031.google.protobuf.Duration\"X\n\026BatchCreat" + + "eJobsRequest\022\016\n\006parent\030\001 \001(\t\022.\n\004jobs\030\002 \003" + + "(\0132 .google.cloud.talent.v4beta1.Job\"\211\001\n" + + "\026BatchUpdateJobsRequest\022\016\n\006parent\030\001 \001(\t\022" + + ".\n\004jobs\030\002 \003(\0132 .google.cloud.talent.v4be" + + "ta1.Job\022/\n\013update_mask\030\003 \001(\0132\032.google.pr" + + "otobuf.FieldMask*v\n\007JobView\022\030\n\024JOB_VIEW_" + + "UNSPECIFIED\020\000\022\024\n\020JOB_VIEW_ID_ONLY\020\001\022\024\n\020J" + + "OB_VIEW_MINIMAL\020\002\022\022\n\016JOB_VIEW_SMALL\020\003\022\021\n" + + "\rJOB_VIEW_FULL\020\0042\220\021\n\nJobService\022\274\001\n\tCrea" + + "teJob\022-.google.cloud.talent.v4beta1.Crea" + + "teJobRequest\032 .google.cloud.talent.v4bet" + + "a1.Job\"^\202\323\344\223\002X\"+/v4beta1/{parent=project" + + "s/*/tenants/*}/jobs:\001*Z&\"!/v4beta1/{pare" + + "nt=projects/*}/jobs:\001*\022\260\001\n\006GetJob\022*.goog" + + "le.cloud.talent.v4beta1.GetJobRequest\032 ." + + "google.cloud.talent.v4beta1.Job\"X\202\323\344\223\002R\022" + + "+/v4beta1/{name=projects/*/tenants/*/job" + + "s/*}Z#\022!/v4beta1/{name=projects/*/jobs/*" + + "}\022\304\001\n\tUpdateJob\022-.google.cloud.talent.v4" + + "beta1.UpdateJobRequest\032 .google.cloud.ta" + + "lent.v4beta1.Job\"f\202\323\344\223\002`2//v4beta1/{job." + + "name=projects/*/tenants/*/jobs/*}:\001*Z*2%" + + "/v4beta1/{job.name=projects/*/jobs/*}:\001*" + + "\022\254\001\n\tDeleteJob\022-.google.cloud.talent.v4b" + + "eta1.DeleteJobRequest\032\026.google.protobuf." + + "Empty\"X\202\323\344\223\002R*+/v4beta1/{name=projects/*" + + "/tenants/*/jobs/*}Z#*!/v4beta1/{name=pro" + + "jects/*/jobs/*}\022\301\001\n\010ListJobs\022,.google.cl" + + "oud.talent.v4beta1.ListJobsRequest\032-.goo" + + "gle.cloud.talent.v4beta1.ListJobsRespons" + + "e\"X\202\323\344\223\002R\022+/v4beta1/{parent=projects/*/t" + + "enants/*}/jobsZ#\022!/v4beta1/{parent=proje" + + "cts/*}/jobs\022\323\001\n\017BatchDeleteJobs\0223.google" + + ".cloud.talent.v4beta1.BatchDeleteJobsReq" + + "uest\032\026.google.protobuf.Empty\"s\202\323\344\223\002m\"7/v" + + "4beta1/{parent=projects/*/tenants/*}/job" + + "s:batchDelete:\001*Z/\"-/v4beta1/{parent=pro" + + "jects/*}/jobs:batchDelete\022\333\001\n\nSearchJobs" + + "\022..google.cloud.talent.v4beta1.SearchJob" + + "sRequest\032/.google.cloud.talent.v4beta1.S" + + "earchJobsResponse\"l\202\323\344\223\002f\"2/v4beta1/{par" + + "ent=projects/*/tenants/*}/jobs:search:\001*" + + "Z-\"(/v4beta1/{parent=projects/*}/jobs:se" + + "arch:\001*\022\363\001\n\022SearchJobsForAlert\022..google." + + "cloud.talent.v4beta1.SearchJobsRequest\032/" + + ".google.cloud.talent.v4beta1.SearchJobsR" + + "esponse\"|\202\323\344\223\002v\":/v4beta1/{parent=projec" + + "ts/*/tenants/*}/jobs:searchForAlert:\001*Z5" + + "\"0/v4beta1/{parent=projects/*}/jobs:sear" + + "chForAlert:\001*\022\335\001\n\017BatchCreateJobs\0223.goog" + + "le.cloud.talent.v4beta1.BatchCreateJobsR" + + "equest\032\035.google.longrunning.Operation\"v\202" + + "\323\344\223\002p\"7/v4beta1/{parent=projects/*/tenan" + + "ts/*}/jobs:batchCreate:\001*Z2\"-/v4beta1/{p" + + "arent=projects/*}/jobs:batchCreate:\001*\022\335\001" + + "\n\017BatchUpdateJobs\0223.google.cloud.talent." + + "v4beta1.BatchUpdateJobsRequest\032\035.google." + + "longrunning.Operation\"v\202\323\344\223\002p\"7/v4beta1/" + + "{parent=projects/*/tenants/*}/jobs:batch" + + "Update:\001*Z2\"-/v4beta1/{parent=projects/*" + + "}/jobs:batchUpdate:\001*\032l\312A\023jobs.googleapi" + + "s.com\322AShttps://www.googleapis.com/auth/" + + "cloud-platform,https://www.googleapis.co" + + "m/auth/jobsB}\n\037com.google.cloud.talent.v" + + "4beta1B\017JobServiceProtoP\001ZAgoogle.golang" + + ".org/genproto/googleapis/cloud/talent/v4" + + "beta1;talent\242\002\003CTSb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -236,6 +237,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.api.AnnotationsProto.getDescriptor(), com.google.api.ClientProto.getDescriptor(), + com.google.cloud.talent.v4beta1.BatchProto.getDescriptor(), com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(), com.google.cloud.talent.v4beta1.FiltersProto.getDescriptor(), com.google.cloud.talent.v4beta1.HistogramProto.getDescriptor(), @@ -395,6 +397,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( descriptor, registry); com.google.api.AnnotationsProto.getDescriptor(); com.google.api.ClientProto.getDescriptor(); + com.google.cloud.talent.v4beta1.BatchProto.getDescriptor(); com.google.cloud.talent.v4beta1.CommonProto.getDescriptor(); com.google.cloud.talent.v4beta1.FiltersProto.getDescriptor(); com.google.cloud.talent.v4beta1.HistogramProto.getDescriptor(); diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job_service.proto b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job_service.proto index 5169ce88c7f8..1b0d8bfeb759 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job_service.proto +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/job_service.proto @@ -19,6 +19,7 @@ package google.cloud.talent.v4beta1; import "google/api/annotations.proto"; import "google/api/client.proto"; +import "google/cloud/talent/v4beta1/batch.proto"; import "google/cloud/talent/v4beta1/common.proto"; import "google/cloud/talent/v4beta1/filters.proto"; import "google/cloud/talent/v4beta1/histogram.proto"; diff --git a/google-cloud-clients/google-cloud-talent/synth.metadata b/google-cloud-clients/google-cloud-talent/synth.metadata index 14701ddfc75c..49feb4e1ea26 100644 --- a/google-cloud-clients/google-cloud-talent/synth.metadata +++ b/google-cloud-clients/google-cloud-talent/synth.metadata @@ -1,5 +1,5 @@ { - "updateTime": "2019-07-02T07:56:16.139544Z", + "updateTime": "2019-07-03T07:57:43.627320Z", "sources": [ { "generator": { @@ -12,8 +12,8 @@ "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "5322233f8cbec4d3f8c17feca2507ef27d4a07c9", - "internalRef": "256042411" + "sha": "69916b6ffbb7717fa009033351777d0c9909fb79", + "internalRef": "256241904" } } ], From 10403d7d7209d49461bc5b917de3ca301a40ed88 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Wed, 3 Jul 2019 22:14:41 +0530 Subject: [PATCH 44/58] Logging : Cleanup dependency (#5645) * cleanup unused dependency of contrib-google-cloud-logging * remove unused dependency of logging * add the newline at the end of the file --- .../google-cloud-logging/pom.xml | 30 ------------------- 1 file changed, 30 deletions(-) diff --git a/google-cloud-clients/google-cloud-logging/pom.xml b/google-cloud-clients/google-cloud-logging/pom.xml index 255f2fd509ac..b7c40401bb2b 100644 --- a/google-cloud-clients/google-cloud-logging/pom.xml +++ b/google-cloud-clients/google-cloud-logging/pom.xml @@ -18,34 +18,14 @@ google-cloud-logging - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc - - com.google.api - gax-grpc - com.google.api.grpc proto-google-cloud-logging-v2 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -59,21 +39,11 @@ truth test - - com.google.api.grpc - proto-google-common-protos - compile - com.google.api.grpc grpc-google-cloud-logging-v2 test - - junit - junit - test - org.easymock easymock From 13928f8fb07aaa7b35e5de656f2125c011f83810 Mon Sep 17 00:00:00 2001 From: Jeff Ching Date: Wed, 3 Jul 2019 09:56:54 -0700 Subject: [PATCH 45/58] Add Tasks smoke test (#5628) * Add smoke test extracted from java-docs-samples repo * Create task queue if not already exists * Run smoke tests as part of integration tests * Fix mismerge * Fix code format * Fix imports * Fix format --- .../tasks/v2beta3/CloudTasksSmokeTest.java | 112 ++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 google-cloud-clients/google-cloud-tasks/src/test/java/com/google/cloud/tasks/v2beta3/CloudTasksSmokeTest.java diff --git a/google-cloud-clients/google-cloud-tasks/src/test/java/com/google/cloud/tasks/v2beta3/CloudTasksSmokeTest.java b/google-cloud-clients/google-cloud-tasks/src/test/java/com/google/cloud/tasks/v2beta3/CloudTasksSmokeTest.java new file mode 100644 index 000000000000..3faeb1d39989 --- /dev/null +++ b/google-cloud-clients/google-cloud-tasks/src/test/java/com/google/cloud/tasks/v2beta3/CloudTasksSmokeTest.java @@ -0,0 +1,112 @@ +/* + * Copyright 2019 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.cloud.tasks.v2beta3; + +import static org.junit.Assert.fail; + +import com.google.api.gax.rpc.AlreadyExistsException; +import com.google.common.base.Preconditions; +import com.google.protobuf.ByteString; +import java.io.IOException; +import java.nio.charset.Charset; +import java.util.logging.Level; +import java.util.logging.Logger; +import org.junit.BeforeClass; +import org.junit.Test; + +public class CloudTasksSmokeTest { + private static final String PROJECT_ENV_NAME = "GOOGLE_CLOUD_PROJECT"; + private static final String LEGACY_PROJECT_ENV_NAME = "GCLOUD_PROJECT"; + private static final String LOCATION_ENV_NAME = "GOOGLE_CLOUD_LOCATION"; + private static final String DEFAULT_LOCATION_ID = "us-central1"; + private static final String QUEUE_ID = "default"; + static Queue queue; + + public static void main(String args[]) { + Logger.getLogger("").setLevel(Level.WARNING); + try { + createTask(getProjectId(), getLocationId(), QUEUE_ID); + System.out.println("OK"); + } catch (IOException e) { + System.err.println("Failed with exception:"); + e.printStackTrace(System.err); + System.exit(1); + } + } + + @BeforeClass + public static void setupQueue() { + String queueName = QueueName.of(getProjectId(), getLocationId(), QUEUE_ID).toString(); + try (CloudTasksClient client = CloudTasksClient.create()) { + Queue q = Queue.newBuilder().setName(queueName).build(); + try { + + queue = client.createQueue(LocationName.of(getProjectId(), getLocationId()), q); + } catch (AlreadyExistsException e) { + queue = client.getQueue(queueName); + } + } catch (IOException e) { + fail("Failed to create queue: " + e.getMessage()); + } + } + + @Test + public void run() { + main(null); + } + + public static void createTask(String project, String location, String queue) throws IOException { + try (CloudTasksClient client = CloudTasksClient.create()) { + String url = "https://example.com/taskhandler"; + String payload = "Hello, World!"; + + // Construct the fully qualified queue name. + String queuePath = QueueName.of(project, location, queue).toString(); + + // Construct the task body. + Task.Builder taskBuilder = + Task.newBuilder() + .setHttpRequest( + HttpRequest.newBuilder() + .setBody(ByteString.copyFrom(payload, Charset.defaultCharset())) + .setUrl(url) + .setHttpMethod(HttpMethod.POST) + .build()); + + // Send create task request. + Task task = client.createTask(queuePath, taskBuilder.build()); + System.out.println("Task created: " + task.getName()); + } + } + + private static String getProjectId() { + String projectId = System.getProperty(PROJECT_ENV_NAME, System.getenv(PROJECT_ENV_NAME)); + if (projectId == null) { + projectId = + System.getProperty(LEGACY_PROJECT_ENV_NAME, System.getenv(LEGACY_PROJECT_ENV_NAME)); + } + Preconditions.checkArgument(projectId != null, "A project ID is required."); + return projectId; + } + + private static String getLocationId() { + String locationId = System.getProperty(LOCATION_ENV_NAME, System.getenv(LOCATION_ENV_NAME)); + if (locationId == null) { + return DEFAULT_LOCATION_ID; + } + return locationId; + } +} From 19882784bf2d5fe79de55130404235eb696585ec Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Thu, 4 Jul 2019 22:01:20 +0530 Subject: [PATCH 46/58] Talent : Cleanup dependency (#5681) * cleanup unused dependency of talent * remove unused dependency of talent --- .../google-cloud-talent/pom.xml | 42 ------------------- 1 file changed, 42 deletions(-) diff --git a/google-cloud-clients/google-cloud-talent/pom.xml b/google-cloud-clients/google-cloud-talent/pom.xml index 9b828f2e7893..3e1ebd3f0cd2 100644 --- a/google-cloud-clients/google-cloud-talent/pom.xml +++ b/google-cloud-clients/google-cloud-talent/pom.xml @@ -18,10 +18,6 @@ google-cloud-talent - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -34,49 +30,11 @@ com.google.api.grpc grpc-google-cloud-talent-v4beta1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - - - ${project.groupId} - google-cloud-core - test-jar - test - junit junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - - - com.google.truth - truth - test - - - com.google.api.grpc - grpc-google-iam-v1 - test - com.google.api gax-grpc From e09da3bc87d62665e6fbc21c2877792ec172c389 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Fri, 5 Jul 2019 04:57:20 +0530 Subject: [PATCH 47/58] Tasks : Cleanup dependency (#5682) * cleanup unused dependency of tasks * remove unused dependency of tasks --- .../google-cloud-tasks/pom.xml | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/google-cloud-clients/google-cloud-tasks/pom.xml b/google-cloud-clients/google-cloud-tasks/pom.xml index de52a60799cd..1bfc2b220627 100644 --- a/google-cloud-clients/google-cloud-tasks/pom.xml +++ b/google-cloud-clients/google-cloud-tasks/pom.xml @@ -18,10 +18,6 @@ google-cloud-tasks-v2 - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -38,18 +34,6 @@ com.google.api.grpc proto-google-cloud-tasks-v2beta3 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -57,11 +41,6 @@ junit test - - org.objenesis - objenesis - test - com.google.api.grpc grpc-google-cloud-tasks-v2 From c5d709c522c27157d59bca5e67a61d6ca2783eb4 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Fri, 5 Jul 2019 04:57:45 +0530 Subject: [PATCH 48/58] cleanup unused dependency of contrib-google-cloud-client (#5691) --- google-cloud-clients/pom.xml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/google-cloud-clients/pom.xml b/google-cloud-clients/pom.xml index 77adbae121c8..28f874ae1bd1 100644 --- a/google-cloud-clients/pom.xml +++ b/google-cloud-clients/pom.xml @@ -174,14 +174,6 @@ 2.6 - - - javax.annotation - javax.annotation-api - 1.3.2 - compile - - From a1bf316e0e82738fb07a26dc285d5082bb9a327b Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 8 Jul 2019 23:14:21 +0530 Subject: [PATCH 49/58] Text-to-Speech: Cleanup unused dependencies (#5683) * cleanup unused dependency of texttospeech * remove unused dependency of texttospeech --- .../google-cloud-texttospeech/pom.xml | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/google-cloud-clients/google-cloud-texttospeech/pom.xml b/google-cloud-clients/google-cloud-texttospeech/pom.xml index 6a7a1e53ee63..5635a3d85cee 100644 --- a/google-cloud-clients/google-cloud-texttospeech/pom.xml +++ b/google-cloud-clients/google-cloud-texttospeech/pom.xml @@ -18,10 +18,6 @@ google-cloud-texttospeech-v1beta1 - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -34,18 +30,6 @@ com.google.api.grpc proto-google-cloud-texttospeech-v1 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -53,16 +37,6 @@ junit test - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - com.google.api.grpc grpc-google-cloud-texttospeech-v1beta1 From da0a67c4d3497cf268ce7e3c5bb147679d0f4455 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 8 Jul 2019 23:14:49 +0530 Subject: [PATCH 50/58] Trace: Cleanup unused dependencies (#5684) * cleanup unused dependency of trace * remove unused dependency of trace --- .../google-cloud-trace/pom.xml | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/google-cloud-clients/google-cloud-trace/pom.xml b/google-cloud-clients/google-cloud-trace/pom.xml index 61486422568c..59bd7d777384 100644 --- a/google-cloud-clients/google-cloud-trace/pom.xml +++ b/google-cloud-clients/google-cloud-trace/pom.xml @@ -18,10 +18,6 @@ google-cloud-trace - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-grpc @@ -34,18 +30,6 @@ com.google.api.grpc proto-google-cloud-trace-v2 - - io.grpc - grpc-netty-shaded - - - io.grpc - grpc-stub - - - io.grpc - grpc-auth - @@ -53,11 +37,6 @@ junit test - - org.objenesis - objenesis - test - com.google.api.grpc grpc-google-cloud-trace-v1 From 17bbdc31c6dc4af6c7a9a93bcda00e347a9020f3 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 8 Jul 2019 23:15:24 +0530 Subject: [PATCH 51/58] Compute: Cleanup unused dependencies (#5685) --- google-cloud-clients/google-cloud-compute/pom.xml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/google-cloud-clients/google-cloud-compute/pom.xml b/google-cloud-clients/google-cloud-compute/pom.xml index 6db990ff0f50..5956809c87ac 100644 --- a/google-cloud-clients/google-cloud-compute/pom.xml +++ b/google-cloud-clients/google-cloud-compute/pom.xml @@ -18,10 +18,6 @@ google-cloud-compute - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-http @@ -39,11 +35,6 @@ test-jar test - - junit - junit - test - org.easymock easymock From 43e0a38e89be8443d5fc430276358566751f3e92 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 8 Jul 2019 23:15:54 +0530 Subject: [PATCH 52/58] DNS: Cleanup unused dependencies (#5688) --- google-cloud-clients/google-cloud-dns/pom.xml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/google-cloud-clients/google-cloud-dns/pom.xml b/google-cloud-clients/google-cloud-dns/pom.xml index 725cf2963827..c743276c2d3e 100644 --- a/google-cloud-clients/google-cloud-dns/pom.xml +++ b/google-cloud-clients/google-cloud-dns/pom.xml @@ -20,10 +20,6 @@ google-cloud-dns - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-http From e355c43ecbba859c00e8386cd78ae1c23869d7c5 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Mon, 8 Jul 2019 10:49:07 -0700 Subject: [PATCH 53/58] Regenerate dialogflow client (#5675) --- .../cloud/dialogflow/v2/AgentsClient.java | 243 ++++++++++++------ .../cloud/dialogflow/v2/AgentsSettings.java | 44 ++-- .../cloud/dialogflow/v2/package-info.java | 4 +- .../cloud/dialogflow/v2/stub/AgentsStub.java | 16 +- .../v2/stub/AgentsStubSettings.java | 100 +++---- .../dialogflow/v2/stub/GrpcAgentsStub.java | 112 ++++---- .../dialogflow/v2beta1/AgentsClient.java | 243 ++++++++++++------ .../dialogflow/v2beta1/AgentsSettings.java | 44 ++-- .../dialogflow/v2beta1/package-info.java | 4 +- .../dialogflow/v2beta1/stub/AgentsStub.java | 16 +- .../v2beta1/stub/AgentsStubSettings.java | 100 +++---- .../v2beta1/stub/GrpcAgentsStub.java | 112 ++++---- .../cloud/dialogflow/v2/AgentsClientTest.java | 93 +++++++ .../dialogflow/v2beta1/AgentsClientTest.java | 93 +++++++ .../google-cloud-dialogflow/synth.metadata | 10 +- 15 files changed, 793 insertions(+), 441 deletions(-) diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsClient.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsClient.java index 2a7e63a9fe23..68033c6e2dd7 100644 --- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsClient.java +++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsClient.java @@ -72,8 +72,8 @@ *

  * 
  * try (AgentsClient agentsClient = AgentsClient.create()) {
- *   ProjectName parent = ProjectName.of("[PROJECT]");
- *   Agent response = agentsClient.getAgent(parent);
+ *   Agent agent = Agent.newBuilder().build();
+ *   Agent response = agentsClient.setAgent(agent);
  * }
  * 
  * 
@@ -193,6 +193,167 @@ public final OperationsClient getOperationsClient() { return operationsClient; } + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Creates/updates the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   Agent agent = Agent.newBuilder().build();
+   *   Agent response = agentsClient.setAgent(agent);
+   * }
+   * 
+ * + * @param agent Required. The agent to update. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final Agent setAgent(Agent agent) { + + SetAgentRequest request = SetAgentRequest.newBuilder().setAgent(agent).build(); + return setAgent(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Creates/updates the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   Agent agent = Agent.newBuilder().build();
+   *   SetAgentRequest request = SetAgentRequest.newBuilder()
+   *     .setAgent(agent)
+   *     .build();
+   *   Agent response = agentsClient.setAgent(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 Agent setAgent(SetAgentRequest request) { + return setAgentCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Creates/updates the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   Agent agent = Agent.newBuilder().build();
+   *   SetAgentRequest request = SetAgentRequest.newBuilder()
+   *     .setAgent(agent)
+   *     .build();
+   *   ApiFuture<Agent> future = agentsClient.setAgentCallable().futureCall(request);
+   *   // Do something
+   *   Agent response = future.get();
+   * }
+   * 
+ */ + public final UnaryCallable setAgentCallable() { + return stub.setAgentCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Deletes the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   ProjectName parent = ProjectName.of("[PROJECT]");
+   *   agentsClient.deleteAgent(parent);
+   * }
+   * 
+ * + * @param parent Required. The project that the agent to delete is associated with. Format: + * `projects/<Project ID>`. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final void deleteAgent(ProjectName parent) { + + DeleteAgentRequest request = + DeleteAgentRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .build(); + deleteAgent(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Deletes the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   ProjectName parent = ProjectName.of("[PROJECT]");
+   *   agentsClient.deleteAgent(parent.toString());
+   * }
+   * 
+ * + * @param parent Required. The project that the agent to delete is associated with. Format: + * `projects/<Project ID>`. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final void deleteAgent(String parent) { + + DeleteAgentRequest request = DeleteAgentRequest.newBuilder().setParent(parent).build(); + deleteAgent(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Deletes the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   ProjectName parent = ProjectName.of("[PROJECT]");
+   *   DeleteAgentRequest request = DeleteAgentRequest.newBuilder()
+   *     .setParent(parent.toString())
+   *     .build();
+   *   agentsClient.deleteAgent(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 void deleteAgent(DeleteAgentRequest request) { + deleteAgentCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Deletes the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   ProjectName parent = ProjectName.of("[PROJECT]");
+   *   DeleteAgentRequest request = DeleteAgentRequest.newBuilder()
+   *     .setParent(parent.toString())
+   *     .build();
+   *   ApiFuture<Void> future = agentsClient.deleteAgentCallable().futureCall(request);
+   *   // Do something
+   *   future.get();
+   * }
+   * 
+ */ + public final UnaryCallable deleteAgentCallable() { + return stub.deleteAgentCallable(); + } + // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the specified agent. @@ -884,84 +1045,6 @@ public final UnaryCallable restoreAgentCallable( return stub.restoreAgentCallable(); } - // AUTO-GENERATED DOCUMENTATION AND METHOD - /** - * Creates/updates the specified agent. - * - *

Sample code: - * - *


-   * try (AgentsClient agentsClient = AgentsClient.create()) {
-   *   SetAgentRequest request = SetAgentRequest.newBuilder().build();
-   *   Agent response = agentsClient.setAgent(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 Agent setAgent(SetAgentRequest request) { - return setAgentCallable().call(request); - } - - // AUTO-GENERATED DOCUMENTATION AND METHOD - /** - * Creates/updates the specified agent. - * - *

Sample code: - * - *


-   * try (AgentsClient agentsClient = AgentsClient.create()) {
-   *   SetAgentRequest request = SetAgentRequest.newBuilder().build();
-   *   ApiFuture<Agent> future = agentsClient.setAgentCallable().futureCall(request);
-   *   // Do something
-   *   Agent response = future.get();
-   * }
-   * 
- */ - public final UnaryCallable setAgentCallable() { - return stub.setAgentCallable(); - } - - // AUTO-GENERATED DOCUMENTATION AND METHOD - /** - * Deletes the specified agent. - * - *

Sample code: - * - *


-   * try (AgentsClient agentsClient = AgentsClient.create()) {
-   *   DeleteAgentRequest request = DeleteAgentRequest.newBuilder().build();
-   *   agentsClient.deleteAgent(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 void deleteAgent(DeleteAgentRequest request) { - deleteAgentCallable().call(request); - } - - // AUTO-GENERATED DOCUMENTATION AND METHOD - /** - * Deletes the specified agent. - * - *

Sample code: - * - *


-   * try (AgentsClient agentsClient = AgentsClient.create()) {
-   *   DeleteAgentRequest request = DeleteAgentRequest.newBuilder().build();
-   *   ApiFuture<Void> future = agentsClient.deleteAgentCallable().futureCall(request);
-   *   // Do something
-   *   future.get();
-   * }
-   * 
- */ - public final UnaryCallable deleteAgentCallable() { - return stub.deleteAgentCallable(); - } - @Override public final void close() { stub.close(); diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsSettings.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsSettings.java index 01baf842900f..bb4f0c4167df 100644 --- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsSettings.java +++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsSettings.java @@ -51,13 +51,13 @@ * *

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 total timeout of getAgent to 30 seconds: + * example, to set the total timeout of setAgent to 30 seconds: * *

  * 
  * AgentsSettings.Builder agentsSettingsBuilder =
  *     AgentsSettings.newBuilder();
- * agentsSettingsBuilder.getAgentSettings().getRetrySettings().toBuilder()
+ * agentsSettingsBuilder.setAgentSettings().getRetrySettings().toBuilder()
  *     .setTotalTimeout(Duration.ofSeconds(30));
  * AgentsSettings agentsSettings = agentsSettingsBuilder.build();
  * 
@@ -66,6 +66,16 @@
 @Generated("by gapic-generator")
 @BetaApi
 public class AgentsSettings extends ClientSettings {
+  /** Returns the object with the settings used for calls to setAgent. */
+  public UnaryCallSettings setAgentSettings() {
+    return ((AgentsStubSettings) getStubSettings()).setAgentSettings();
+  }
+
+  /** Returns the object with the settings used for calls to deleteAgent. */
+  public UnaryCallSettings deleteAgentSettings() {
+    return ((AgentsStubSettings) getStubSettings()).deleteAgentSettings();
+  }
+
   /** Returns the object with the settings used for calls to getAgent. */
   public UnaryCallSettings getAgentSettings() {
     return ((AgentsStubSettings) getStubSettings()).getAgentSettings();
@@ -126,16 +136,6 @@ public OperationCallSettings restoreAgentOpe
     return ((AgentsStubSettings) getStubSettings()).restoreAgentOperationSettings();
   }
 
-  /** Returns the object with the settings used for calls to setAgent. */
-  public UnaryCallSettings setAgentSettings() {
-    return ((AgentsStubSettings) getStubSettings()).setAgentSettings();
-  }
-
-  /** Returns the object with the settings used for calls to deleteAgent. */
-  public UnaryCallSettings deleteAgentSettings() {
-    return ((AgentsStubSettings) getStubSettings()).deleteAgentSettings();
-  }
-
   public static final AgentsSettings create(AgentsStubSettings stub) throws IOException {
     return new AgentsSettings.Builder(stub.toBuilder()).build();
   }
@@ -232,6 +232,16 @@ public Builder applyToAllUnaryMethods(
       return this;
     }
 
+    /** Returns the builder for the settings used for calls to setAgent. */
+    public UnaryCallSettings.Builder setAgentSettings() {
+      return getStubSettingsBuilder().setAgentSettings();
+    }
+
+    /** Returns the builder for the settings used for calls to deleteAgent. */
+    public UnaryCallSettings.Builder deleteAgentSettings() {
+      return getStubSettingsBuilder().deleteAgentSettings();
+    }
+
     /** Returns the builder for the settings used for calls to getAgent. */
     public UnaryCallSettings.Builder getAgentSettings() {
       return getStubSettingsBuilder().getAgentSettings();
@@ -296,16 +306,6 @@ public UnaryCallSettings.Builder restoreAgentSet
       return getStubSettingsBuilder().restoreAgentOperationSettings();
     }
 
-    /** Returns the builder for the settings used for calls to setAgent. */
-    public UnaryCallSettings.Builder setAgentSettings() {
-      return getStubSettingsBuilder().setAgentSettings();
-    }
-
-    /** Returns the builder for the settings used for calls to deleteAgent. */
-    public UnaryCallSettings.Builder deleteAgentSettings() {
-      return getStubSettingsBuilder().deleteAgentSettings();
-    }
-
     @Override
     public AgentsSettings build() throws IOException {
       return new AgentsSettings(this);
diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/package-info.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/package-info.java
index 7ede29fa95e1..b1df9cb8c15d 100644
--- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/package-info.java
+++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/package-info.java
@@ -51,8 +51,8 @@
  * 
  * 
  * try (AgentsClient agentsClient = AgentsClient.create()) {
- *   ProjectName parent = ProjectName.of("[PROJECT]");
- *   Agent response = agentsClient.getAgent(parent);
+ *   Agent agent = Agent.newBuilder().build();
+ *   Agent response = agentsClient.setAgent(agent);
  * }
  * 
  * 
diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/AgentsStub.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/AgentsStub.java index 14b393690434..77bccdce22b5 100644 --- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/AgentsStub.java +++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/AgentsStub.java @@ -53,6 +53,14 @@ public OperationsStub getOperationsStub() { throw new UnsupportedOperationException("Not implemented: getOperationsStub()"); } + public UnaryCallable setAgentCallable() { + throw new UnsupportedOperationException("Not implemented: setAgentCallable()"); + } + + public UnaryCallable deleteAgentCallable() { + throw new UnsupportedOperationException("Not implemented: deleteAgentCallable()"); + } + public UnaryCallable getAgentCallable() { throw new UnsupportedOperationException("Not implemented: getAgentCallable()"); } @@ -102,14 +110,6 @@ public UnaryCallable restoreAgentCallable() { throw new UnsupportedOperationException("Not implemented: restoreAgentCallable()"); } - public UnaryCallable setAgentCallable() { - throw new UnsupportedOperationException("Not implemented: setAgentCallable()"); - } - - public UnaryCallable deleteAgentCallable() { - throw new UnsupportedOperationException("Not implemented: deleteAgentCallable()"); - } - @Override public abstract void close(); } diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/AgentsStubSettings.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/AgentsStubSettings.java index 708decae7446..6fbd5b3471fc 100644 --- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/AgentsStubSettings.java +++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/AgentsStubSettings.java @@ -80,13 +80,13 @@ * *

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 total timeout of getAgent to 30 seconds: + * example, to set the total timeout of setAgent to 30 seconds: * *

  * 
  * AgentsStubSettings.Builder agentsSettingsBuilder =
  *     AgentsStubSettings.newBuilder();
- * agentsSettingsBuilder.getAgentSettings().getRetrySettings().toBuilder()
+ * agentsSettingsBuilder.setAgentSettings().getRetrySettings().toBuilder()
  *     .setTotalTimeout(Duration.ofSeconds(30));
  * AgentsStubSettings agentsSettings = agentsSettingsBuilder.build();
  * 
@@ -102,6 +102,8 @@ public class AgentsStubSettings extends StubSettings {
           .add("https://www.googleapis.com/auth/dialogflow")
           .build();
 
+  private final UnaryCallSettings setAgentSettings;
+  private final UnaryCallSettings deleteAgentSettings;
   private final UnaryCallSettings getAgentSettings;
   private final PagedCallSettings<
           SearchAgentsRequest, SearchAgentsResponse, SearchAgentsPagedResponse>
@@ -117,8 +119,16 @@ public class AgentsStubSettings extends StubSettings {
   private final UnaryCallSettings restoreAgentSettings;
   private final OperationCallSettings
       restoreAgentOperationSettings;
-  private final UnaryCallSettings setAgentSettings;
-  private final UnaryCallSettings deleteAgentSettings;
+
+  /** Returns the object with the settings used for calls to setAgent. */
+  public UnaryCallSettings setAgentSettings() {
+    return setAgentSettings;
+  }
+
+  /** Returns the object with the settings used for calls to deleteAgent. */
+  public UnaryCallSettings deleteAgentSettings() {
+    return deleteAgentSettings;
+  }
 
   /** Returns the object with the settings used for calls to getAgent. */
   public UnaryCallSettings getAgentSettings() {
@@ -176,16 +186,6 @@ public OperationCallSettings restoreAgentOpe
     return restoreAgentOperationSettings;
   }
 
-  /** Returns the object with the settings used for calls to setAgent. */
-  public UnaryCallSettings setAgentSettings() {
-    return setAgentSettings;
-  }
-
-  /** Returns the object with the settings used for calls to deleteAgent. */
-  public UnaryCallSettings deleteAgentSettings() {
-    return deleteAgentSettings;
-  }
-
   @BetaApi("A restructuring of stub classes is planned, so this may break in the future")
   public AgentsStub createStub() throws IOException {
     if (getTransportChannelProvider()
@@ -253,6 +253,8 @@ public Builder toBuilder() {
   protected AgentsStubSettings(Builder settingsBuilder) throws IOException {
     super(settingsBuilder);
 
+    setAgentSettings = settingsBuilder.setAgentSettings().build();
+    deleteAgentSettings = settingsBuilder.deleteAgentSettings().build();
     getAgentSettings = settingsBuilder.getAgentSettings().build();
     searchAgentsSettings = settingsBuilder.searchAgentsSettings().build();
     trainAgentSettings = settingsBuilder.trainAgentSettings().build();
@@ -263,8 +265,6 @@ protected AgentsStubSettings(Builder settingsBuilder) throws IOException {
     importAgentOperationSettings = settingsBuilder.importAgentOperationSettings().build();
     restoreAgentSettings = settingsBuilder.restoreAgentSettings().build();
     restoreAgentOperationSettings = settingsBuilder.restoreAgentOperationSettings().build();
-    setAgentSettings = settingsBuilder.setAgentSettings().build();
-    deleteAgentSettings = settingsBuilder.deleteAgentSettings().build();
   }
 
   private static final PagedListDescriptor
@@ -324,6 +324,8 @@ public ApiFuture getFuturePagedResponse(
   public static class Builder extends StubSettings.Builder {
     private final ImmutableList> unaryMethodSettingsBuilders;
 
+    private final UnaryCallSettings.Builder setAgentSettings;
+    private final UnaryCallSettings.Builder deleteAgentSettings;
     private final UnaryCallSettings.Builder getAgentSettings;
     private final PagedCallSettings.Builder<
             SearchAgentsRequest, SearchAgentsResponse, SearchAgentsPagedResponse>
@@ -340,8 +342,6 @@ public static class Builder extends StubSettings.Builder restoreAgentSettings;
     private final OperationCallSettings.Builder
         restoreAgentOperationSettings;
-    private final UnaryCallSettings.Builder setAgentSettings;
-    private final UnaryCallSettings.Builder deleteAgentSettings;
 
     private static final ImmutableMap>
         RETRYABLE_CODE_DEFINITIONS;
@@ -384,6 +384,10 @@ protected Builder() {
     protected Builder(ClientContext clientContext) {
       super(clientContext);
 
+      setAgentSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
+
+      deleteAgentSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
+
       getAgentSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
 
       searchAgentsSettings = PagedCallSettings.newBuilder(SEARCH_AGENTS_PAGE_STR_FACT);
@@ -404,20 +408,16 @@ protected Builder(ClientContext clientContext) {
 
       restoreAgentOperationSettings = OperationCallSettings.newBuilder();
 
-      setAgentSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
-
-      deleteAgentSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
-
       unaryMethodSettingsBuilders =
           ImmutableList.>of(
+              setAgentSettings,
+              deleteAgentSettings,
               getAgentSettings,
               searchAgentsSettings,
               trainAgentSettings,
               exportAgentSettings,
               importAgentSettings,
-              restoreAgentSettings,
-              setAgentSettings,
-              deleteAgentSettings);
+              restoreAgentSettings);
 
       initDefaults(this);
     }
@@ -434,43 +434,43 @@ private static Builder createDefault() {
     private static Builder initDefaults(Builder builder) {
 
       builder
-          .getAgentSettings()
+          .setAgentSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .searchAgentsSettings()
+          .deleteAgentSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .trainAgentSettings()
+          .getAgentSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .exportAgentSettings()
+          .searchAgentsSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .importAgentSettings()
-          .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("non_idempotent"))
+          .trainAgentSettings()
+          .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .restoreAgentSettings()
+          .exportAgentSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .setAgentSettings()
+          .importAgentSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("non_idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .deleteAgentSettings()
-          .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("non_idempotent"))
+          .restoreAgentSettings()
+          .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
       builder
           .trainAgentOperationSettings()
@@ -568,6 +568,8 @@ private static Builder initDefaults(Builder builder) {
     protected Builder(AgentsStubSettings settings) {
       super(settings);
 
+      setAgentSettings = settings.setAgentSettings.toBuilder();
+      deleteAgentSettings = settings.deleteAgentSettings.toBuilder();
       getAgentSettings = settings.getAgentSettings.toBuilder();
       searchAgentsSettings = settings.searchAgentsSettings.toBuilder();
       trainAgentSettings = settings.trainAgentSettings.toBuilder();
@@ -578,19 +580,17 @@ protected Builder(AgentsStubSettings settings) {
       importAgentOperationSettings = settings.importAgentOperationSettings.toBuilder();
       restoreAgentSettings = settings.restoreAgentSettings.toBuilder();
       restoreAgentOperationSettings = settings.restoreAgentOperationSettings.toBuilder();
-      setAgentSettings = settings.setAgentSettings.toBuilder();
-      deleteAgentSettings = settings.deleteAgentSettings.toBuilder();
 
       unaryMethodSettingsBuilders =
           ImmutableList.>of(
+              setAgentSettings,
+              deleteAgentSettings,
               getAgentSettings,
               searchAgentsSettings,
               trainAgentSettings,
               exportAgentSettings,
               importAgentSettings,
-              restoreAgentSettings,
-              setAgentSettings,
-              deleteAgentSettings);
+              restoreAgentSettings);
     }
 
     // NEXT_MAJOR_VER: remove 'throws Exception'
@@ -609,6 +609,16 @@ public Builder applyToAllUnaryMethods(
       return unaryMethodSettingsBuilders;
     }
 
+    /** Returns the builder for the settings used for calls to setAgent. */
+    public UnaryCallSettings.Builder setAgentSettings() {
+      return setAgentSettings;
+    }
+
+    /** Returns the builder for the settings used for calls to deleteAgent. */
+    public UnaryCallSettings.Builder deleteAgentSettings() {
+      return deleteAgentSettings;
+    }
+
     /** Returns the builder for the settings used for calls to getAgent. */
     public UnaryCallSettings.Builder getAgentSettings() {
       return getAgentSettings;
@@ -673,16 +683,6 @@ public UnaryCallSettings.Builder restoreAgentSet
       return restoreAgentOperationSettings;
     }
 
-    /** Returns the builder for the settings used for calls to setAgent. */
-    public UnaryCallSettings.Builder setAgentSettings() {
-      return setAgentSettings;
-    }
-
-    /** Returns the builder for the settings used for calls to deleteAgent. */
-    public UnaryCallSettings.Builder deleteAgentSettings() {
-      return deleteAgentSettings;
-    }
-
     @Override
     public AgentsStubSettings build() throws IOException {
       return new AgentsStubSettings(this);
diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/GrpcAgentsStub.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/GrpcAgentsStub.java
index b3732fe25fa9..dbb0b4746d95 100644
--- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/GrpcAgentsStub.java
+++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/stub/GrpcAgentsStub.java
@@ -59,6 +59,20 @@
 @BetaApi("A restructuring of stub classes is planned, so this may break in the future")
 public class GrpcAgentsStub extends AgentsStub {
 
+  private static final MethodDescriptor setAgentMethodDescriptor =
+      MethodDescriptor.newBuilder()
+          .setType(MethodDescriptor.MethodType.UNARY)
+          .setFullMethodName("google.cloud.dialogflow.v2.Agents/SetAgent")
+          .setRequestMarshaller(ProtoUtils.marshaller(SetAgentRequest.getDefaultInstance()))
+          .setResponseMarshaller(ProtoUtils.marshaller(Agent.getDefaultInstance()))
+          .build();
+  private static final MethodDescriptor deleteAgentMethodDescriptor =
+      MethodDescriptor.newBuilder()
+          .setType(MethodDescriptor.MethodType.UNARY)
+          .setFullMethodName("google.cloud.dialogflow.v2.Agents/DeleteAgent")
+          .setRequestMarshaller(ProtoUtils.marshaller(DeleteAgentRequest.getDefaultInstance()))
+          .setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
+          .build();
   private static final MethodDescriptor getAgentMethodDescriptor =
       MethodDescriptor.newBuilder()
           .setType(MethodDescriptor.MethodType.UNARY)
@@ -104,24 +118,12 @@ public class GrpcAgentsStub extends AgentsStub {
               .setRequestMarshaller(ProtoUtils.marshaller(RestoreAgentRequest.getDefaultInstance()))
               .setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
               .build();
-  private static final MethodDescriptor setAgentMethodDescriptor =
-      MethodDescriptor.newBuilder()
-          .setType(MethodDescriptor.MethodType.UNARY)
-          .setFullMethodName("google.cloud.dialogflow.v2.Agents/SetAgent")
-          .setRequestMarshaller(ProtoUtils.marshaller(SetAgentRequest.getDefaultInstance()))
-          .setResponseMarshaller(ProtoUtils.marshaller(Agent.getDefaultInstance()))
-          .build();
-  private static final MethodDescriptor deleteAgentMethodDescriptor =
-      MethodDescriptor.newBuilder()
-          .setType(MethodDescriptor.MethodType.UNARY)
-          .setFullMethodName("google.cloud.dialogflow.v2.Agents/DeleteAgent")
-          .setRequestMarshaller(ProtoUtils.marshaller(DeleteAgentRequest.getDefaultInstance()))
-          .setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
-          .build();
 
   private final BackgroundResource backgroundResources;
   private final GrpcOperationsStub operationsStub;
 
+  private final UnaryCallable setAgentCallable;
+  private final UnaryCallable deleteAgentCallable;
   private final UnaryCallable getAgentCallable;
   private final UnaryCallable searchAgentsCallable;
   private final UnaryCallable
@@ -135,8 +137,6 @@ public class GrpcAgentsStub extends AgentsStub {
   private final OperationCallable importAgentOperationCallable;
   private final UnaryCallable restoreAgentCallable;
   private final OperationCallable restoreAgentOperationCallable;
-  private final UnaryCallable setAgentCallable;
-  private final UnaryCallable deleteAgentCallable;
 
   private final GrpcStubCallableFactory callableFactory;
 
@@ -175,6 +175,32 @@ protected GrpcAgentsStub(
     this.callableFactory = callableFactory;
     this.operationsStub = GrpcOperationsStub.create(clientContext, callableFactory);
 
+    GrpcCallSettings setAgentTransportSettings =
+        GrpcCallSettings.newBuilder()
+            .setMethodDescriptor(setAgentMethodDescriptor)
+            .setParamsExtractor(
+                new RequestParamsExtractor() {
+                  @Override
+                  public Map extract(SetAgentRequest request) {
+                    ImmutableMap.Builder params = ImmutableMap.builder();
+                    params.put("agent.parent", String.valueOf(request.getAgent().getParent()));
+                    return params.build();
+                  }
+                })
+            .build();
+    GrpcCallSettings deleteAgentTransportSettings =
+        GrpcCallSettings.newBuilder()
+            .setMethodDescriptor(deleteAgentMethodDescriptor)
+            .setParamsExtractor(
+                new RequestParamsExtractor() {
+                  @Override
+                  public Map extract(DeleteAgentRequest request) {
+                    ImmutableMap.Builder params = ImmutableMap.builder();
+                    params.put("parent", String.valueOf(request.getParent()));
+                    return params.build();
+                  }
+                })
+            .build();
     GrpcCallSettings getAgentTransportSettings =
         GrpcCallSettings.newBuilder()
             .setMethodDescriptor(getAgentMethodDescriptor)
@@ -253,33 +279,13 @@ public Map extract(RestoreAgentRequest request) {
                   }
                 })
             .build();
-    GrpcCallSettings setAgentTransportSettings =
-        GrpcCallSettings.newBuilder()
-            .setMethodDescriptor(setAgentMethodDescriptor)
-            .setParamsExtractor(
-                new RequestParamsExtractor() {
-                  @Override
-                  public Map extract(SetAgentRequest request) {
-                    ImmutableMap.Builder params = ImmutableMap.builder();
-                    params.put("agent.parent", String.valueOf(request.getAgent().getParent()));
-                    return params.build();
-                  }
-                })
-            .build();
-    GrpcCallSettings deleteAgentTransportSettings =
-        GrpcCallSettings.newBuilder()
-            .setMethodDescriptor(deleteAgentMethodDescriptor)
-            .setParamsExtractor(
-                new RequestParamsExtractor() {
-                  @Override
-                  public Map extract(DeleteAgentRequest request) {
-                    ImmutableMap.Builder params = ImmutableMap.builder();
-                    params.put("parent", String.valueOf(request.getParent()));
-                    return params.build();
-                  }
-                })
-            .build();
 
+    this.setAgentCallable =
+        callableFactory.createUnaryCallable(
+            setAgentTransportSettings, settings.setAgentSettings(), clientContext);
+    this.deleteAgentCallable =
+        callableFactory.createUnaryCallable(
+            deleteAgentTransportSettings, settings.deleteAgentSettings(), clientContext);
     this.getAgentCallable =
         callableFactory.createUnaryCallable(
             getAgentTransportSettings, settings.getAgentSettings(), clientContext);
@@ -325,12 +331,6 @@ public Map extract(DeleteAgentRequest request) {
             settings.restoreAgentOperationSettings(),
             clientContext,
             this.operationsStub);
-    this.setAgentCallable =
-        callableFactory.createUnaryCallable(
-            setAgentTransportSettings, settings.setAgentSettings(), clientContext);
-    this.deleteAgentCallable =
-        callableFactory.createUnaryCallable(
-            deleteAgentTransportSettings, settings.deleteAgentSettings(), clientContext);
 
     backgroundResources = new BackgroundResourceAggregation(clientContext.getBackgroundResources());
   }
@@ -340,6 +340,14 @@ public GrpcOperationsStub getOperationsStub() {
     return operationsStub;
   }
 
+  public UnaryCallable setAgentCallable() {
+    return setAgentCallable;
+  }
+
+  public UnaryCallable deleteAgentCallable() {
+    return deleteAgentCallable;
+  }
+
   public UnaryCallable getAgentCallable() {
     return getAgentCallable;
   }
@@ -389,14 +397,6 @@ public UnaryCallable restoreAgentCallable() {
     return restoreAgentCallable;
   }
 
-  public UnaryCallable setAgentCallable() {
-    return setAgentCallable;
-  }
-
-  public UnaryCallable deleteAgentCallable() {
-    return deleteAgentCallable;
-  }
-
   @Override
   public final void close() {
     shutdown();
diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsClient.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsClient.java
index d4d0a067f6f9..0b4d83fd6fd5 100644
--- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsClient.java
+++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsClient.java
@@ -72,8 +72,8 @@
  * 
  * 
  * try (AgentsClient agentsClient = AgentsClient.create()) {
- *   ProjectName parent = ProjectName.of("[PROJECT]");
- *   Agent response = agentsClient.getAgent(parent);
+ *   Agent agent = Agent.newBuilder().build();
+ *   Agent response = agentsClient.setAgent(agent);
  * }
  * 
  * 
@@ -193,6 +193,167 @@ public final OperationsClient getOperationsClient() { return operationsClient; } + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Creates/updates the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   Agent agent = Agent.newBuilder().build();
+   *   Agent response = agentsClient.setAgent(agent);
+   * }
+   * 
+ * + * @param agent Required. The agent to update. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final Agent setAgent(Agent agent) { + + SetAgentRequest request = SetAgentRequest.newBuilder().setAgent(agent).build(); + return setAgent(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Creates/updates the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   Agent agent = Agent.newBuilder().build();
+   *   SetAgentRequest request = SetAgentRequest.newBuilder()
+   *     .setAgent(agent)
+   *     .build();
+   *   Agent response = agentsClient.setAgent(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 Agent setAgent(SetAgentRequest request) { + return setAgentCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Creates/updates the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   Agent agent = Agent.newBuilder().build();
+   *   SetAgentRequest request = SetAgentRequest.newBuilder()
+   *     .setAgent(agent)
+   *     .build();
+   *   ApiFuture<Agent> future = agentsClient.setAgentCallable().futureCall(request);
+   *   // Do something
+   *   Agent response = future.get();
+   * }
+   * 
+ */ + public final UnaryCallable setAgentCallable() { + return stub.setAgentCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Deletes the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   ProjectName parent = ProjectName.of("[PROJECT]");
+   *   agentsClient.deleteAgent(parent);
+   * }
+   * 
+ * + * @param parent Required. The project that the agent to delete is associated with. Format: + * `projects/<Project ID>`. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final void deleteAgent(ProjectName parent) { + + DeleteAgentRequest request = + DeleteAgentRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .build(); + deleteAgent(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Deletes the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   ProjectName parent = ProjectName.of("[PROJECT]");
+   *   agentsClient.deleteAgent(parent.toString());
+   * }
+   * 
+ * + * @param parent Required. The project that the agent to delete is associated with. Format: + * `projects/<Project ID>`. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final void deleteAgent(String parent) { + + DeleteAgentRequest request = DeleteAgentRequest.newBuilder().setParent(parent).build(); + deleteAgent(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Deletes the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   ProjectName parent = ProjectName.of("[PROJECT]");
+   *   DeleteAgentRequest request = DeleteAgentRequest.newBuilder()
+   *     .setParent(parent.toString())
+   *     .build();
+   *   agentsClient.deleteAgent(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 void deleteAgent(DeleteAgentRequest request) { + deleteAgentCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD + /** + * Deletes the specified agent. + * + *

Sample code: + * + *


+   * try (AgentsClient agentsClient = AgentsClient.create()) {
+   *   ProjectName parent = ProjectName.of("[PROJECT]");
+   *   DeleteAgentRequest request = DeleteAgentRequest.newBuilder()
+   *     .setParent(parent.toString())
+   *     .build();
+   *   ApiFuture<Void> future = agentsClient.deleteAgentCallable().futureCall(request);
+   *   // Do something
+   *   future.get();
+   * }
+   * 
+ */ + public final UnaryCallable deleteAgentCallable() { + return stub.deleteAgentCallable(); + } + // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the specified agent. @@ -884,84 +1045,6 @@ public final UnaryCallable restoreAgentCallable( return stub.restoreAgentCallable(); } - // AUTO-GENERATED DOCUMENTATION AND METHOD - /** - * Creates/updates the specified agent. - * - *

Sample code: - * - *


-   * try (AgentsClient agentsClient = AgentsClient.create()) {
-   *   SetAgentRequest request = SetAgentRequest.newBuilder().build();
-   *   Agent response = agentsClient.setAgent(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 Agent setAgent(SetAgentRequest request) { - return setAgentCallable().call(request); - } - - // AUTO-GENERATED DOCUMENTATION AND METHOD - /** - * Creates/updates the specified agent. - * - *

Sample code: - * - *


-   * try (AgentsClient agentsClient = AgentsClient.create()) {
-   *   SetAgentRequest request = SetAgentRequest.newBuilder().build();
-   *   ApiFuture<Agent> future = agentsClient.setAgentCallable().futureCall(request);
-   *   // Do something
-   *   Agent response = future.get();
-   * }
-   * 
- */ - public final UnaryCallable setAgentCallable() { - return stub.setAgentCallable(); - } - - // AUTO-GENERATED DOCUMENTATION AND METHOD - /** - * Deletes the specified agent. - * - *

Sample code: - * - *


-   * try (AgentsClient agentsClient = AgentsClient.create()) {
-   *   DeleteAgentRequest request = DeleteAgentRequest.newBuilder().build();
-   *   agentsClient.deleteAgent(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 void deleteAgent(DeleteAgentRequest request) { - deleteAgentCallable().call(request); - } - - // AUTO-GENERATED DOCUMENTATION AND METHOD - /** - * Deletes the specified agent. - * - *

Sample code: - * - *


-   * try (AgentsClient agentsClient = AgentsClient.create()) {
-   *   DeleteAgentRequest request = DeleteAgentRequest.newBuilder().build();
-   *   ApiFuture<Void> future = agentsClient.deleteAgentCallable().futureCall(request);
-   *   // Do something
-   *   future.get();
-   * }
-   * 
- */ - public final UnaryCallable deleteAgentCallable() { - return stub.deleteAgentCallable(); - } - @Override public final void close() { stub.close(); diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsSettings.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsSettings.java index 3324f8b55204..a1543dde49bc 100644 --- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsSettings.java +++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsSettings.java @@ -51,13 +51,13 @@ * *

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 total timeout of getAgent to 30 seconds: + * example, to set the total timeout of setAgent to 30 seconds: * *

  * 
  * AgentsSettings.Builder agentsSettingsBuilder =
  *     AgentsSettings.newBuilder();
- * agentsSettingsBuilder.getAgentSettings().getRetrySettings().toBuilder()
+ * agentsSettingsBuilder.setAgentSettings().getRetrySettings().toBuilder()
  *     .setTotalTimeout(Duration.ofSeconds(30));
  * AgentsSettings agentsSettings = agentsSettingsBuilder.build();
  * 
@@ -66,6 +66,16 @@
 @Generated("by gapic-generator")
 @BetaApi
 public class AgentsSettings extends ClientSettings {
+  /** Returns the object with the settings used for calls to setAgent. */
+  public UnaryCallSettings setAgentSettings() {
+    return ((AgentsStubSettings) getStubSettings()).setAgentSettings();
+  }
+
+  /** Returns the object with the settings used for calls to deleteAgent. */
+  public UnaryCallSettings deleteAgentSettings() {
+    return ((AgentsStubSettings) getStubSettings()).deleteAgentSettings();
+  }
+
   /** Returns the object with the settings used for calls to getAgent. */
   public UnaryCallSettings getAgentSettings() {
     return ((AgentsStubSettings) getStubSettings()).getAgentSettings();
@@ -126,16 +136,6 @@ public OperationCallSettings restoreAgentOpe
     return ((AgentsStubSettings) getStubSettings()).restoreAgentOperationSettings();
   }
 
-  /** Returns the object with the settings used for calls to setAgent. */
-  public UnaryCallSettings setAgentSettings() {
-    return ((AgentsStubSettings) getStubSettings()).setAgentSettings();
-  }
-
-  /** Returns the object with the settings used for calls to deleteAgent. */
-  public UnaryCallSettings deleteAgentSettings() {
-    return ((AgentsStubSettings) getStubSettings()).deleteAgentSettings();
-  }
-
   public static final AgentsSettings create(AgentsStubSettings stub) throws IOException {
     return new AgentsSettings.Builder(stub.toBuilder()).build();
   }
@@ -232,6 +232,16 @@ public Builder applyToAllUnaryMethods(
       return this;
     }
 
+    /** Returns the builder for the settings used for calls to setAgent. */
+    public UnaryCallSettings.Builder setAgentSettings() {
+      return getStubSettingsBuilder().setAgentSettings();
+    }
+
+    /** Returns the builder for the settings used for calls to deleteAgent. */
+    public UnaryCallSettings.Builder deleteAgentSettings() {
+      return getStubSettingsBuilder().deleteAgentSettings();
+    }
+
     /** Returns the builder for the settings used for calls to getAgent. */
     public UnaryCallSettings.Builder getAgentSettings() {
       return getStubSettingsBuilder().getAgentSettings();
@@ -296,16 +306,6 @@ public UnaryCallSettings.Builder restoreAgentSet
       return getStubSettingsBuilder().restoreAgentOperationSettings();
     }
 
-    /** Returns the builder for the settings used for calls to setAgent. */
-    public UnaryCallSettings.Builder setAgentSettings() {
-      return getStubSettingsBuilder().setAgentSettings();
-    }
-
-    /** Returns the builder for the settings used for calls to deleteAgent. */
-    public UnaryCallSettings.Builder deleteAgentSettings() {
-      return getStubSettingsBuilder().deleteAgentSettings();
-    }
-
     @Override
     public AgentsSettings build() throws IOException {
       return new AgentsSettings(this);
diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/package-info.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/package-info.java
index cea2b3d54a8d..19b970f4b380 100644
--- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/package-info.java
+++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/package-info.java
@@ -51,8 +51,8 @@
  * 
  * 
  * try (AgentsClient agentsClient = AgentsClient.create()) {
- *   ProjectName parent = ProjectName.of("[PROJECT]");
- *   Agent response = agentsClient.getAgent(parent);
+ *   Agent agent = Agent.newBuilder().build();
+ *   Agent response = agentsClient.setAgent(agent);
  * }
  * 
  * 
diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/AgentsStub.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/AgentsStub.java index ae53efeebafa..20b39313ecec 100644 --- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/AgentsStub.java +++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/AgentsStub.java @@ -53,6 +53,14 @@ public OperationsStub getOperationsStub() { throw new UnsupportedOperationException("Not implemented: getOperationsStub()"); } + public UnaryCallable setAgentCallable() { + throw new UnsupportedOperationException("Not implemented: setAgentCallable()"); + } + + public UnaryCallable deleteAgentCallable() { + throw new UnsupportedOperationException("Not implemented: deleteAgentCallable()"); + } + public UnaryCallable getAgentCallable() { throw new UnsupportedOperationException("Not implemented: getAgentCallable()"); } @@ -102,14 +110,6 @@ public UnaryCallable restoreAgentCallable() { throw new UnsupportedOperationException("Not implemented: restoreAgentCallable()"); } - public UnaryCallable setAgentCallable() { - throw new UnsupportedOperationException("Not implemented: setAgentCallable()"); - } - - public UnaryCallable deleteAgentCallable() { - throw new UnsupportedOperationException("Not implemented: deleteAgentCallable()"); - } - @Override public abstract void close(); } diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/AgentsStubSettings.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/AgentsStubSettings.java index 66bef8cf8a4d..244f7e32d087 100644 --- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/AgentsStubSettings.java +++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/AgentsStubSettings.java @@ -80,13 +80,13 @@ * *

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 total timeout of getAgent to 30 seconds: + * example, to set the total timeout of setAgent to 30 seconds: * *

  * 
  * AgentsStubSettings.Builder agentsSettingsBuilder =
  *     AgentsStubSettings.newBuilder();
- * agentsSettingsBuilder.getAgentSettings().getRetrySettings().toBuilder()
+ * agentsSettingsBuilder.setAgentSettings().getRetrySettings().toBuilder()
  *     .setTotalTimeout(Duration.ofSeconds(30));
  * AgentsStubSettings agentsSettings = agentsSettingsBuilder.build();
  * 
@@ -102,6 +102,8 @@ public class AgentsStubSettings extends StubSettings {
           .add("https://www.googleapis.com/auth/dialogflow")
           .build();
 
+  private final UnaryCallSettings setAgentSettings;
+  private final UnaryCallSettings deleteAgentSettings;
   private final UnaryCallSettings getAgentSettings;
   private final PagedCallSettings<
           SearchAgentsRequest, SearchAgentsResponse, SearchAgentsPagedResponse>
@@ -117,8 +119,16 @@ public class AgentsStubSettings extends StubSettings {
   private final UnaryCallSettings restoreAgentSettings;
   private final OperationCallSettings
       restoreAgentOperationSettings;
-  private final UnaryCallSettings setAgentSettings;
-  private final UnaryCallSettings deleteAgentSettings;
+
+  /** Returns the object with the settings used for calls to setAgent. */
+  public UnaryCallSettings setAgentSettings() {
+    return setAgentSettings;
+  }
+
+  /** Returns the object with the settings used for calls to deleteAgent. */
+  public UnaryCallSettings deleteAgentSettings() {
+    return deleteAgentSettings;
+  }
 
   /** Returns the object with the settings used for calls to getAgent. */
   public UnaryCallSettings getAgentSettings() {
@@ -176,16 +186,6 @@ public OperationCallSettings restoreAgentOpe
     return restoreAgentOperationSettings;
   }
 
-  /** Returns the object with the settings used for calls to setAgent. */
-  public UnaryCallSettings setAgentSettings() {
-    return setAgentSettings;
-  }
-
-  /** Returns the object with the settings used for calls to deleteAgent. */
-  public UnaryCallSettings deleteAgentSettings() {
-    return deleteAgentSettings;
-  }
-
   @BetaApi("A restructuring of stub classes is planned, so this may break in the future")
   public AgentsStub createStub() throws IOException {
     if (getTransportChannelProvider()
@@ -253,6 +253,8 @@ public Builder toBuilder() {
   protected AgentsStubSettings(Builder settingsBuilder) throws IOException {
     super(settingsBuilder);
 
+    setAgentSettings = settingsBuilder.setAgentSettings().build();
+    deleteAgentSettings = settingsBuilder.deleteAgentSettings().build();
     getAgentSettings = settingsBuilder.getAgentSettings().build();
     searchAgentsSettings = settingsBuilder.searchAgentsSettings().build();
     trainAgentSettings = settingsBuilder.trainAgentSettings().build();
@@ -263,8 +265,6 @@ protected AgentsStubSettings(Builder settingsBuilder) throws IOException {
     importAgentOperationSettings = settingsBuilder.importAgentOperationSettings().build();
     restoreAgentSettings = settingsBuilder.restoreAgentSettings().build();
     restoreAgentOperationSettings = settingsBuilder.restoreAgentOperationSettings().build();
-    setAgentSettings = settingsBuilder.setAgentSettings().build();
-    deleteAgentSettings = settingsBuilder.deleteAgentSettings().build();
   }
 
   private static final PagedListDescriptor
@@ -324,6 +324,8 @@ public ApiFuture getFuturePagedResponse(
   public static class Builder extends StubSettings.Builder {
     private final ImmutableList> unaryMethodSettingsBuilders;
 
+    private final UnaryCallSettings.Builder setAgentSettings;
+    private final UnaryCallSettings.Builder deleteAgentSettings;
     private final UnaryCallSettings.Builder getAgentSettings;
     private final PagedCallSettings.Builder<
             SearchAgentsRequest, SearchAgentsResponse, SearchAgentsPagedResponse>
@@ -340,8 +342,6 @@ public static class Builder extends StubSettings.Builder restoreAgentSettings;
     private final OperationCallSettings.Builder
         restoreAgentOperationSettings;
-    private final UnaryCallSettings.Builder setAgentSettings;
-    private final UnaryCallSettings.Builder deleteAgentSettings;
 
     private static final ImmutableMap>
         RETRYABLE_CODE_DEFINITIONS;
@@ -384,6 +384,10 @@ protected Builder() {
     protected Builder(ClientContext clientContext) {
       super(clientContext);
 
+      setAgentSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
+
+      deleteAgentSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
+
       getAgentSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
 
       searchAgentsSettings = PagedCallSettings.newBuilder(SEARCH_AGENTS_PAGE_STR_FACT);
@@ -404,20 +408,16 @@ protected Builder(ClientContext clientContext) {
 
       restoreAgentOperationSettings = OperationCallSettings.newBuilder();
 
-      setAgentSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
-
-      deleteAgentSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
-
       unaryMethodSettingsBuilders =
           ImmutableList.>of(
+              setAgentSettings,
+              deleteAgentSettings,
               getAgentSettings,
               searchAgentsSettings,
               trainAgentSettings,
               exportAgentSettings,
               importAgentSettings,
-              restoreAgentSettings,
-              setAgentSettings,
-              deleteAgentSettings);
+              restoreAgentSettings);
 
       initDefaults(this);
     }
@@ -434,43 +434,43 @@ private static Builder createDefault() {
     private static Builder initDefaults(Builder builder) {
 
       builder
-          .getAgentSettings()
+          .setAgentSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .searchAgentsSettings()
+          .deleteAgentSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .trainAgentSettings()
+          .getAgentSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .exportAgentSettings()
+          .searchAgentsSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .importAgentSettings()
-          .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("non_idempotent"))
+          .trainAgentSettings()
+          .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .restoreAgentSettings()
+          .exportAgentSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .setAgentSettings()
+          .importAgentSettings()
           .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("non_idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
 
       builder
-          .deleteAgentSettings()
-          .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("non_idempotent"))
+          .restoreAgentSettings()
+          .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("idempotent"))
           .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("default"));
       builder
           .trainAgentOperationSettings()
@@ -568,6 +568,8 @@ private static Builder initDefaults(Builder builder) {
     protected Builder(AgentsStubSettings settings) {
       super(settings);
 
+      setAgentSettings = settings.setAgentSettings.toBuilder();
+      deleteAgentSettings = settings.deleteAgentSettings.toBuilder();
       getAgentSettings = settings.getAgentSettings.toBuilder();
       searchAgentsSettings = settings.searchAgentsSettings.toBuilder();
       trainAgentSettings = settings.trainAgentSettings.toBuilder();
@@ -578,19 +580,17 @@ protected Builder(AgentsStubSettings settings) {
       importAgentOperationSettings = settings.importAgentOperationSettings.toBuilder();
       restoreAgentSettings = settings.restoreAgentSettings.toBuilder();
       restoreAgentOperationSettings = settings.restoreAgentOperationSettings.toBuilder();
-      setAgentSettings = settings.setAgentSettings.toBuilder();
-      deleteAgentSettings = settings.deleteAgentSettings.toBuilder();
 
       unaryMethodSettingsBuilders =
           ImmutableList.>of(
+              setAgentSettings,
+              deleteAgentSettings,
               getAgentSettings,
               searchAgentsSettings,
               trainAgentSettings,
               exportAgentSettings,
               importAgentSettings,
-              restoreAgentSettings,
-              setAgentSettings,
-              deleteAgentSettings);
+              restoreAgentSettings);
     }
 
     // NEXT_MAJOR_VER: remove 'throws Exception'
@@ -609,6 +609,16 @@ public Builder applyToAllUnaryMethods(
       return unaryMethodSettingsBuilders;
     }
 
+    /** Returns the builder for the settings used for calls to setAgent. */
+    public UnaryCallSettings.Builder setAgentSettings() {
+      return setAgentSettings;
+    }
+
+    /** Returns the builder for the settings used for calls to deleteAgent. */
+    public UnaryCallSettings.Builder deleteAgentSettings() {
+      return deleteAgentSettings;
+    }
+
     /** Returns the builder for the settings used for calls to getAgent. */
     public UnaryCallSettings.Builder getAgentSettings() {
       return getAgentSettings;
@@ -673,16 +683,6 @@ public UnaryCallSettings.Builder restoreAgentSet
       return restoreAgentOperationSettings;
     }
 
-    /** Returns the builder for the settings used for calls to setAgent. */
-    public UnaryCallSettings.Builder setAgentSettings() {
-      return setAgentSettings;
-    }
-
-    /** Returns the builder for the settings used for calls to deleteAgent. */
-    public UnaryCallSettings.Builder deleteAgentSettings() {
-      return deleteAgentSettings;
-    }
-
     @Override
     public AgentsStubSettings build() throws IOException {
       return new AgentsStubSettings(this);
diff --git a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/GrpcAgentsStub.java b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/GrpcAgentsStub.java
index 53864faa97b0..1c00400fdb3f 100644
--- a/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/GrpcAgentsStub.java
+++ b/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/stub/GrpcAgentsStub.java
@@ -59,6 +59,20 @@
 @BetaApi("A restructuring of stub classes is planned, so this may break in the future")
 public class GrpcAgentsStub extends AgentsStub {
 
+  private static final MethodDescriptor setAgentMethodDescriptor =
+      MethodDescriptor.newBuilder()
+          .setType(MethodDescriptor.MethodType.UNARY)
+          .setFullMethodName("google.cloud.dialogflow.v2beta1.Agents/SetAgent")
+          .setRequestMarshaller(ProtoUtils.marshaller(SetAgentRequest.getDefaultInstance()))
+          .setResponseMarshaller(ProtoUtils.marshaller(Agent.getDefaultInstance()))
+          .build();
+  private static final MethodDescriptor deleteAgentMethodDescriptor =
+      MethodDescriptor.newBuilder()
+          .setType(MethodDescriptor.MethodType.UNARY)
+          .setFullMethodName("google.cloud.dialogflow.v2beta1.Agents/DeleteAgent")
+          .setRequestMarshaller(ProtoUtils.marshaller(DeleteAgentRequest.getDefaultInstance()))
+          .setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
+          .build();
   private static final MethodDescriptor getAgentMethodDescriptor =
       MethodDescriptor.newBuilder()
           .setType(MethodDescriptor.MethodType.UNARY)
@@ -104,24 +118,12 @@ public class GrpcAgentsStub extends AgentsStub {
               .setRequestMarshaller(ProtoUtils.marshaller(RestoreAgentRequest.getDefaultInstance()))
               .setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
               .build();
-  private static final MethodDescriptor setAgentMethodDescriptor =
-      MethodDescriptor.newBuilder()
-          .setType(MethodDescriptor.MethodType.UNARY)
-          .setFullMethodName("google.cloud.dialogflow.v2beta1.Agents/SetAgent")
-          .setRequestMarshaller(ProtoUtils.marshaller(SetAgentRequest.getDefaultInstance()))
-          .setResponseMarshaller(ProtoUtils.marshaller(Agent.getDefaultInstance()))
-          .build();
-  private static final MethodDescriptor deleteAgentMethodDescriptor =
-      MethodDescriptor.newBuilder()
-          .setType(MethodDescriptor.MethodType.UNARY)
-          .setFullMethodName("google.cloud.dialogflow.v2beta1.Agents/DeleteAgent")
-          .setRequestMarshaller(ProtoUtils.marshaller(DeleteAgentRequest.getDefaultInstance()))
-          .setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
-          .build();
 
   private final BackgroundResource backgroundResources;
   private final GrpcOperationsStub operationsStub;
 
+  private final UnaryCallable setAgentCallable;
+  private final UnaryCallable deleteAgentCallable;
   private final UnaryCallable getAgentCallable;
   private final UnaryCallable searchAgentsCallable;
   private final UnaryCallable
@@ -135,8 +137,6 @@ public class GrpcAgentsStub extends AgentsStub {
   private final OperationCallable importAgentOperationCallable;
   private final UnaryCallable restoreAgentCallable;
   private final OperationCallable restoreAgentOperationCallable;
-  private final UnaryCallable setAgentCallable;
-  private final UnaryCallable deleteAgentCallable;
 
   private final GrpcStubCallableFactory callableFactory;
 
@@ -175,6 +175,32 @@ protected GrpcAgentsStub(
     this.callableFactory = callableFactory;
     this.operationsStub = GrpcOperationsStub.create(clientContext, callableFactory);
 
+    GrpcCallSettings setAgentTransportSettings =
+        GrpcCallSettings.newBuilder()
+            .setMethodDescriptor(setAgentMethodDescriptor)
+            .setParamsExtractor(
+                new RequestParamsExtractor() {
+                  @Override
+                  public Map extract(SetAgentRequest request) {
+                    ImmutableMap.Builder params = ImmutableMap.builder();
+                    params.put("agent.parent", String.valueOf(request.getAgent().getParent()));
+                    return params.build();
+                  }
+                })
+            .build();
+    GrpcCallSettings deleteAgentTransportSettings =
+        GrpcCallSettings.newBuilder()
+            .setMethodDescriptor(deleteAgentMethodDescriptor)
+            .setParamsExtractor(
+                new RequestParamsExtractor() {
+                  @Override
+                  public Map extract(DeleteAgentRequest request) {
+                    ImmutableMap.Builder params = ImmutableMap.builder();
+                    params.put("parent", String.valueOf(request.getParent()));
+                    return params.build();
+                  }
+                })
+            .build();
     GrpcCallSettings getAgentTransportSettings =
         GrpcCallSettings.newBuilder()
             .setMethodDescriptor(getAgentMethodDescriptor)
@@ -253,33 +279,13 @@ public Map extract(RestoreAgentRequest request) {
                   }
                 })
             .build();
-    GrpcCallSettings setAgentTransportSettings =
-        GrpcCallSettings.newBuilder()
-            .setMethodDescriptor(setAgentMethodDescriptor)
-            .setParamsExtractor(
-                new RequestParamsExtractor() {
-                  @Override
-                  public Map extract(SetAgentRequest request) {
-                    ImmutableMap.Builder params = ImmutableMap.builder();
-                    params.put("agent.parent", String.valueOf(request.getAgent().getParent()));
-                    return params.build();
-                  }
-                })
-            .build();
-    GrpcCallSettings deleteAgentTransportSettings =
-        GrpcCallSettings.newBuilder()
-            .setMethodDescriptor(deleteAgentMethodDescriptor)
-            .setParamsExtractor(
-                new RequestParamsExtractor() {
-                  @Override
-                  public Map extract(DeleteAgentRequest request) {
-                    ImmutableMap.Builder params = ImmutableMap.builder();
-                    params.put("parent", String.valueOf(request.getParent()));
-                    return params.build();
-                  }
-                })
-            .build();
 
+    this.setAgentCallable =
+        callableFactory.createUnaryCallable(
+            setAgentTransportSettings, settings.setAgentSettings(), clientContext);
+    this.deleteAgentCallable =
+        callableFactory.createUnaryCallable(
+            deleteAgentTransportSettings, settings.deleteAgentSettings(), clientContext);
     this.getAgentCallable =
         callableFactory.createUnaryCallable(
             getAgentTransportSettings, settings.getAgentSettings(), clientContext);
@@ -325,12 +331,6 @@ public Map extract(DeleteAgentRequest request) {
             settings.restoreAgentOperationSettings(),
             clientContext,
             this.operationsStub);
-    this.setAgentCallable =
-        callableFactory.createUnaryCallable(
-            setAgentTransportSettings, settings.setAgentSettings(), clientContext);
-    this.deleteAgentCallable =
-        callableFactory.createUnaryCallable(
-            deleteAgentTransportSettings, settings.deleteAgentSettings(), clientContext);
 
     backgroundResources = new BackgroundResourceAggregation(clientContext.getBackgroundResources());
   }
@@ -340,6 +340,14 @@ public GrpcOperationsStub getOperationsStub() {
     return operationsStub;
   }
 
+  public UnaryCallable setAgentCallable() {
+    return setAgentCallable;
+  }
+
+  public UnaryCallable deleteAgentCallable() {
+    return deleteAgentCallable;
+  }
+
   public UnaryCallable getAgentCallable() {
     return getAgentCallable;
   }
@@ -389,14 +397,6 @@ public UnaryCallable restoreAgentCallable() {
     return restoreAgentCallable;
   }
 
-  public UnaryCallable setAgentCallable() {
-    return setAgentCallable;
-  }
-
-  public UnaryCallable deleteAgentCallable() {
-    return deleteAgentCallable;
-  }
-
   @Override
   public final void close() {
     shutdown();
diff --git a/google-cloud-clients/google-cloud-dialogflow/src/test/java/com/google/cloud/dialogflow/v2/AgentsClientTest.java b/google-cloud-clients/google-cloud-dialogflow/src/test/java/com/google/cloud/dialogflow/v2/AgentsClientTest.java
index 4bac7289e154..faa297928715 100644
--- a/google-cloud-clients/google-cloud-dialogflow/src/test/java/com/google/cloud/dialogflow/v2/AgentsClientTest.java
+++ b/google-cloud-clients/google-cloud-dialogflow/src/test/java/com/google/cloud/dialogflow/v2/AgentsClientTest.java
@@ -98,6 +98,99 @@ public void tearDown() throws Exception {
     client.close();
   }
 
+  @Test
+  @SuppressWarnings("all")
+  public void setAgentTest() {
+    String parent = "parent-995424086";
+    String displayName = "displayName1615086568";
+    String defaultLanguageCode = "defaultLanguageCode856575222";
+    String timeZone = "timeZone36848094";
+    String description = "description-1724546052";
+    String avatarUri = "avatarUri-402824826";
+    boolean enableLogging = false;
+    float classificationThreshold = 1.11581064E8F;
+    Agent expectedResponse =
+        Agent.newBuilder()
+            .setParent(parent)
+            .setDisplayName(displayName)
+            .setDefaultLanguageCode(defaultLanguageCode)
+            .setTimeZone(timeZone)
+            .setDescription(description)
+            .setAvatarUri(avatarUri)
+            .setEnableLogging(enableLogging)
+            .setClassificationThreshold(classificationThreshold)
+            .build();
+    mockAgents.addResponse(expectedResponse);
+
+    Agent agent = Agent.newBuilder().build();
+
+    Agent actualResponse = client.setAgent(agent);
+    Assert.assertEquals(expectedResponse, actualResponse);
+
+    List actualRequests = mockAgents.getRequests();
+    Assert.assertEquals(1, actualRequests.size());
+    SetAgentRequest actualRequest = (SetAgentRequest) actualRequests.get(0);
+
+    Assert.assertEquals(agent, actualRequest.getAgent());
+    Assert.assertTrue(
+        channelProvider.isHeaderSent(
+            ApiClientHeaderProvider.getDefaultApiClientHeaderKey(),
+            GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
+  }
+
+  @Test
+  @SuppressWarnings("all")
+  public void setAgentExceptionTest() throws Exception {
+    StatusRuntimeException exception = new StatusRuntimeException(Status.INVALID_ARGUMENT);
+    mockAgents.addException(exception);
+
+    try {
+      Agent agent = Agent.newBuilder().build();
+
+      client.setAgent(agent);
+      Assert.fail("No exception raised");
+    } catch (InvalidArgumentException e) {
+      // Expected exception
+    }
+  }
+
+  @Test
+  @SuppressWarnings("all")
+  public void deleteAgentTest() {
+    Empty expectedResponse = Empty.newBuilder().build();
+    mockAgents.addResponse(expectedResponse);
+
+    ProjectName parent = ProjectName.of("[PROJECT]");
+
+    client.deleteAgent(parent);
+
+    List actualRequests = mockAgents.getRequests();
+    Assert.assertEquals(1, actualRequests.size());
+    DeleteAgentRequest actualRequest = (DeleteAgentRequest) actualRequests.get(0);
+
+    Assert.assertEquals(parent, ProjectName.parse(actualRequest.getParent()));
+    Assert.assertTrue(
+        channelProvider.isHeaderSent(
+            ApiClientHeaderProvider.getDefaultApiClientHeaderKey(),
+            GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
+  }
+
+  @Test
+  @SuppressWarnings("all")
+  public void deleteAgentExceptionTest() throws Exception {
+    StatusRuntimeException exception = new StatusRuntimeException(Status.INVALID_ARGUMENT);
+    mockAgents.addException(exception);
+
+    try {
+      ProjectName parent = ProjectName.of("[PROJECT]");
+
+      client.deleteAgent(parent);
+      Assert.fail("No exception raised");
+    } catch (InvalidArgumentException e) {
+      // Expected exception
+    }
+  }
+
   @Test
   @SuppressWarnings("all")
   public void getAgentTest() {
diff --git a/google-cloud-clients/google-cloud-dialogflow/src/test/java/com/google/cloud/dialogflow/v2beta1/AgentsClientTest.java b/google-cloud-clients/google-cloud-dialogflow/src/test/java/com/google/cloud/dialogflow/v2beta1/AgentsClientTest.java
index 70ecb8f8ad25..c91afa824e69 100644
--- a/google-cloud-clients/google-cloud-dialogflow/src/test/java/com/google/cloud/dialogflow/v2beta1/AgentsClientTest.java
+++ b/google-cloud-clients/google-cloud-dialogflow/src/test/java/com/google/cloud/dialogflow/v2beta1/AgentsClientTest.java
@@ -104,6 +104,99 @@ public void tearDown() throws Exception {
     client.close();
   }
 
+  @Test
+  @SuppressWarnings("all")
+  public void setAgentTest() {
+    String parent = "parent-995424086";
+    String displayName = "displayName1615086568";
+    String defaultLanguageCode = "defaultLanguageCode856575222";
+    String timeZone = "timeZone36848094";
+    String description = "description-1724546052";
+    String avatarUri = "avatarUri-402824826";
+    boolean enableLogging = false;
+    float classificationThreshold = 1.11581064E8F;
+    Agent expectedResponse =
+        Agent.newBuilder()
+            .setParent(parent)
+            .setDisplayName(displayName)
+            .setDefaultLanguageCode(defaultLanguageCode)
+            .setTimeZone(timeZone)
+            .setDescription(description)
+            .setAvatarUri(avatarUri)
+            .setEnableLogging(enableLogging)
+            .setClassificationThreshold(classificationThreshold)
+            .build();
+    mockAgents.addResponse(expectedResponse);
+
+    Agent agent = Agent.newBuilder().build();
+
+    Agent actualResponse = client.setAgent(agent);
+    Assert.assertEquals(expectedResponse, actualResponse);
+
+    List actualRequests = mockAgents.getRequests();
+    Assert.assertEquals(1, actualRequests.size());
+    SetAgentRequest actualRequest = (SetAgentRequest) actualRequests.get(0);
+
+    Assert.assertEquals(agent, actualRequest.getAgent());
+    Assert.assertTrue(
+        channelProvider.isHeaderSent(
+            ApiClientHeaderProvider.getDefaultApiClientHeaderKey(),
+            GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
+  }
+
+  @Test
+  @SuppressWarnings("all")
+  public void setAgentExceptionTest() throws Exception {
+    StatusRuntimeException exception = new StatusRuntimeException(Status.INVALID_ARGUMENT);
+    mockAgents.addException(exception);
+
+    try {
+      Agent agent = Agent.newBuilder().build();
+
+      client.setAgent(agent);
+      Assert.fail("No exception raised");
+    } catch (InvalidArgumentException e) {
+      // Expected exception
+    }
+  }
+
+  @Test
+  @SuppressWarnings("all")
+  public void deleteAgentTest() {
+    Empty expectedResponse = Empty.newBuilder().build();
+    mockAgents.addResponse(expectedResponse);
+
+    ProjectName parent = ProjectName.of("[PROJECT]");
+
+    client.deleteAgent(parent);
+
+    List actualRequests = mockAgents.getRequests();
+    Assert.assertEquals(1, actualRequests.size());
+    DeleteAgentRequest actualRequest = (DeleteAgentRequest) actualRequests.get(0);
+
+    Assert.assertEquals(parent, ProjectName.parse(actualRequest.getParent()));
+    Assert.assertTrue(
+        channelProvider.isHeaderSent(
+            ApiClientHeaderProvider.getDefaultApiClientHeaderKey(),
+            GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
+  }
+
+  @Test
+  @SuppressWarnings("all")
+  public void deleteAgentExceptionTest() throws Exception {
+    StatusRuntimeException exception = new StatusRuntimeException(Status.INVALID_ARGUMENT);
+    mockAgents.addException(exception);
+
+    try {
+      ProjectName parent = ProjectName.of("[PROJECT]");
+
+      client.deleteAgent(parent);
+      Assert.fail("No exception raised");
+    } catch (InvalidArgumentException e) {
+      // Expected exception
+    }
+  }
+
   @Test
   @SuppressWarnings("all")
   public void getAgentTest() {
diff --git a/google-cloud-clients/google-cloud-dialogflow/synth.metadata b/google-cloud-clients/google-cloud-dialogflow/synth.metadata
index c24ded359d64..aeac2cfda323 100644
--- a/google-cloud-clients/google-cloud-dialogflow/synth.metadata
+++ b/google-cloud-clients/google-cloud-dialogflow/synth.metadata
@@ -1,19 +1,19 @@
 {
-  "updateTime": "2019-06-21T07:42:03.955130Z",
+  "updateTime": "2019-07-03T17:13:09.486563Z",
   "sources": [
     {
       "generator": {
         "name": "artman",
-        "version": "0.29.0",
-        "dockerImage": "googleapis/artman@sha256:b79c8c20ee51e5302686c9d1294672d59290df1489be93749ef17d0172cc508d"
+        "version": "0.29.3",
+        "dockerImage": "googleapis/artman@sha256:8900f94a81adaab0238965aa8a7b3648791f4f3a95ee65adc6a56cfcc3753101"
       }
     },
     {
       "git": {
         "name": "googleapis",
         "remote": "https://github.com/googleapis/googleapis.git",
-        "sha": "c9546320bb83441a5a49b13a22d5552eef352105",
-        "internalRef": "254331898"
+        "sha": "91d9692c20e1c038df3214a4d2d7f5d931f86905",
+        "internalRef": "256375941"
       }
     }
   ],

From b365f98e77bd78dd1b410ccb45c375e1e6bfc936 Mon Sep 17 00:00:00 2001
From: athakor <49403056+athakor@users.noreply.github.com>
Date: Mon, 8 Jul 2019 23:20:13 +0530
Subject: [PATCH 54/58] Update comment for test lib dependencies (#5693)

* update comment of testlib

* remove extra line
---
 google-cloud-clients/pom.xml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/google-cloud-clients/pom.xml b/google-cloud-clients/pom.xml
index 28f874ae1bd1..99c09cfb0d07 100644
--- a/google-cloud-clients/pom.xml
+++ b/google-cloud-clients/pom.xml
@@ -365,9 +365,7 @@
         opencensus-contrib-http-util
         ${opencensus.version}
       
-      
+      
       
         com.google.guava
         guava-testlib

From e8be1e1c72bf8cd4f9c9c31fce0346f799fff6cd Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot 
Date: Mon, 8 Jul 2019 10:52:33 -0700
Subject: [PATCH 55/58] Regenerate DLP client (#5678)

---
 .../com/google/privacy/dlp/v2/Action.java     | 1118 ++++++++++++++---
 .../privacy/dlp/v2/ActionOrBuilder.java       |   39 +
 .../google/privacy/dlp/v2/CustomInfoType.java |   14 +-
 .../com/google/privacy/dlp/v2/DlpProto.java   |  631 +++++-----
 .../proto/google/privacy/dlp/v2/dlp.proto     |  164 +--
 .../proto/google/privacy/dlp/v2/storage.proto |   11 +-
 .../google-cloud-dlp/synth.metadata           |   10 +-
 7 files changed, 1442 insertions(+), 545 deletions(-)

diff --git a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/Action.java b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/Action.java
index 4e606505616f..0fba3f94d0a0 100644
--- a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/Action.java
+++ b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/Action.java
@@ -101,6 +101,27 @@ private Action(
               actionCase_ = 3;
               break;
             }
+          case 42:
+            {
+              com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.Builder
+                  subBuilder = null;
+              if (actionCase_ == 5) {
+                subBuilder =
+                    ((com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) action_)
+                        .toBuilder();
+              }
+              action_ =
+                  input.readMessage(
+                      com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.parser(),
+                      extensionRegistry);
+              if (subBuilder != null) {
+                subBuilder.mergeFrom(
+                    (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) action_);
+                action_ = subBuilder.buildPartial();
+              }
+              actionCase_ = 5;
+              break;
+            }
           case 66:
             {
               com.google.privacy.dlp.v2.Action.JobNotificationEmails.Builder subBuilder = null;
@@ -1897,38 +1918,48 @@ public com.google.privacy.dlp.v2.Action.PublishSummaryToCscc getDefaultInstanceF
     }
   }
 
-  public interface JobNotificationEmailsOrBuilder
+  public interface PublishFindingsToCloudDataCatalogOrBuilder
       extends
-      // @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.Action.JobNotificationEmails)
+      // @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog)
       com.google.protobuf.MessageOrBuilder {}
   /**
    *
    *
    * 
-   * Enable email notification to project owners and editors on jobs's
-   * completion/failure.
+   * Publish findings of a DlpJob to Cloud Data Catalog. Labels summarizing the
+   * results of the DlpJob will be applied to the entry for the resource scanned
+   * in Cloud Data Catalog. Any labels previously written by another DlpJob will
+   * be deleted. InfoType naming patterns are strictly enforced when using this
+   * feature. Note that the findings will be persisted in Cloud Data Catalog
+   * storage and are governed by Data Catalog service-specific policy, see
+   * https://cloud.google.com/terms/service-terms
+   * Only a single instance of this action can be specified and only allowed if
+   * all resources being scanned are BigQuery tables.
+   * Compatible with: Inspect
    * 
* - * Protobuf type {@code google.privacy.dlp.v2.Action.JobNotificationEmails} + * Protobuf type {@code google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog} */ - public static final class JobNotificationEmails extends com.google.protobuf.GeneratedMessageV3 + public static final class PublishFindingsToCloudDataCatalog + extends com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:google.privacy.dlp.v2.Action.JobNotificationEmails) - JobNotificationEmailsOrBuilder { + // @@protoc_insertion_point(message_implements:google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) + PublishFindingsToCloudDataCatalogOrBuilder { private static final long serialVersionUID = 0L; - // Use JobNotificationEmails.newBuilder() to construct. - private JobNotificationEmails(com.google.protobuf.GeneratedMessageV3.Builder builder) { + // Use PublishFindingsToCloudDataCatalog.newBuilder() to construct. + private PublishFindingsToCloudDataCatalog( + com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private JobNotificationEmails() {} + private PublishFindingsToCloudDataCatalog() {} @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } - private JobNotificationEmails( + private PublishFindingsToCloudDataCatalog( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { @@ -1967,17 +1998,17 @@ private JobNotificationEmails( public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.privacy.dlp.v2.DlpProto - .internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_descriptor; + .internal_static_google_privacy_dlp_v2_Action_PublishFindingsToCloudDataCatalog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.privacy.dlp.v2.DlpProto - .internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_fieldAccessorTable + .internal_static_google_privacy_dlp_v2_Action_PublishFindingsToCloudDataCatalog_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.privacy.dlp.v2.Action.JobNotificationEmails.class, - com.google.privacy.dlp.v2.Action.JobNotificationEmails.Builder.class); + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.class, + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.Builder.class); } private byte memoizedIsInitialized = -1; @@ -2013,11 +2044,11 @@ public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof com.google.privacy.dlp.v2.Action.JobNotificationEmails)) { + if (!(obj instanceof com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog)) { return super.equals(obj); } - com.google.privacy.dlp.v2.Action.JobNotificationEmails other = - (com.google.privacy.dlp.v2.Action.JobNotificationEmails) obj; + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog other = + (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) obj; if (!unknownFields.equals(other.unknownFields)) return false; return true; @@ -2035,71 +2066,72 @@ public int hashCode() { return hash; } - public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog 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.privacy.dlp.v2.Action.JobNotificationEmails parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog parseFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } - public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog 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.privacy.dlp.v2.Action.JobNotificationEmails parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } - public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + 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.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } - public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -2117,7 +2149,7 @@ public static Builder newBuilder() { } public static Builder newBuilder( - com.google.privacy.dlp.v2.Action.JobNotificationEmails prototype) { + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @@ -2136,33 +2168,42 @@ protected Builder newBuilderForType( * * *
-     * Enable email notification to project owners and editors on jobs's
-     * completion/failure.
+     * Publish findings of a DlpJob to Cloud Data Catalog. Labels summarizing the
+     * results of the DlpJob will be applied to the entry for the resource scanned
+     * in Cloud Data Catalog. Any labels previously written by another DlpJob will
+     * be deleted. InfoType naming patterns are strictly enforced when using this
+     * feature. Note that the findings will be persisted in Cloud Data Catalog
+     * storage and are governed by Data Catalog service-specific policy, see
+     * https://cloud.google.com/terms/service-terms
+     * Only a single instance of this action can be specified and only allowed if
+     * all resources being scanned are BigQuery tables.
+     * Compatible with: Inspect
      * 
* - * Protobuf type {@code google.privacy.dlp.v2.Action.JobNotificationEmails} + * Protobuf type {@code google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:google.privacy.dlp.v2.Action.JobNotificationEmails) - com.google.privacy.dlp.v2.Action.JobNotificationEmailsOrBuilder { + // @@protoc_insertion_point(builder_implements:google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalogOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.privacy.dlp.v2.DlpProto - .internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_descriptor; + .internal_static_google_privacy_dlp_v2_Action_PublishFindingsToCloudDataCatalog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.privacy.dlp.v2.DlpProto - .internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_fieldAccessorTable + .internal_static_google_privacy_dlp_v2_Action_PublishFindingsToCloudDataCatalog_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.privacy.dlp.v2.Action.JobNotificationEmails.class, - com.google.privacy.dlp.v2.Action.JobNotificationEmails.Builder.class); + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.class, + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.Builder.class); } - // Construct using com.google.privacy.dlp.v2.Action.JobNotificationEmails.newBuilder() + // Construct using + // com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.newBuilder() private Builder() { maybeForceBuilderInitialization(); } @@ -2185,17 +2226,19 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.privacy.dlp.v2.DlpProto - .internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_descriptor; + .internal_static_google_privacy_dlp_v2_Action_PublishFindingsToCloudDataCatalog_descriptor; } @java.lang.Override - public com.google.privacy.dlp.v2.Action.JobNotificationEmails getDefaultInstanceForType() { - return com.google.privacy.dlp.v2.Action.JobNotificationEmails.getDefaultInstance(); + public com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + getDefaultInstanceForType() { + return com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + .getDefaultInstance(); } @java.lang.Override - public com.google.privacy.dlp.v2.Action.JobNotificationEmails build() { - com.google.privacy.dlp.v2.Action.JobNotificationEmails result = buildPartial(); + public com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog build() { + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } @@ -2203,9 +2246,9 @@ public com.google.privacy.dlp.v2.Action.JobNotificationEmails build() { } @java.lang.Override - public com.google.privacy.dlp.v2.Action.JobNotificationEmails buildPartial() { - com.google.privacy.dlp.v2.Action.JobNotificationEmails result = - new com.google.privacy.dlp.v2.Action.JobNotificationEmails(this); + public com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog buildPartial() { + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog result = + new com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog(this); onBuilt(); return result; } @@ -2247,17 +2290,20 @@ public Builder addRepeatedField( @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.google.privacy.dlp.v2.Action.JobNotificationEmails) { - return mergeFrom((com.google.privacy.dlp.v2.Action.JobNotificationEmails) other); + if (other instanceof com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) { + return mergeFrom( + (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(com.google.privacy.dlp.v2.Action.JobNotificationEmails other) { - if (other == com.google.privacy.dlp.v2.Action.JobNotificationEmails.getDefaultInstance()) - return this; + public Builder mergeFrom( + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog other) { + if (other + == com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + .getDefaultInstance()) return this; this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -2273,12 +2319,13 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - com.google.privacy.dlp.v2.Action.JobNotificationEmails parsedMessage = null; + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = - (com.google.privacy.dlp.v2.Action.JobNotificationEmails) e.getUnfinishedMessage(); + (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) + e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -2300,140 +2347,589 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } - // @@protoc_insertion_point(builder_scope:google.privacy.dlp.v2.Action.JobNotificationEmails) + // @@protoc_insertion_point(builder_scope:google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) } - // @@protoc_insertion_point(class_scope:google.privacy.dlp.v2.Action.JobNotificationEmails) - private static final com.google.privacy.dlp.v2.Action.JobNotificationEmails DEFAULT_INSTANCE; + // @@protoc_insertion_point(class_scope:google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) + private static final com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new com.google.privacy.dlp.v2.Action.JobNotificationEmails(); + DEFAULT_INSTANCE = new com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog(); } - public static com.google.privacy.dlp.v2.Action.JobNotificationEmails getDefaultInstance() { + public static com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { @java.lang.Override - public JobNotificationEmails parsePartialFrom( + public PublishFindingsToCloudDataCatalog parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { - return new JobNotificationEmails(input, extensionRegistry); + return new PublishFindingsToCloudDataCatalog(input, extensionRegistry); } }; - public static com.google.protobuf.Parser parser() { + public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override - public com.google.protobuf.Parser getParserForType() { + public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override - public com.google.privacy.dlp.v2.Action.JobNotificationEmails getDefaultInstanceForType() { + public com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } - private int actionCase_ = 0; - private java.lang.Object action_; + public interface JobNotificationEmailsOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.Action.JobNotificationEmails) + com.google.protobuf.MessageOrBuilder {} + /** + * + * + *
+   * Enable email notification to project owners and editors on jobs's
+   * completion/failure.
+   * 
+ * + * Protobuf type {@code google.privacy.dlp.v2.Action.JobNotificationEmails} + */ + public static final class JobNotificationEmails extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.privacy.dlp.v2.Action.JobNotificationEmails) + JobNotificationEmailsOrBuilder { + private static final long serialVersionUID = 0L; + // Use JobNotificationEmails.newBuilder() to construct. + private JobNotificationEmails(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } - public enum ActionCase implements com.google.protobuf.Internal.EnumLite { - SAVE_FINDINGS(1), - PUB_SUB(2), - PUBLISH_SUMMARY_TO_CSCC(3), - JOB_NOTIFICATION_EMAILS(8), - ACTION_NOT_SET(0); - private final int value; + private JobNotificationEmails() {} - private ActionCase(int value) { - this.value = value; - } - /** @deprecated Use {@link #forNumber(int)} instead. */ - @java.lang.Deprecated - public static ActionCase valueOf(int value) { - return forNumber(value); + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; } - public static ActionCase forNumber(int value) { - switch (value) { - case 1: - return SAVE_FINDINGS; - case 2: - return PUB_SUB; - case 3: - return PUBLISH_SUMMARY_TO_CSCC; - case 8: - return JOB_NOTIFICATION_EMAILS; - case 0: - return ACTION_NOT_SET; - default: - return null; + private JobNotificationEmails( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); } } - public int getNumber() { - return this.value; + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.privacy.dlp.v2.DlpProto + .internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_descriptor; } - }; - public ActionCase getActionCase() { - return ActionCase.forNumber(actionCase_); - } + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.privacy.dlp.v2.DlpProto + .internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.privacy.dlp.v2.Action.JobNotificationEmails.class, + com.google.privacy.dlp.v2.Action.JobNotificationEmails.Builder.class); + } - public static final int SAVE_FINDINGS_FIELD_NUMBER = 1; - /** - * - * - *
-   * Save resulting findings in a provided location.
-   * 
- * - * .google.privacy.dlp.v2.Action.SaveFindings save_findings = 1; - */ - public boolean hasSaveFindings() { - return actionCase_ == 1; - } - /** - * - * - *
-   * Save resulting findings in a provided location.
-   * 
- * - * .google.privacy.dlp.v2.Action.SaveFindings save_findings = 1; - */ - public com.google.privacy.dlp.v2.Action.SaveFindings getSaveFindings() { - if (actionCase_ == 1) { - return (com.google.privacy.dlp.v2.Action.SaveFindings) action_; + 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; } - return com.google.privacy.dlp.v2.Action.SaveFindings.getDefaultInstance(); - } - /** - * - * - *
-   * Save resulting findings in a provided location.
-   * 
- * - * .google.privacy.dlp.v2.Action.SaveFindings save_findings = 1; - */ - public com.google.privacy.dlp.v2.Action.SaveFindingsOrBuilder getSaveFindingsOrBuilder() { - if (actionCase_ == 1) { - return (com.google.privacy.dlp.v2.Action.SaveFindings) action_; + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + unknownFields.writeTo(output); } - return com.google.privacy.dlp.v2.Action.SaveFindings.getDefaultInstance(); - } - public static final int PUB_SUB_FIELD_NUMBER = 2; - /** - * - * + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += unknownFields.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.privacy.dlp.v2.Action.JobNotificationEmails)) { + return super.equals(obj); + } + com.google.privacy.dlp.v2.Action.JobNotificationEmails other = + (com.google.privacy.dlp.v2.Action.JobNotificationEmails) obj; + + if (!unknownFields.equals(other.unknownFields)) 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) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.privacy.dlp.v2.Action.JobNotificationEmails 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.privacy.dlp.v2.Action.JobNotificationEmails parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.privacy.dlp.v2.Action.JobNotificationEmails 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.privacy.dlp.v2.Action.JobNotificationEmails parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.privacy.dlp.v2.Action.JobNotificationEmails 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.privacy.dlp.v2.Action.JobNotificationEmails parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.privacy.dlp.v2.Action.JobNotificationEmails 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.privacy.dlp.v2.Action.JobNotificationEmails 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; + } + /** + * + * + *
+     * Enable email notification to project owners and editors on jobs's
+     * completion/failure.
+     * 
+ * + * Protobuf type {@code google.privacy.dlp.v2.Action.JobNotificationEmails} + */ + public static final class Builder + extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.privacy.dlp.v2.Action.JobNotificationEmails) + com.google.privacy.dlp.v2.Action.JobNotificationEmailsOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.privacy.dlp.v2.DlpProto + .internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.privacy.dlp.v2.DlpProto + .internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.privacy.dlp.v2.Action.JobNotificationEmails.class, + com.google.privacy.dlp.v2.Action.JobNotificationEmails.Builder.class); + } + + // Construct using com.google.privacy.dlp.v2.Action.JobNotificationEmails.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.privacy.dlp.v2.DlpProto + .internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_descriptor; + } + + @java.lang.Override + public com.google.privacy.dlp.v2.Action.JobNotificationEmails getDefaultInstanceForType() { + return com.google.privacy.dlp.v2.Action.JobNotificationEmails.getDefaultInstance(); + } + + @java.lang.Override + public com.google.privacy.dlp.v2.Action.JobNotificationEmails build() { + com.google.privacy.dlp.v2.Action.JobNotificationEmails result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.privacy.dlp.v2.Action.JobNotificationEmails buildPartial() { + com.google.privacy.dlp.v2.Action.JobNotificationEmails result = + new com.google.privacy.dlp.v2.Action.JobNotificationEmails(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.privacy.dlp.v2.Action.JobNotificationEmails) { + return mergeFrom((com.google.privacy.dlp.v2.Action.JobNotificationEmails) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.privacy.dlp.v2.Action.JobNotificationEmails other) { + if (other == com.google.privacy.dlp.v2.Action.JobNotificationEmails.getDefaultInstance()) + return this; + this.mergeUnknownFields(other.unknownFields); + 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 { + com.google.privacy.dlp.v2.Action.JobNotificationEmails parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.google.privacy.dlp.v2.Action.JobNotificationEmails) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + 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.privacy.dlp.v2.Action.JobNotificationEmails) + } + + // @@protoc_insertion_point(class_scope:google.privacy.dlp.v2.Action.JobNotificationEmails) + private static final com.google.privacy.dlp.v2.Action.JobNotificationEmails DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.privacy.dlp.v2.Action.JobNotificationEmails(); + } + + public static com.google.privacy.dlp.v2.Action.JobNotificationEmails getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public JobNotificationEmails parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new JobNotificationEmails(input, extensionRegistry); + } + }; + + 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.privacy.dlp.v2.Action.JobNotificationEmails getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + } + + private int actionCase_ = 0; + private java.lang.Object action_; + + public enum ActionCase implements com.google.protobuf.Internal.EnumLite { + SAVE_FINDINGS(1), + PUB_SUB(2), + PUBLISH_SUMMARY_TO_CSCC(3), + PUBLISH_FINDINGS_TO_CLOUD_DATA_CATALOG(5), + JOB_NOTIFICATION_EMAILS(8), + ACTION_NOT_SET(0); + private final int value; + + private ActionCase(int value) { + this.value = value; + } + /** @deprecated Use {@link #forNumber(int)} instead. */ + @java.lang.Deprecated + public static ActionCase valueOf(int value) { + return forNumber(value); + } + + public static ActionCase forNumber(int value) { + switch (value) { + case 1: + return SAVE_FINDINGS; + case 2: + return PUB_SUB; + case 3: + return PUBLISH_SUMMARY_TO_CSCC; + case 5: + return PUBLISH_FINDINGS_TO_CLOUD_DATA_CATALOG; + case 8: + return JOB_NOTIFICATION_EMAILS; + case 0: + return ACTION_NOT_SET; + default: + return null; + } + } + + public int getNumber() { + return this.value; + } + }; + + public ActionCase getActionCase() { + return ActionCase.forNumber(actionCase_); + } + + public static final int SAVE_FINDINGS_FIELD_NUMBER = 1; + /** + * + * + *
+   * Save resulting findings in a provided location.
+   * 
+ * + * .google.privacy.dlp.v2.Action.SaveFindings save_findings = 1; + */ + public boolean hasSaveFindings() { + return actionCase_ == 1; + } + /** + * + * + *
+   * Save resulting findings in a provided location.
+   * 
+ * + * .google.privacy.dlp.v2.Action.SaveFindings save_findings = 1; + */ + public com.google.privacy.dlp.v2.Action.SaveFindings getSaveFindings() { + if (actionCase_ == 1) { + return (com.google.privacy.dlp.v2.Action.SaveFindings) action_; + } + return com.google.privacy.dlp.v2.Action.SaveFindings.getDefaultInstance(); + } + /** + * + * + *
+   * Save resulting findings in a provided location.
+   * 
+ * + * .google.privacy.dlp.v2.Action.SaveFindings save_findings = 1; + */ + public com.google.privacy.dlp.v2.Action.SaveFindingsOrBuilder getSaveFindingsOrBuilder() { + if (actionCase_ == 1) { + return (com.google.privacy.dlp.v2.Action.SaveFindings) action_; + } + return com.google.privacy.dlp.v2.Action.SaveFindings.getDefaultInstance(); + } + + public static final int PUB_SUB_FIELD_NUMBER = 2; + /** + * + * *
    * Publish a notification to a pubsub topic.
    * 
@@ -2519,6 +3015,58 @@ public com.google.privacy.dlp.v2.Action.PublishSummaryToCscc getPublishSummaryTo return com.google.privacy.dlp.v2.Action.PublishSummaryToCscc.getDefaultInstance(); } + public static final int PUBLISH_FINDINGS_TO_CLOUD_DATA_CATALOG_FIELD_NUMBER = 5; + /** + * + * + *
+   * Publish findings to Cloud Datahub.
+   * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + public boolean hasPublishFindingsToCloudDataCatalog() { + return actionCase_ == 5; + } + /** + * + * + *
+   * Publish findings to Cloud Datahub.
+   * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + public com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + getPublishFindingsToCloudDataCatalog() { + if (actionCase_ == 5) { + return (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) action_; + } + return com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.getDefaultInstance(); + } + /** + * + * + *
+   * Publish findings to Cloud Datahub.
+   * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + public com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalogOrBuilder + getPublishFindingsToCloudDataCatalogOrBuilder() { + if (actionCase_ == 5) { + return (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) action_; + } + return com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.getDefaultInstance(); + } + public static final int JOB_NOTIFICATION_EMAILS_FIELD_NUMBER = 8; /** * @@ -2590,6 +3138,10 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (actionCase_ == 3) { output.writeMessage(3, (com.google.privacy.dlp.v2.Action.PublishSummaryToCscc) action_); } + if (actionCase_ == 5) { + output.writeMessage( + 5, (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) action_); + } if (actionCase_ == 8) { output.writeMessage(8, (com.google.privacy.dlp.v2.Action.JobNotificationEmails) action_); } @@ -2617,6 +3169,11 @@ public int getSerializedSize() { com.google.protobuf.CodedOutputStream.computeMessageSize( 3, (com.google.privacy.dlp.v2.Action.PublishSummaryToCscc) action_); } + if (actionCase_ == 5) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize( + 5, (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) action_); + } if (actionCase_ == 8) { size += com.google.protobuf.CodedOutputStream.computeMessageSize( @@ -2648,6 +3205,10 @@ public boolean equals(final java.lang.Object obj) { case 3: if (!getPublishSummaryToCscc().equals(other.getPublishSummaryToCscc())) return false; break; + case 5: + if (!getPublishFindingsToCloudDataCatalog() + .equals(other.getPublishFindingsToCloudDataCatalog())) return false; + break; case 8: if (!getJobNotificationEmails().equals(other.getJobNotificationEmails())) return false; break; @@ -2678,6 +3239,10 @@ public int hashCode() { hash = (37 * hash) + PUBLISH_SUMMARY_TO_CSCC_FIELD_NUMBER; hash = (53 * hash) + getPublishSummaryToCscc().hashCode(); break; + case 5: + hash = (37 * hash) + PUBLISH_FINDINGS_TO_CLOUD_DATA_CATALOG_FIELD_NUMBER; + hash = (53 * hash) + getPublishFindingsToCloudDataCatalog().hashCode(); + break; case 8: hash = (37 * hash) + JOB_NOTIFICATION_EMAILS_FIELD_NUMBER; hash = (53 * hash) + getJobNotificationEmails().hashCode(); @@ -2879,6 +3444,13 @@ public com.google.privacy.dlp.v2.Action buildPartial() { result.action_ = publishSummaryToCsccBuilder_.build(); } } + if (actionCase_ == 5) { + if (publishFindingsToCloudDataCatalogBuilder_ == null) { + result.action_ = action_; + } else { + result.action_ = publishFindingsToCloudDataCatalogBuilder_.build(); + } + } if (actionCase_ == 8) { if (jobNotificationEmailsBuilder_ == null) { result.action_ = action_; @@ -2952,6 +3524,11 @@ public Builder mergeFrom(com.google.privacy.dlp.v2.Action other) { mergePublishSummaryToCscc(other.getPublishSummaryToCscc()); break; } + case PUBLISH_FINDINGS_TO_CLOUD_DATA_CATALOG: + { + mergePublishFindingsToCloudDataCatalog(other.getPublishFindingsToCloudDataCatalog()); + break; + } case JOB_NOTIFICATION_EMAILS: { mergeJobNotificationEmails(other.getJobNotificationEmails()); @@ -3616,6 +4193,239 @@ public Builder clearPublishSummaryToCscc() { return publishSummaryToCsccBuilder_; } + private com.google.protobuf.SingleFieldBuilderV3< + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog, + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.Builder, + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalogOrBuilder> + publishFindingsToCloudDataCatalogBuilder_; + /** + * + * + *
+     * Publish findings to Cloud Datahub.
+     * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + public boolean hasPublishFindingsToCloudDataCatalog() { + return actionCase_ == 5; + } + /** + * + * + *
+     * Publish findings to Cloud Datahub.
+     * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + public com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + getPublishFindingsToCloudDataCatalog() { + if (publishFindingsToCloudDataCatalogBuilder_ == null) { + if (actionCase_ == 5) { + return (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) action_; + } + return com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + .getDefaultInstance(); + } else { + if (actionCase_ == 5) { + return publishFindingsToCloudDataCatalogBuilder_.getMessage(); + } + return com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + .getDefaultInstance(); + } + } + /** + * + * + *
+     * Publish findings to Cloud Datahub.
+     * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + public Builder setPublishFindingsToCloudDataCatalog( + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog value) { + if (publishFindingsToCloudDataCatalogBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + action_ = value; + onChanged(); + } else { + publishFindingsToCloudDataCatalogBuilder_.setMessage(value); + } + actionCase_ = 5; + return this; + } + /** + * + * + *
+     * Publish findings to Cloud Datahub.
+     * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + public Builder setPublishFindingsToCloudDataCatalog( + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.Builder + builderForValue) { + if (publishFindingsToCloudDataCatalogBuilder_ == null) { + action_ = builderForValue.build(); + onChanged(); + } else { + publishFindingsToCloudDataCatalogBuilder_.setMessage(builderForValue.build()); + } + actionCase_ = 5; + return this; + } + /** + * + * + *
+     * Publish findings to Cloud Datahub.
+     * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + public Builder mergePublishFindingsToCloudDataCatalog( + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog value) { + if (publishFindingsToCloudDataCatalogBuilder_ == null) { + if (actionCase_ == 5 + && action_ + != com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + .getDefaultInstance()) { + action_ = + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.newBuilder( + (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) action_) + .mergeFrom(value) + .buildPartial(); + } else { + action_ = value; + } + onChanged(); + } else { + if (actionCase_ == 5) { + publishFindingsToCloudDataCatalogBuilder_.mergeFrom(value); + } + publishFindingsToCloudDataCatalogBuilder_.setMessage(value); + } + actionCase_ = 5; + return this; + } + /** + * + * + *
+     * Publish findings to Cloud Datahub.
+     * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + public Builder clearPublishFindingsToCloudDataCatalog() { + if (publishFindingsToCloudDataCatalogBuilder_ == null) { + if (actionCase_ == 5) { + actionCase_ = 0; + action_ = null; + onChanged(); + } + } else { + if (actionCase_ == 5) { + actionCase_ = 0; + action_ = null; + } + publishFindingsToCloudDataCatalogBuilder_.clear(); + } + return this; + } + /** + * + * + *
+     * Publish findings to Cloud Datahub.
+     * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + public com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.Builder + getPublishFindingsToCloudDataCatalogBuilder() { + return getPublishFindingsToCloudDataCatalogFieldBuilder().getBuilder(); + } + /** + * + * + *
+     * Publish findings to Cloud Datahub.
+     * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + public com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalogOrBuilder + getPublishFindingsToCloudDataCatalogOrBuilder() { + if ((actionCase_ == 5) && (publishFindingsToCloudDataCatalogBuilder_ != null)) { + return publishFindingsToCloudDataCatalogBuilder_.getMessageOrBuilder(); + } else { + if (actionCase_ == 5) { + return (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) action_; + } + return com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + .getDefaultInstance(); + } + } + /** + * + * + *
+     * Publish findings to Cloud Datahub.
+     * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog, + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.Builder, + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalogOrBuilder> + getPublishFindingsToCloudDataCatalogFieldBuilder() { + if (publishFindingsToCloudDataCatalogBuilder_ == null) { + if (!(actionCase_ == 5)) { + action_ = + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + .getDefaultInstance(); + } + publishFindingsToCloudDataCatalogBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog, + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog.Builder, + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalogOrBuilder>( + (com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog) action_, + getParentForChildren(), + isClean()); + action_ = null; + } + actionCase_ = 5; + onChanged(); + ; + return publishFindingsToCloudDataCatalogBuilder_; + } + private com.google.protobuf.SingleFieldBuilderV3< com.google.privacy.dlp.v2.Action.JobNotificationEmails, com.google.privacy.dlp.v2.Action.JobNotificationEmails.Builder, diff --git a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/ActionOrBuilder.java b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/ActionOrBuilder.java index 5896a012ac00..021f4b1993f0 100644 --- a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/ActionOrBuilder.java +++ b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/ActionOrBuilder.java @@ -101,6 +101,45 @@ public interface ActionOrBuilder */ com.google.privacy.dlp.v2.Action.PublishSummaryToCsccOrBuilder getPublishSummaryToCsccOrBuilder(); + /** + * + * + *
+   * Publish findings to Cloud Datahub.
+   * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + boolean hasPublishFindingsToCloudDataCatalog(); + /** + * + * + *
+   * Publish findings to Cloud Datahub.
+   * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog + getPublishFindingsToCloudDataCatalog(); + /** + * + * + *
+   * Publish findings to Cloud Datahub.
+   * 
+ * + * + * .google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + * + */ + com.google.privacy.dlp.v2.Action.PublishFindingsToCloudDataCatalogOrBuilder + getPublishFindingsToCloudDataCatalogOrBuilder(); + /** * * diff --git a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/CustomInfoType.java b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/CustomInfoType.java index 5c08d6971a2a..1e903e27bdcb 100644 --- a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/CustomInfoType.java +++ b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/CustomInfoType.java @@ -3727,9 +3727,10 @@ public interface DetectionRuleOrBuilder * * *
-   * Rule for modifying a CustomInfoType to alter behavior under certain
-   * circumstances, depending on the specific details of the rule. Not supported
-   * for the `surrogate_type` custom info type.
+   * Deprecated; use `InspectionRuleSet` instead. Rule for modifying a
+   * `CustomInfoType` to alter behavior under certain circumstances, depending
+   * on the specific details of the rule. Not supported for the `surrogate_type`
+   * custom infoType.
    * 
* * Protobuf type {@code google.privacy.dlp.v2.CustomInfoType.DetectionRule} @@ -7121,9 +7122,10 @@ protected Builder newBuilderForType( * * *
-     * Rule for modifying a CustomInfoType to alter behavior under certain
-     * circumstances, depending on the specific details of the rule. Not supported
-     * for the `surrogate_type` custom info type.
+     * Deprecated; use `InspectionRuleSet` instead. Rule for modifying a
+     * `CustomInfoType` to alter behavior under certain circumstances, depending
+     * on the specific details of the rule. Not supported for the `surrogate_type`
+     * custom infoType.
      * 
* * Protobuf type {@code google.privacy.dlp.v2.CustomInfoType.DetectionRule} diff --git a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/DlpProto.java b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/DlpProto.java index d75ec73fa73e..5c48bb7f6d41 100644 --- a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/DlpProto.java +++ b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/DlpProto.java @@ -472,6 +472,10 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_privacy_dlp_v2_Action_PublishSummaryToCscc_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_privacy_dlp_v2_Action_PublishSummaryToCscc_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_privacy_dlp_v2_Action_PublishFindingsToCloudDataCatalog_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_privacy_dlp_v2_Action_PublishFindingsToCloudDataCatalog_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -643,14 +647,14 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { java.lang.String[] descriptorData = { "\n\037google/privacy/dlp/v2/dlp.proto\022\025googl" + "e.privacy.dlp.v2\032\034google/api/annotations" - + ".proto\032\027google/api/client.proto\032#google/" - + "privacy/dlp/v2/storage.proto\032\036google/pro" - + "tobuf/duration.proto\032\033google/protobuf/em" - + "pty.proto\032 google/protobuf/field_mask.pr" - + "oto\032\037google/protobuf/timestamp.proto\032\027go" - + "ogle/rpc/status.proto\032\026google/type/date." - + "proto\032\033google/type/dayofweek.proto\032\033goog" - + "le/type/timeofday.proto\"G\n\020ExcludeInfoTy" + + ".proto\032#google/privacy/dlp/v2/storage.pr" + + "oto\032\036google/protobuf/duration.proto\032\033goo" + + "gle/protobuf/empty.proto\032 google/protobu" + + "f/field_mask.proto\032\037google/protobuf/time" + + "stamp.proto\032\027google/rpc/status.proto\032\026go" + + "ogle/type/date.proto\032\033google/type/dayofw" + + "eek.proto\032\033google/type/timeofday.proto\032\027" + + "google/api/client.proto\"G\n\020ExcludeInfoTy" + "pes\0223\n\ninfo_types\030\001 \003(\0132\037.google.privacy" + ".dlp.v2.InfoType\"\240\002\n\rExclusionRule\022F\n\ndi" + "ctionary\030\001 \001(\01320.google.privacy.dlp.v2.C" @@ -1163,307 +1167,312 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\n\010schedule\030\001 \001(\0132\037.google.privacy.dlp.v2" + ".ScheduleH\000B\t\n\007trigger\"H\n\006Status\022\026\n\022STAT" + "US_UNSPECIFIED\020\000\022\013\n\007HEALTHY\020\001\022\n\n\006PAUSED\020" - + "\002\022\r\n\tCANCELLED\020\003B\005\n\003job\"\356\003\n\006Action\022C\n\rsa" + + "\002\022\r\n\tCANCELLED\020\003B\005\n\003job\"\206\005\n\006Action\022C\n\rsa" + "ve_findings\030\001 \001(\0132*.google.privacy.dlp.v" + "2.Action.SaveFindingsH\000\022@\n\007pub_sub\030\002 \001(\013" + "2-.google.privacy.dlp.v2.Action.PublishT" + "oPubSubH\000\022U\n\027publish_summary_to_cscc\030\003 \001" + "(\01322.google.privacy.dlp.v2.Action.Publis" - + "hSummaryToCsccH\000\022V\n\027job_notification_ema" - + "ils\030\010 \001(\01323.google.privacy.dlp.v2.Action" - + ".JobNotificationEmailsH\000\032Q\n\014SaveFindings" - + "\022A\n\routput_config\030\001 \001(\0132*.google.privacy" - + ".dlp.v2.OutputStorageConfig\032 \n\017PublishTo" - + "PubSub\022\r\n\005topic\030\001 \001(\t\032\026\n\024PublishSummaryT" - + "oCscc\032\027\n\025JobNotificationEmailsB\010\n\006action" - + "\"\205\001\n\034CreateInspectTemplateRequest\022\016\n\006par" - + "ent\030\001 \001(\t\022@\n\020inspect_template\030\002 \001(\0132&.go" - + "ogle.privacy.dlp.v2.InspectTemplate\022\023\n\013t" - + "emplate_id\030\003 \001(\t\"\237\001\n\034UpdateInspectTempla" - + "teRequest\022\014\n\004name\030\001 \001(\t\022@\n\020inspect_templ" - + "ate\030\002 \001(\0132&.google.privacy.dlp.v2.Inspec" - + "tTemplate\022/\n\013update_mask\030\003 \001(\0132\032.google." - + "protobuf.FieldMask\")\n\031GetInspectTemplate" - + "Request\022\014\n\004name\030\001 \001(\t\"f\n\033ListInspectTemp" - + "latesRequest\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_tok" - + "en\030\002 \001(\t\022\021\n\tpage_size\030\003 \001(\005\022\020\n\010order_by\030" - + "\004 \001(\t\"z\n\034ListInspectTemplatesResponse\022A\n" - + "\021inspect_templates\030\001 \003(\0132&.google.privac" - + "y.dlp.v2.InspectTemplate\022\027\n\017next_page_to" - + "ken\030\002 \001(\t\",\n\034DeleteInspectTemplateReques" - + "t\022\014\n\004name\030\001 \001(\t\"u\n\027CreateJobTriggerReque" - + "st\022\016\n\006parent\030\001 \001(\t\0226\n\013job_trigger\030\002 \001(\0132" - + "!.google.privacy.dlp.v2.JobTrigger\022\022\n\ntr" - + "igger_id\030\003 \001(\t\")\n\031ActivateJobTriggerRequ" - + "est\022\014\n\004name\030\001 \001(\t\"\220\001\n\027UpdateJobTriggerRe" - + "quest\022\014\n\004name\030\001 \001(\t\0226\n\013job_trigger\030\002 \001(\013" - + "2!.google.privacy.dlp.v2.JobTrigger\022/\n\013u" - + "pdate_mask\030\003 \001(\0132\032.google.protobuf.Field" - + "Mask\"$\n\024GetJobTriggerRequest\022\014\n\004name\030\001 \001" - + "(\t\"\276\001\n\023CreateDlpJobRequest\022\016\n\006parent\030\001 \001" - + "(\t\022>\n\013inspect_job\030\002 \001(\0132\'.google.privacy" - + ".dlp.v2.InspectJobConfigH\000\022@\n\010risk_job\030\003" - + " \001(\0132,.google.privacy.dlp.v2.RiskAnalysi" - + "sJobConfigH\000\022\016\n\006job_id\030\004 \001(\tB\005\n\003job\"q\n\026L" - + "istJobTriggersRequest\022\016\n\006parent\030\001 \001(\t\022\022\n" - + "\npage_token\030\002 \001(\t\022\021\n\tpage_size\030\003 \001(\005\022\020\n\010" - + "order_by\030\004 \001(\t\022\016\n\006filter\030\005 \001(\t\"k\n\027ListJo" - + "bTriggersResponse\0227\n\014job_triggers\030\001 \003(\0132" - + "!.google.privacy.dlp.v2.JobTrigger\022\027\n\017ne" - + "xt_page_token\030\002 \001(\t\"\'\n\027DeleteJobTriggerR" - + "equest\022\014\n\004name\030\001 \001(\t\"\335\001\n\020InspectJobConfi" - + "g\022<\n\016storage_config\030\001 \001(\0132$.google.priva" - + "cy.dlp.v2.StorageConfig\022<\n\016inspect_confi" - + "g\030\002 \001(\0132$.google.privacy.dlp.v2.InspectC" - + "onfig\022\035\n\025inspect_template_name\030\003 \001(\t\022.\n\007" - + "actions\030\004 \003(\0132\035.google.privacy.dlp.v2.Ac" - + "tion\"\336\004\n\006DlpJob\022\014\n\004name\030\001 \001(\t\022/\n\004type\030\002 " - + "\001(\0162!.google.privacy.dlp.v2.DlpJobType\0225" - + "\n\005state\030\003 \001(\0162&.google.privacy.dlp.v2.Dl" - + "pJob.JobState\022K\n\014risk_details\030\004 \001(\01323.go" - + "ogle.privacy.dlp.v2.AnalyzeDataSourceRis" - + "kDetailsH\000\022J\n\017inspect_details\030\005 \001(\0132/.go" - + "ogle.privacy.dlp.v2.InspectDataSourceDet" - + "ailsH\000\022/\n\013create_time\030\006 \001(\0132\032.google.pro" - + "tobuf.Timestamp\022.\n\nstart_time\030\007 \001(\0132\032.go" - + "ogle.protobuf.Timestamp\022,\n\010end_time\030\010 \001(" - + "\0132\032.google.protobuf.Timestamp\022\030\n\020job_tri" - + "gger_name\030\n \001(\t\022,\n\006errors\030\013 \003(\0132\034.google" - + ".privacy.dlp.v2.Error\"c\n\010JobState\022\031\n\025JOB" - + "_STATE_UNSPECIFIED\020\000\022\013\n\007PENDING\020\001\022\013\n\007RUN" - + "NING\020\002\022\010\n\004DONE\020\003\022\014\n\010CANCELED\020\004\022\n\n\006FAILED" - + "\020\005B\t\n\007details\" \n\020GetDlpJobRequest\022\014\n\004nam" - + "e\030\001 \001(\t\"\236\001\n\022ListDlpJobsRequest\022\016\n\006parent" - + "\030\004 \001(\t\022\016\n\006filter\030\001 \001(\t\022\021\n\tpage_size\030\002 \001(" - + "\005\022\022\n\npage_token\030\003 \001(\t\022/\n\004type\030\005 \001(\0162!.go" - + "ogle.privacy.dlp.v2.DlpJobType\022\020\n\010order_" - + "by\030\006 \001(\t\"[\n\023ListDlpJobsResponse\022+\n\004jobs\030" - + "\001 \003(\0132\035.google.privacy.dlp.v2.DlpJob\022\027\n\017" - + "next_page_token\030\002 \001(\t\"#\n\023CancelDlpJobReq" - + "uest\022\014\n\004name\030\001 \001(\t\"#\n\023DeleteDlpJobReques" - + "t\022\014\n\004name\030\001 \001(\t\"\216\001\n\037CreateDeidentifyTemp" - + "lateRequest\022\016\n\006parent\030\001 \001(\t\022F\n\023deidentif" - + "y_template\030\002 \001(\0132).google.privacy.dlp.v2" - + ".DeidentifyTemplate\022\023\n\013template_id\030\003 \001(\t" - + "\"\250\001\n\037UpdateDeidentifyTemplateRequest\022\014\n\004" - + "name\030\001 \001(\t\022F\n\023deidentify_template\030\002 \001(\0132" - + ").google.privacy.dlp.v2.DeidentifyTempla" - + "te\022/\n\013update_mask\030\003 \001(\0132\032.google.protobu" - + "f.FieldMask\",\n\034GetDeidentifyTemplateRequ" - + "est\022\014\n\004name\030\001 \001(\t\"i\n\036ListDeidentifyTempl" - + "atesRequest\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_toke" - + "n\030\002 \001(\t\022\021\n\tpage_size\030\003 \001(\005\022\020\n\010order_by\030\004" - + " \001(\t\"\203\001\n\037ListDeidentifyTemplatesResponse" - + "\022G\n\024deidentify_templates\030\001 \003(\0132).google." - + "privacy.dlp.v2.DeidentifyTemplate\022\027\n\017nex" - + "t_page_token\030\002 \001(\t\"/\n\037DeleteDeidentifyTe" - + "mplateRequest\022\014\n\004name\030\001 \001(\t\"\364\001\n\033LargeCus" - + "tomDictionaryConfig\022<\n\013output_path\030\001 \001(\013" - + "2\'.google.privacy.dlp.v2.CloudStoragePat" - + "h\022L\n\026cloud_storage_file_set\030\002 \001(\0132*.goog" - + "le.privacy.dlp.v2.CloudStorageFileSetH\000\022" - + "?\n\017big_query_field\030\003 \001(\0132$.google.privac" - + "y.dlp.v2.BigQueryFieldH\000B\010\n\006source\"8\n\032La" - + "rgeCustomDictionaryStats\022\032\n\022approx_num_p" - + "hrases\030\001 \001(\003\"\240\001\n\024StoredInfoTypeConfig\022\024\n" - + "\014display_name\030\001 \001(\t\022\023\n\013description\030\002 \001(\t" - + "\022U\n\027large_custom_dictionary\030\003 \001(\01322.goog" - + "le.privacy.dlp.v2.LargeCustomDictionaryC" - + "onfigH\000B\006\n\004type\"s\n\023StoredInfoTypeStats\022T" - + "\n\027large_custom_dictionary\030\001 \001(\01321.google" - + ".privacy.dlp.v2.LargeCustomDictionarySta" - + "tsH\000B\006\n\004type\"\251\002\n\025StoredInfoTypeVersion\022;" - + "\n\006config\030\001 \001(\0132+.google.privacy.dlp.v2.S" - + "toredInfoTypeConfig\022/\n\013create_time\030\002 \001(\013" - + "2\032.google.protobuf.Timestamp\0229\n\005state\030\003 " - + "\001(\0162*.google.privacy.dlp.v2.StoredInfoTy" - + "peState\022,\n\006errors\030\004 \003(\0132\034.google.privacy" - + ".dlp.v2.Error\0229\n\005stats\030\005 \001(\0132*.google.pr" - + "ivacy.dlp.v2.StoredInfoTypeStats\"\255\001\n\016Sto" - + "redInfoType\022\014\n\004name\030\001 \001(\t\022E\n\017current_ver" - + "sion\030\002 \001(\0132,.google.privacy.dlp.v2.Store" - + "dInfoTypeVersion\022F\n\020pending_versions\030\003 \003" + + "hSummaryToCsccH\000\022q\n&publish_findings_to_" + + "cloud_data_catalog\030\005 \001(\0132?.google.privac" + + "y.dlp.v2.Action.PublishFindingsToCloudDa" + + "taCatalogH\000\022V\n\027job_notification_emails\030\010" + + " \001(\01323.google.privacy.dlp.v2.Action.JobN" + + "otificationEmailsH\000\032Q\n\014SaveFindings\022A\n\ro" + + "utput_config\030\001 \001(\0132*.google.privacy.dlp." + + "v2.OutputStorageConfig\032 \n\017PublishToPubSu" + + "b\022\r\n\005topic\030\001 \001(\t\032\026\n\024PublishSummaryToCscc" + + "\032#\n!PublishFindingsToCloudDataCatalog\032\027\n" + + "\025JobNotificationEmailsB\010\n\006action\"\205\001\n\034Cre" + + "ateInspectTemplateRequest\022\016\n\006parent\030\001 \001(" + + "\t\022@\n\020inspect_template\030\002 \001(\0132&.google.pri" + + "vacy.dlp.v2.InspectTemplate\022\023\n\013template_" + + "id\030\003 \001(\t\"\237\001\n\034UpdateInspectTemplateReques" + + "t\022\014\n\004name\030\001 \001(\t\022@\n\020inspect_template\030\002 \001(" + + "\0132&.google.privacy.dlp.v2.InspectTemplat" + + "e\022/\n\013update_mask\030\003 \001(\0132\032.google.protobuf" + + ".FieldMask\")\n\031GetInspectTemplateRequest\022" + + "\014\n\004name\030\001 \001(\t\"f\n\033ListInspectTemplatesReq" + + "uest\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_token\030\002 \001(\t" + + "\022\021\n\tpage_size\030\003 \001(\005\022\020\n\010order_by\030\004 \001(\t\"z\n" + + "\034ListInspectTemplatesResponse\022A\n\021inspect" + + "_templates\030\001 \003(\0132&.google.privacy.dlp.v2" + + ".InspectTemplate\022\027\n\017next_page_token\030\002 \001(" + + "\t\",\n\034DeleteInspectTemplateRequest\022\014\n\004nam" + + "e\030\001 \001(\t\"u\n\027CreateJobTriggerRequest\022\016\n\006pa" + + "rent\030\001 \001(\t\0226\n\013job_trigger\030\002 \001(\0132!.google" + + ".privacy.dlp.v2.JobTrigger\022\022\n\ntrigger_id" + + "\030\003 \001(\t\")\n\031ActivateJobTriggerRequest\022\014\n\004n" + + "ame\030\001 \001(\t\"\220\001\n\027UpdateJobTriggerRequest\022\014\n" + + "\004name\030\001 \001(\t\0226\n\013job_trigger\030\002 \001(\0132!.googl" + + "e.privacy.dlp.v2.JobTrigger\022/\n\013update_ma" + + "sk\030\003 \001(\0132\032.google.protobuf.FieldMask\"$\n\024" + + "GetJobTriggerRequest\022\014\n\004name\030\001 \001(\t\"\276\001\n\023C" + + "reateDlpJobRequest\022\016\n\006parent\030\001 \001(\t\022>\n\013in" + + "spect_job\030\002 \001(\0132\'.google.privacy.dlp.v2." + + "InspectJobConfigH\000\022@\n\010risk_job\030\003 \001(\0132,.g" + + "oogle.privacy.dlp.v2.RiskAnalysisJobConf" + + "igH\000\022\016\n\006job_id\030\004 \001(\tB\005\n\003job\"q\n\026ListJobTr" + + "iggersRequest\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_to" + + "ken\030\002 \001(\t\022\021\n\tpage_size\030\003 \001(\005\022\020\n\010order_by" + + "\030\004 \001(\t\022\016\n\006filter\030\005 \001(\t\"k\n\027ListJobTrigger" + + "sResponse\0227\n\014job_triggers\030\001 \003(\0132!.google" + + ".privacy.dlp.v2.JobTrigger\022\027\n\017next_page_" + + "token\030\002 \001(\t\"\'\n\027DeleteJobTriggerRequest\022\014" + + "\n\004name\030\001 \001(\t\"\335\001\n\020InspectJobConfig\022<\n\016sto" + + "rage_config\030\001 \001(\0132$.google.privacy.dlp.v" + + "2.StorageConfig\022<\n\016inspect_config\030\002 \001(\0132" + + "$.google.privacy.dlp.v2.InspectConfig\022\035\n" + + "\025inspect_template_name\030\003 \001(\t\022.\n\007actions\030" + + "\004 \003(\0132\035.google.privacy.dlp.v2.Action\"\336\004\n" + + "\006DlpJob\022\014\n\004name\030\001 \001(\t\022/\n\004type\030\002 \001(\0162!.go" + + "ogle.privacy.dlp.v2.DlpJobType\0225\n\005state\030" + + "\003 \001(\0162&.google.privacy.dlp.v2.DlpJob.Job" + + "State\022K\n\014risk_details\030\004 \001(\01323.google.pri" + + "vacy.dlp.v2.AnalyzeDataSourceRiskDetails" + + "H\000\022J\n\017inspect_details\030\005 \001(\0132/.google.pri" + + "vacy.dlp.v2.InspectDataSourceDetailsH\000\022/" + + "\n\013create_time\030\006 \001(\0132\032.google.protobuf.Ti" + + "mestamp\022.\n\nstart_time\030\007 \001(\0132\032.google.pro" + + "tobuf.Timestamp\022,\n\010end_time\030\010 \001(\0132\032.goog" + + "le.protobuf.Timestamp\022\030\n\020job_trigger_nam" + + "e\030\n \001(\t\022,\n\006errors\030\013 \003(\0132\034.google.privacy" + + ".dlp.v2.Error\"c\n\010JobState\022\031\n\025JOB_STATE_U" + + "NSPECIFIED\020\000\022\013\n\007PENDING\020\001\022\013\n\007RUNNING\020\002\022\010" + + "\n\004DONE\020\003\022\014\n\010CANCELED\020\004\022\n\n\006FAILED\020\005B\t\n\007de" + + "tails\" \n\020GetDlpJobRequest\022\014\n\004name\030\001 \001(\t\"" + + "\236\001\n\022ListDlpJobsRequest\022\016\n\006parent\030\004 \001(\t\022\016" + + "\n\006filter\030\001 \001(\t\022\021\n\tpage_size\030\002 \001(\005\022\022\n\npag" + + "e_token\030\003 \001(\t\022/\n\004type\030\005 \001(\0162!.google.pri" + + "vacy.dlp.v2.DlpJobType\022\020\n\010order_by\030\006 \001(\t" + + "\"[\n\023ListDlpJobsResponse\022+\n\004jobs\030\001 \003(\0132\035." + + "google.privacy.dlp.v2.DlpJob\022\027\n\017next_pag" + + "e_token\030\002 \001(\t\"#\n\023CancelDlpJobRequest\022\014\n\004" + + "name\030\001 \001(\t\"#\n\023DeleteDlpJobRequest\022\014\n\004nam" + + "e\030\001 \001(\t\"\216\001\n\037CreateDeidentifyTemplateRequ" + + "est\022\016\n\006parent\030\001 \001(\t\022F\n\023deidentify_templa" + + "te\030\002 \001(\0132).google.privacy.dlp.v2.Deident" + + "ifyTemplate\022\023\n\013template_id\030\003 \001(\t\"\250\001\n\037Upd" + + "ateDeidentifyTemplateRequest\022\014\n\004name\030\001 \001" + + "(\t\022F\n\023deidentify_template\030\002 \001(\0132).google" + + ".privacy.dlp.v2.DeidentifyTemplate\022/\n\013up" + + "date_mask\030\003 \001(\0132\032.google.protobuf.FieldM" + + "ask\",\n\034GetDeidentifyTemplateRequest\022\014\n\004n" + + "ame\030\001 \001(\t\"i\n\036ListDeidentifyTemplatesRequ" + + "est\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_token\030\002 \001(\t\022" + + "\021\n\tpage_size\030\003 \001(\005\022\020\n\010order_by\030\004 \001(\t\"\203\001\n" + + "\037ListDeidentifyTemplatesResponse\022G\n\024deid" + + "entify_templates\030\001 \003(\0132).google.privacy." + + "dlp.v2.DeidentifyTemplate\022\027\n\017next_page_t" + + "oken\030\002 \001(\t\"/\n\037DeleteDeidentifyTemplateRe" + + "quest\022\014\n\004name\030\001 \001(\t\"\364\001\n\033LargeCustomDicti" + + "onaryConfig\022<\n\013output_path\030\001 \001(\0132\'.googl" + + "e.privacy.dlp.v2.CloudStoragePath\022L\n\026clo" + + "ud_storage_file_set\030\002 \001(\0132*.google.priva" + + "cy.dlp.v2.CloudStorageFileSetH\000\022?\n\017big_q" + + "uery_field\030\003 \001(\0132$.google.privacy.dlp.v2" + + ".BigQueryFieldH\000B\010\n\006source\"8\n\032LargeCusto" + + "mDictionaryStats\022\032\n\022approx_num_phrases\030\001" + + " \001(\003\"\240\001\n\024StoredInfoTypeConfig\022\024\n\014display" + + "_name\030\001 \001(\t\022\023\n\013description\030\002 \001(\t\022U\n\027larg" + + "e_custom_dictionary\030\003 \001(\01322.google.priva" + + "cy.dlp.v2.LargeCustomDictionaryConfigH\000B" + + "\006\n\004type\"s\n\023StoredInfoTypeStats\022T\n\027large_" + + "custom_dictionary\030\001 \001(\01321.google.privacy" + + ".dlp.v2.LargeCustomDictionaryStatsH\000B\006\n\004" + + "type\"\251\002\n\025StoredInfoTypeVersion\022;\n\006config" + + "\030\001 \001(\0132+.google.privacy.dlp.v2.StoredInf" + + "oTypeConfig\022/\n\013create_time\030\002 \001(\0132\032.googl" + + "e.protobuf.Timestamp\0229\n\005state\030\003 \001(\0162*.go" + + "ogle.privacy.dlp.v2.StoredInfoTypeState\022" + + ",\n\006errors\030\004 \003(\0132\034.google.privacy.dlp.v2." + + "Error\0229\n\005stats\030\005 \001(\0132*.google.privacy.dl" + + "p.v2.StoredInfoTypeStats\"\255\001\n\016StoredInfoT" + + "ype\022\014\n\004name\030\001 \001(\t\022E\n\017current_version\030\002 \001" + "(\0132,.google.privacy.dlp.v2.StoredInfoTyp" - + "eVersion\"\207\001\n\033CreateStoredInfoTypeRequest" - + "\022\016\n\006parent\030\001 \001(\t\022;\n\006config\030\002 \001(\0132+.googl" - + "e.privacy.dlp.v2.StoredInfoTypeConfig\022\033\n" - + "\023stored_info_type_id\030\003 \001(\t\"\231\001\n\033UpdateSto" - + "redInfoTypeRequest\022\014\n\004name\030\001 \001(\t\022;\n\006conf" - + "ig\030\002 \001(\0132+.google.privacy.dlp.v2.StoredI" - + "nfoTypeConfig\022/\n\013update_mask\030\003 \001(\0132\032.goo" - + "gle.protobuf.FieldMask\"(\n\030GetStoredInfoT" - + "ypeRequest\022\014\n\004name\030\001 \001(\t\"e\n\032ListStoredIn" - + "foTypesRequest\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_t" - + "oken\030\002 \001(\t\022\021\n\tpage_size\030\003 \001(\005\022\020\n\010order_b" - + "y\030\004 \001(\t\"x\n\033ListStoredInfoTypesResponse\022@" - + "\n\021stored_info_types\030\001 \003(\0132%.google.priva" - + "cy.dlp.v2.StoredInfoType\022\027\n\017next_page_to" - + "ken\030\002 \001(\t\"+\n\033DeleteStoredInfoTypeRequest" - + "\022\014\n\004name\030\001 \001(\t*M\n\rContentOption\022\027\n\023CONTE" - + "NT_UNSPECIFIED\020\000\022\020\n\014CONTENT_TEXT\020\001\022\021\n\rCO" - + "NTENT_IMAGE\020\002*\215\001\n\014MatchingType\022\035\n\031MATCHI" - + "NG_TYPE_UNSPECIFIED\020\000\022\034\n\030MATCHING_TYPE_F" - + "ULL_MATCH\020\001\022\037\n\033MATCHING_TYPE_PARTIAL_MAT" - + "CH\020\002\022\037\n\033MATCHING_TYPE_INVERSE_MATCH\020\003*P\n" - + "\023InfoTypeSupportedBy\022\031\n\025ENUM_TYPE_UNSPEC" - + "IFIED\020\000\022\013\n\007INSPECT\020\001\022\021\n\rRISK_ANALYSIS\020\002*" - + "\273\001\n\022RelationalOperator\022#\n\037RELATIONAL_OPE" - + "RATOR_UNSPECIFIED\020\000\022\014\n\010EQUAL_TO\020\001\022\020\n\014NOT" - + "_EQUAL_TO\020\002\022\020\n\014GREATER_THAN\020\003\022\r\n\tLESS_TH" - + "AN\020\004\022\032\n\026GREATER_THAN_OR_EQUALS\020\005\022\027\n\023LESS" - + "_THAN_OR_EQUALS\020\006\022\n\n\006EXISTS\020\007*R\n\nDlpJobT" - + "ype\022\034\n\030DLP_JOB_TYPE_UNSPECIFIED\020\000\022\017\n\013INS" - + "PECT_JOB\020\001\022\025\n\021RISK_ANALYSIS_JOB\020\002*n\n\023Sto" - + "redInfoTypeState\022&\n\"STORED_INFO_TYPE_STA" - + "TE_UNSPECIFIED\020\000\022\013\n\007PENDING\020\001\022\t\n\005READY\020\002" - + "\022\n\n\006FAILED\020\003\022\013\n\007INVALID\020\0042\341,\n\nDlpService" - + "\022\241\001\n\016InspectContent\022,.google.privacy.dlp" - + ".v2.InspectContentRequest\032-.google.priva" - + "cy.dlp.v2.InspectContentResponse\"2\202\323\344\223\002," - + "\"\'/v2/{parent=projects/*}/content:inspec" - + "t:\001*\022\225\001\n\013RedactImage\022).google.privacy.dl" - + "p.v2.RedactImageRequest\032*.google.privacy" - + ".dlp.v2.RedactImageResponse\"/\202\323\344\223\002)\"$/v2" - + "/{parent=projects/*}/image:redact:\001*\022\255\001\n" - + "\021DeidentifyContent\022/.google.privacy.dlp." - + "v2.DeidentifyContentRequest\0320.google.pri" - + "vacy.dlp.v2.DeidentifyContentResponse\"5\202" - + "\323\344\223\002/\"*/v2/{parent=projects/*}/content:d" - + "eidentify:\001*\022\255\001\n\021ReidentifyContent\022/.goo" - + "gle.privacy.dlp.v2.ReidentifyContentRequ" - + "est\0320.google.privacy.dlp.v2.ReidentifyCo" - + "ntentResponse\"5\202\323\344\223\002/\"*/v2/{parent=proje" - + "cts/*}/content:reidentify:\001*\022\201\001\n\rListInf" - + "oTypes\022+.google.privacy.dlp.v2.ListInfoT" - + "ypesRequest\032,.google.privacy.dlp.v2.List" - + "InfoTypesResponse\"\025\202\323\344\223\002\017\022\r/v2/infoTypes" - + "\022\335\001\n\025CreateInspectTemplate\0223.google.priv" - + "acy.dlp.v2.CreateInspectTemplateRequest\032" - + "&.google.privacy.dlp.v2.InspectTemplate\"" - + "g\202\323\344\223\002a\"-/v2/{parent=organizations/*}/in" - + "spectTemplates:\001*Z-\"(/v2/{parent=project" - + "s/*}/inspectTemplates:\001*\022\335\001\n\025UpdateInspe" - + "ctTemplate\0223.google.privacy.dlp.v2.Updat" - + "eInspectTemplateRequest\032&.google.privacy" - + ".dlp.v2.InspectTemplate\"g\202\323\344\223\002a2-/v2/{na" - + "me=organizations/*/inspectTemplates/*}:\001" - + "*Z-2(/v2/{name=projects/*/inspectTemplat" - + "es/*}:\001*\022\321\001\n\022GetInspectTemplate\0220.google" - + ".privacy.dlp.v2.GetInspectTemplateReques" - + "t\032&.google.privacy.dlp.v2.InspectTemplat" - + "e\"a\202\323\344\223\002[\022-/v2/{name=organizations/*/ins" - + "pectTemplates/*}Z*\022(/v2/{name=projects/*" - + "/inspectTemplates/*}\022\342\001\n\024ListInspectTemp" - + "lates\0222.google.privacy.dlp.v2.ListInspec" - + "tTemplatesRequest\0323.google.privacy.dlp.v" - + "2.ListInspectTemplatesResponse\"a\202\323\344\223\002[\022-" - + "/v2/{parent=organizations/*}/inspectTemp" - + "latesZ*\022(/v2/{parent=projects/*}/inspect" - + "Templates\022\307\001\n\025DeleteInspectTemplate\0223.go" - + "ogle.privacy.dlp.v2.DeleteInspectTemplat" - + "eRequest\032\026.google.protobuf.Empty\"a\202\323\344\223\002[" - + "*-/v2/{name=organizations/*/inspectTempl" - + "ates/*}Z**(/v2/{name=projects/*/inspectT" - + "emplates/*}\022\354\001\n\030CreateDeidentifyTemplate" - + "\0226.google.privacy.dlp.v2.CreateDeidentif" - + "yTemplateRequest\032).google.privacy.dlp.v2" - + ".DeidentifyTemplate\"m\202\323\344\223\002g\"0/v2/{parent" - + "=organizations/*}/deidentifyTemplates:\001*" - + "Z0\"+/v2/{parent=projects/*}/deidentifyTe" - + "mplates:\001*\022\354\001\n\030UpdateDeidentifyTemplate\022" - + "6.google.privacy.dlp.v2.UpdateDeidentify" - + "TemplateRequest\032).google.privacy.dlp.v2." - + "DeidentifyTemplate\"m\202\323\344\223\002g20/v2/{name=or" - + "ganizations/*/deidentifyTemplates/*}:\001*Z" - + "02+/v2/{name=projects/*/deidentifyTempla" - + "tes/*}:\001*\022\340\001\n\025GetDeidentifyTemplate\0223.go" - + "ogle.privacy.dlp.v2.GetDeidentifyTemplat" + + "eVersion\022F\n\020pending_versions\030\003 \003(\0132,.goo" + + "gle.privacy.dlp.v2.StoredInfoTypeVersion" + + "\"\207\001\n\033CreateStoredInfoTypeRequest\022\016\n\006pare" + + "nt\030\001 \001(\t\022;\n\006config\030\002 \001(\0132+.google.privac" + + "y.dlp.v2.StoredInfoTypeConfig\022\033\n\023stored_" + + "info_type_id\030\003 \001(\t\"\231\001\n\033UpdateStoredInfoT" + + "ypeRequest\022\014\n\004name\030\001 \001(\t\022;\n\006config\030\002 \001(\013" + + "2+.google.privacy.dlp.v2.StoredInfoTypeC" + + "onfig\022/\n\013update_mask\030\003 \001(\0132\032.google.prot" + + "obuf.FieldMask\"(\n\030GetStoredInfoTypeReque" + + "st\022\014\n\004name\030\001 \001(\t\"e\n\032ListStoredInfoTypesR" + + "equest\022\016\n\006parent\030\001 \001(\t\022\022\n\npage_token\030\002 \001" + + "(\t\022\021\n\tpage_size\030\003 \001(\005\022\020\n\010order_by\030\004 \001(\t\"" + + "x\n\033ListStoredInfoTypesResponse\022@\n\021stored" + + "_info_types\030\001 \003(\0132%.google.privacy.dlp.v" + + "2.StoredInfoType\022\027\n\017next_page_token\030\002 \001(" + + "\t\"+\n\033DeleteStoredInfoTypeRequest\022\014\n\004name" + + "\030\001 \001(\t*M\n\rContentOption\022\027\n\023CONTENT_UNSPE" + + "CIFIED\020\000\022\020\n\014CONTENT_TEXT\020\001\022\021\n\rCONTENT_IM" + + "AGE\020\002*\215\001\n\014MatchingType\022\035\n\031MATCHING_TYPE_" + + "UNSPECIFIED\020\000\022\034\n\030MATCHING_TYPE_FULL_MATC" + + "H\020\001\022\037\n\033MATCHING_TYPE_PARTIAL_MATCH\020\002\022\037\n\033" + + "MATCHING_TYPE_INVERSE_MATCH\020\003*P\n\023InfoTyp" + + "eSupportedBy\022\031\n\025ENUM_TYPE_UNSPECIFIED\020\000\022" + + "\013\n\007INSPECT\020\001\022\021\n\rRISK_ANALYSIS\020\002*\273\001\n\022Rela" + + "tionalOperator\022#\n\037RELATIONAL_OPERATOR_UN" + + "SPECIFIED\020\000\022\014\n\010EQUAL_TO\020\001\022\020\n\014NOT_EQUAL_T" + + "O\020\002\022\020\n\014GREATER_THAN\020\003\022\r\n\tLESS_THAN\020\004\022\032\n\026" + + "GREATER_THAN_OR_EQUALS\020\005\022\027\n\023LESS_THAN_OR" + + "_EQUALS\020\006\022\n\n\006EXISTS\020\007*R\n\nDlpJobType\022\034\n\030D" + + "LP_JOB_TYPE_UNSPECIFIED\020\000\022\017\n\013INSPECT_JOB" + + "\020\001\022\025\n\021RISK_ANALYSIS_JOB\020\002*n\n\023StoredInfoT" + + "ypeState\022&\n\"STORED_INFO_TYPE_STATE_UNSPE" + + "CIFIED\020\000\022\013\n\007PENDING\020\001\022\t\n\005READY\020\002\022\n\n\006FAIL" + + "ED\020\003\022\013\n\007INVALID\020\0042\222-\n\nDlpService\022\241\001\n\016Ins" + + "pectContent\022,.google.privacy.dlp.v2.Insp" + + "ectContentRequest\032-.google.privacy.dlp.v" + + "2.InspectContentResponse\"2\202\323\344\223\002,\"\'/v2/{p" + + "arent=projects/*}/content:inspect:\001*\022\225\001\n" + + "\013RedactImage\022).google.privacy.dlp.v2.Red" + + "actImageRequest\032*.google.privacy.dlp.v2." + + "RedactImageResponse\"/\202\323\344\223\002)\"$/v2/{parent" + + "=projects/*}/image:redact:\001*\022\255\001\n\021Deident" + + "ifyContent\022/.google.privacy.dlp.v2.Deide" + + "ntifyContentRequest\0320.google.privacy.dlp" + + ".v2.DeidentifyContentResponse\"5\202\323\344\223\002/\"*/" + + "v2/{parent=projects/*}/content:deidentif" + + "y:\001*\022\255\001\n\021ReidentifyContent\022/.google.priv" + + "acy.dlp.v2.ReidentifyContentRequest\0320.go" + + "ogle.privacy.dlp.v2.ReidentifyContentRes" + + "ponse\"5\202\323\344\223\002/\"*/v2/{parent=projects/*}/c" + + "ontent:reidentify:\001*\022\201\001\n\rListInfoTypes\022+" + + ".google.privacy.dlp.v2.ListInfoTypesRequ" + + "est\032,.google.privacy.dlp.v2.ListInfoType" + + "sResponse\"\025\202\323\344\223\002\017\022\r/v2/infoTypes\022\335\001\n\025Cre" + + "ateInspectTemplate\0223.google.privacy.dlp." + + "v2.CreateInspectTemplateRequest\032&.google" + + ".privacy.dlp.v2.InspectTemplate\"g\202\323\344\223\002a\"" + + "-/v2/{parent=organizations/*}/inspectTem" + + "plates:\001*Z-\"(/v2/{parent=projects/*}/ins" + + "pectTemplates:\001*\022\335\001\n\025UpdateInspectTempla" + + "te\0223.google.privacy.dlp.v2.UpdateInspect" + + "TemplateRequest\032&.google.privacy.dlp.v2." + + "InspectTemplate\"g\202\323\344\223\002a2-/v2/{name=organ" + + "izations/*/inspectTemplates/*}:\001*Z-2(/v2" + + "/{name=projects/*/inspectTemplates/*}:\001*" + + "\022\321\001\n\022GetInspectTemplate\0220.google.privacy" + + ".dlp.v2.GetInspectTemplateRequest\032&.goog" + + "le.privacy.dlp.v2.InspectTemplate\"a\202\323\344\223\002" + + "[\022-/v2/{name=organizations/*/inspectTemp" + + "lates/*}Z*\022(/v2/{name=projects/*/inspect" + + "Templates/*}\022\342\001\n\024ListInspectTemplates\0222." + + "google.privacy.dlp.v2.ListInspectTemplat" + + "esRequest\0323.google.privacy.dlp.v2.ListIn" + + "spectTemplatesResponse\"a\202\323\344\223\002[\022-/v2/{par" + + "ent=organizations/*}/inspectTemplatesZ*\022" + + "(/v2/{parent=projects/*}/inspectTemplate" + + "s\022\307\001\n\025DeleteInspectTemplate\0223.google.pri" + + "vacy.dlp.v2.DeleteInspectTemplateRequest" + + "\032\026.google.protobuf.Empty\"a\202\323\344\223\002[*-/v2/{n" + + "ame=organizations/*/inspectTemplates/*}Z" + + "**(/v2/{name=projects/*/inspectTemplates" + + "/*}\022\354\001\n\030CreateDeidentifyTemplate\0226.googl" + + "e.privacy.dlp.v2.CreateDeidentifyTemplat" + "eRequest\032).google.privacy.dlp.v2.Deident" - + "ifyTemplate\"g\202\323\344\223\002a\0220/v2/{name=organizat" - + "ions/*/deidentifyTemplates/*}Z-\022+/v2/{na" - + "me=projects/*/deidentifyTemplates/*}\022\361\001\n" - + "\027ListDeidentifyTemplates\0225.google.privac" - + "y.dlp.v2.ListDeidentifyTemplatesRequest\032" - + "6.google.privacy.dlp.v2.ListDeidentifyTe" - + "mplatesResponse\"g\202\323\344\223\002a\0220/v2/{parent=org" - + "anizations/*}/deidentifyTemplatesZ-\022+/v2" - + "/{parent=projects/*}/deidentifyTemplates" - + "\022\323\001\n\030DeleteDeidentifyTemplate\0226.google.p" - + "rivacy.dlp.v2.DeleteDeidentifyTemplateRe" - + "quest\032\026.google.protobuf.Empty\"g\202\323\344\223\002a*0/" - + "v2/{name=organizations/*/deidentifyTempl" - + "ates/*}Z-*+/v2/{name=projects/*/deidenti" - + "fyTemplates/*}\022\225\001\n\020CreateJobTrigger\022..go" - + "ogle.privacy.dlp.v2.CreateJobTriggerRequ" - + "est\032!.google.privacy.dlp.v2.JobTrigger\"." - + "\202\323\344\223\002(\"#/v2/{parent=projects/*}/jobTrigg" - + "ers:\001*\022\225\001\n\020UpdateJobTrigger\022..google.pri" - + "vacy.dlp.v2.UpdateJobTriggerRequest\032!.go" - + "ogle.privacy.dlp.v2.JobTrigger\".\202\323\344\223\002(2#" - + "/v2/{name=projects/*/jobTriggers/*}:\001*\022\214" - + "\001\n\rGetJobTrigger\022+.google.privacy.dlp.v2" - + ".GetJobTriggerRequest\032!.google.privacy.d" - + "lp.v2.JobTrigger\"+\202\323\344\223\002%\022#/v2/{name=proj" - + "ects/*/jobTriggers/*}\022\235\001\n\017ListJobTrigger" - + "s\022-.google.privacy.dlp.v2.ListJobTrigger" - + "sRequest\032..google.privacy.dlp.v2.ListJob" - + "TriggersResponse\"+\202\323\344\223\002%\022#/v2/{parent=pr" - + "ojects/*}/jobTriggers\022\207\001\n\020DeleteJobTrigg" - + "er\022..google.privacy.dlp.v2.DeleteJobTrig" - + "gerRequest\032\026.google.protobuf.Empty\"+\202\323\344\223" - + "\002%*#/v2/{name=projects/*/jobTriggers/*}\022" - + "\236\001\n\022ActivateJobTrigger\0220.google.privacy." - + "dlp.v2.ActivateJobTriggerRequest\032\035.googl" - + "e.privacy.dlp.v2.DlpJob\"7\202\323\344\223\0021\",/v2/{na" - + "me=projects/*/jobTriggers/*}:activate:\001*" - + "\022\205\001\n\014CreateDlpJob\022*.google.privacy.dlp.v" - + "2.CreateDlpJobRequest\032\035.google.privacy.d" - + "lp.v2.DlpJob\"*\202\323\344\223\002$\"\037/v2/{parent=projec" - + "ts/*}/dlpJobs:\001*\022\215\001\n\013ListDlpJobs\022).googl" - + "e.privacy.dlp.v2.ListDlpJobsRequest\032*.go" - + "ogle.privacy.dlp.v2.ListDlpJobsResponse\"" - + "\'\202\323\344\223\002!\022\037/v2/{parent=projects/*}/dlpJobs" - + "\022|\n\tGetDlpJob\022\'.google.privacy.dlp.v2.Ge" - + "tDlpJobRequest\032\035.google.privacy.dlp.v2.D" - + "lpJob\"\'\202\323\344\223\002!\022\037/v2/{name=projects/*/dlpJ" - + "obs/*}\022{\n\014DeleteDlpJob\022*.google.privacy." - + "dlp.v2.DeleteDlpJobRequest\032\026.google.prot" - + "obuf.Empty\"\'\202\323\344\223\002!*\037/v2/{name=projects/*" - + "/dlpJobs/*}\022\205\001\n\014CancelDlpJob\022*.google.pr" - + "ivacy.dlp.v2.CancelDlpJobRequest\032\026.googl" - + "e.protobuf.Empty\"1\202\323\344\223\002+\"&/v2/{name=proj" - + "ects/*/dlpJobs/*}:cancel:\001*\022\330\001\n\024CreateSt" - + "oredInfoType\0222.google.privacy.dlp.v2.Cre" - + "ateStoredInfoTypeRequest\032%.google.privac" - + "y.dlp.v2.StoredInfoType\"e\202\323\344\223\002_\",/v2/{pa" - + "rent=organizations/*}/storedInfoTypes:\001*" - + "Z,\"\'/v2/{parent=projects/*}/storedInfoTy" - + "pes:\001*\022\330\001\n\024UpdateStoredInfoType\0222.google" - + ".privacy.dlp.v2.UpdateStoredInfoTypeRequ" - + "est\032%.google.privacy.dlp.v2.StoredInfoTy", - "pe\"e\202\323\344\223\002_2,/v2/{name=organizations/*/st" - + "oredInfoTypes/*}:\001*Z,2\'/v2/{name=project" - + "s/*/storedInfoTypes/*}:\001*\022\314\001\n\021GetStoredI" - + "nfoType\022/.google.privacy.dlp.v2.GetStore" + + "ifyTemplate\"m\202\323\344\223\002g\"0/v2/{parent=organiz" + + "ations/*}/deidentifyTemplates:\001*Z0\"+/v2/" + + "{parent=projects/*}/deidentifyTemplates:" + + "\001*\022\354\001\n\030UpdateDeidentifyTemplate\0226.google" + + ".privacy.dlp.v2.UpdateDeidentifyTemplate" + + "Request\032).google.privacy.dlp.v2.Deidenti" + + "fyTemplate\"m\202\323\344\223\002g20/v2/{name=organizati" + + "ons/*/deidentifyTemplates/*}:\001*Z02+/v2/{" + + "name=projects/*/deidentifyTemplates/*}:\001" + + "*\022\340\001\n\025GetDeidentifyTemplate\0223.google.pri" + + "vacy.dlp.v2.GetDeidentifyTemplateRequest" + + "\032).google.privacy.dlp.v2.DeidentifyTempl" + + "ate\"g\202\323\344\223\002a\0220/v2/{name=organizations/*/d" + + "eidentifyTemplates/*}Z-\022+/v2/{name=proje" + + "cts/*/deidentifyTemplates/*}\022\361\001\n\027ListDei" + + "dentifyTemplates\0225.google.privacy.dlp.v2" + + ".ListDeidentifyTemplatesRequest\0326.google" + + ".privacy.dlp.v2.ListDeidentifyTemplatesR" + + "esponse\"g\202\323\344\223\002a\0220/v2/{parent=organizatio" + + "ns/*}/deidentifyTemplatesZ-\022+/v2/{parent" + + "=projects/*}/deidentifyTemplates\022\323\001\n\030Del" + + "eteDeidentifyTemplate\0226.google.privacy.d" + + "lp.v2.DeleteDeidentifyTemplateRequest\032\026." + + "google.protobuf.Empty\"g\202\323\344\223\002a*0/v2/{name" + + "=organizations/*/deidentifyTemplates/*}Z" + + "-*+/v2/{name=projects/*/deidentifyTempla" + + "tes/*}\022\225\001\n\020CreateJobTrigger\022..google.pri" + + "vacy.dlp.v2.CreateJobTriggerRequest\032!.go" + + "ogle.privacy.dlp.v2.JobTrigger\".\202\323\344\223\002(\"#" + + "/v2/{parent=projects/*}/jobTriggers:\001*\022\225" + + "\001\n\020UpdateJobTrigger\022..google.privacy.dlp" + + ".v2.UpdateJobTriggerRequest\032!.google.pri" + + "vacy.dlp.v2.JobTrigger\".\202\323\344\223\002(2#/v2/{nam" + + "e=projects/*/jobTriggers/*}:\001*\022\214\001\n\rGetJo" + + "bTrigger\022+.google.privacy.dlp.v2.GetJobT" + + "riggerRequest\032!.google.privacy.dlp.v2.Jo" + + "bTrigger\"+\202\323\344\223\002%\022#/v2/{name=projects/*/j" + + "obTriggers/*}\022\235\001\n\017ListJobTriggers\022-.goog" + + "le.privacy.dlp.v2.ListJobTriggersRequest" + + "\032..google.privacy.dlp.v2.ListJobTriggers" + + "Response\"+\202\323\344\223\002%\022#/v2/{parent=projects/*" + + "}/jobTriggers\022\207\001\n\020DeleteJobTrigger\022..goo" + + "gle.privacy.dlp.v2.DeleteJobTriggerReque" + + "st\032\026.google.protobuf.Empty\"+\202\323\344\223\002%*#/v2/" + + "{name=projects/*/jobTriggers/*}\022\236\001\n\022Acti" + + "vateJobTrigger\0220.google.privacy.dlp.v2.A" + + "ctivateJobTriggerRequest\032\035.google.privac" + + "y.dlp.v2.DlpJob\"7\202\323\344\223\0021\",/v2/{name=proje" + + "cts/*/jobTriggers/*}:activate:\001*\022\205\001\n\014Cre" + + "ateDlpJob\022*.google.privacy.dlp.v2.Create" + + "DlpJobRequest\032\035.google.privacy.dlp.v2.Dl" + + "pJob\"*\202\323\344\223\002$\"\037/v2/{parent=projects/*}/dl" + + "pJobs:\001*\022\215\001\n\013ListDlpJobs\022).google.privac" + + "y.dlp.v2.ListDlpJobsRequest\032*.google.pri" + + "vacy.dlp.v2.ListDlpJobsResponse\"\'\202\323\344\223\002!\022" + + "\037/v2/{parent=projects/*}/dlpJobs\022|\n\tGetD" + + "lpJob\022\'.google.privacy.dlp.v2.GetDlpJobR" + + "equest\032\035.google.privacy.dlp.v2.DlpJob\"\'\202" + + "\323\344\223\002!\022\037/v2/{name=projects/*/dlpJobs/*}\022{" + + "\n\014DeleteDlpJob\022*.google.privacy.dlp.v2.D" + + "eleteDlpJobRequest\032\026.google.protobuf.Emp" + + "ty\"\'\202\323\344\223\002!*\037/v2/{name=projects/*/dlpJobs" + + "/*}\022\205\001\n\014CancelDlpJob\022*.google.privacy.dl" + + "p.v2.CancelDlpJobRequest\032\026.google.protob" + + "uf.Empty\"1\202\323\344\223\002+\"&/v2/{name=projects/*/d" + + "lpJobs/*}:cancel:\001*\022\330\001\n\024CreateStoredInfo" + + "Type\0222.google.privacy.dlp.v2.CreateStore" + "dInfoTypeRequest\032%.google.privacy.dlp.v2" - + ".StoredInfoType\"_\202\323\344\223\002Y\022,/v2/{name=organ" - + "izations/*/storedInfoTypes/*}Z)\022\'/v2/{na" - + "me=projects/*/storedInfoTypes/*}\022\335\001\n\023Lis" - + "tStoredInfoTypes\0221.google.privacy.dlp.v2" - + ".ListStoredInfoTypesRequest\0322.google.pri" - + "vacy.dlp.v2.ListStoredInfoTypesResponse\"" - + "_\202\323\344\223\002Y\022,/v2/{parent=organizations/*}/st" - + "oredInfoTypesZ)\022\'/v2/{parent=projects/*}" - + "/storedInfoTypes\022\303\001\n\024DeleteStoredInfoTyp" - + "e\0222.google.privacy.dlp.v2.DeleteStoredIn" - + "foTypeRequest\032\026.google.protobuf.Empty\"_\202" - + "\323\344\223\002Y*,/v2/{name=organizations/*/storedI" - + "nfoTypes/*}Z)*\'/v2/{name=projects/*/stor" - + "edInfoTypes/*}\032\025\312A\022dlp.googleapis.comB\215\001" - + "\n\031com.google.privacy.dlp.v2B\010DlpProtoP\001Z" - + "8google.golang.org/genproto/googleapis/p" - + "rivacy/dlp/v2;dlp\252\002\023Google.Cloud.Dlp.V2\312" - + "\002\023Google\\Cloud\\Dlp\\V2b\006proto3" + + ".StoredInfoType\"e\202\323\344\223\002_\",/v2/{parent=org" + + "anizations/*}/storedInfoTypes:\001*Z,\"\'/v2/", + "{parent=projects/*}/storedInfoTypes:\001*\022\330" + + "\001\n\024UpdateStoredInfoType\0222.google.privacy" + + ".dlp.v2.UpdateStoredInfoTypeRequest\032%.go" + + "ogle.privacy.dlp.v2.StoredInfoType\"e\202\323\344\223" + + "\002_2,/v2/{name=organizations/*/storedInfo" + + "Types/*}:\001*Z,2\'/v2/{name=projects/*/stor" + + "edInfoTypes/*}:\001*\022\314\001\n\021GetStoredInfoType\022" + + "/.google.privacy.dlp.v2.GetStoredInfoTyp" + + "eRequest\032%.google.privacy.dlp.v2.StoredI" + + "nfoType\"_\202\323\344\223\002Y\022,/v2/{name=organizations" + + "/*/storedInfoTypes/*}Z)\022\'/v2/{name=proje" + + "cts/*/storedInfoTypes/*}\022\335\001\n\023ListStoredI" + + "nfoTypes\0221.google.privacy.dlp.v2.ListSto" + + "redInfoTypesRequest\0322.google.privacy.dlp" + + ".v2.ListStoredInfoTypesResponse\"_\202\323\344\223\002Y\022" + + ",/v2/{parent=organizations/*}/storedInfo" + + "TypesZ)\022\'/v2/{parent=projects/*}/storedI" + + "nfoTypes\022\303\001\n\024DeleteStoredInfoType\0222.goog" + + "le.privacy.dlp.v2.DeleteStoredInfoTypeRe" + + "quest\032\026.google.protobuf.Empty\"_\202\323\344\223\002Y*,/" + + "v2/{name=organizations/*/storedInfoTypes" + + "/*}Z)*\'/v2/{name=projects/*/storedInfoTy" + + "pes/*}\032F\312A\022dlp.googleapis.com\322A.https://" + + "www.googleapis.com/auth/cloud-platformB\215" + + "\001\n\031com.google.privacy.dlp.v2B\010DlpProtoP\001" + + "Z8google.golang.org/genproto/googleapis/" + + "privacy/dlp/v2;dlp\252\002\023Google.Cloud.Dlp.V2" + + "\312\002\023Google\\Cloud\\Dlp\\V2b\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -1477,7 +1486,6 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.api.AnnotationsProto.getDescriptor(), - com.google.api.ClientProto.getDescriptor(), com.google.privacy.dlp.v2.DlpStorage.getDescriptor(), com.google.protobuf.DurationProto.getDescriptor(), com.google.protobuf.EmptyProto.getDescriptor(), @@ -1487,6 +1495,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.type.DateProto.getDescriptor(), com.google.type.DayOfWeekProto.getDescriptor(), com.google.type.TimeOfDayProto.getDescriptor(), + com.google.api.ClientProto.getDescriptor(), }, assigner); internal_static_google_privacy_dlp_v2_ExcludeInfoTypes_descriptor = @@ -2522,7 +2531,12 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_privacy_dlp_v2_Action_descriptor, new java.lang.String[] { - "SaveFindings", "PubSub", "PublishSummaryToCscc", "JobNotificationEmails", "Action", + "SaveFindings", + "PubSub", + "PublishSummaryToCscc", + "PublishFindingsToCloudDataCatalog", + "JobNotificationEmails", + "Action", }); internal_static_google_privacy_dlp_v2_Action_SaveFindings_descriptor = internal_static_google_privacy_dlp_v2_Action_descriptor.getNestedTypes().get(0); @@ -2546,8 +2560,14 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_privacy_dlp_v2_Action_PublishSummaryToCscc_descriptor, new java.lang.String[] {}); - internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_descriptor = + internal_static_google_privacy_dlp_v2_Action_PublishFindingsToCloudDataCatalog_descriptor = internal_static_google_privacy_dlp_v2_Action_descriptor.getNestedTypes().get(3); + internal_static_google_privacy_dlp_v2_Action_PublishFindingsToCloudDataCatalog_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_privacy_dlp_v2_Action_PublishFindingsToCloudDataCatalog_descriptor, + new java.lang.String[] {}); + internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_descriptor = + internal_static_google_privacy_dlp_v2_Action_descriptor.getNestedTypes().get(4); internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_privacy_dlp_v2_Action_JobNotificationEmails_descriptor, @@ -2878,10 +2898,10 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.ClientProto.defaultHost); registry.add(com.google.api.AnnotationsProto.http); + registry.add(com.google.api.ClientProto.oauthScopes); com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( descriptor, registry); com.google.api.AnnotationsProto.getDescriptor(); - com.google.api.ClientProto.getDescriptor(); com.google.privacy.dlp.v2.DlpStorage.getDescriptor(); com.google.protobuf.DurationProto.getDescriptor(); com.google.protobuf.EmptyProto.getDescriptor(); @@ -2891,6 +2911,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.type.DateProto.getDescriptor(); com.google.type.DayOfWeekProto.getDescriptor(); com.google.type.TimeOfDayProto.getDescriptor(); + com.google.api.ClientProto.getDescriptor(); } // @@protoc_insertion_point(outer_class_scope) diff --git a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/proto/google/privacy/dlp/v2/dlp.proto b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/proto/google/privacy/dlp/v2/dlp.proto index ca1c30b14ace..b138c3b59b0d 100644 --- a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/proto/google/privacy/dlp/v2/dlp.proto +++ b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/proto/google/privacy/dlp/v2/dlp.proto @@ -18,7 +18,6 @@ syntax = "proto3"; package google.privacy.dlp.v2; import "google/api/annotations.proto"; -import "google/api/client.proto"; import "google/privacy/dlp/v2/storage.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/empty.proto"; @@ -28,6 +27,7 @@ import "google/rpc/status.proto"; import "google/type/date.proto"; import "google/type/dayofweek.proto"; import "google/type/timeofday.proto"; +import "google/api/client.proto"; option csharp_namespace = "Google.Cloud.Dlp.V2"; option go_package = "google.golang.org/genproto/googleapis/privacy/dlp/v2;dlp"; @@ -47,6 +47,7 @@ option php_namespace = "Google\\Cloud\\Dlp\\V2"; // https://cloud.google.com/dlp/docs/. service DlpService { option (google.api.default_host) = "dlp.googleapis.com"; + option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform"; // Finds potentially sensitive info in content. // This method has limits on input size, processing time, and output size. @@ -87,8 +88,7 @@ service DlpService { // When no InfoTypes or CustomInfoTypes are specified in this request, the // system will automatically choose what detectors to run. By default this may // be all types, but may change over time as detectors are updated. - rpc DeidentifyContent(DeidentifyContentRequest) - returns (DeidentifyContentResponse) { + rpc DeidentifyContent(DeidentifyContentRequest) returns (DeidentifyContentResponse) { option (google.api.http) = { post: "/v2/{parent=projects/*}/content:deidentify" body: "*" @@ -99,8 +99,7 @@ service DlpService { // See // https://cloud.google.com/dlp/docs/pseudonymization#re-identification_in_free_text_code_example // to learn more. - rpc ReidentifyContent(ReidentifyContentRequest) - returns (ReidentifyContentResponse) { + rpc ReidentifyContent(ReidentifyContentRequest) returns (ReidentifyContentResponse) { option (google.api.http) = { post: "/v2/{parent=projects/*}/content:reidentify" body: "*" @@ -119,8 +118,7 @@ service DlpService { // Creates an InspectTemplate for re-using frequently used configuration // for inspecting content, images, and storage. // See https://cloud.google.com/dlp/docs/creating-templates to learn more. - rpc CreateInspectTemplate(CreateInspectTemplateRequest) - returns (InspectTemplate) { + rpc CreateInspectTemplate(CreateInspectTemplateRequest) returns (InspectTemplate) { option (google.api.http) = { post: "/v2/{parent=organizations/*}/inspectTemplates" body: "*" @@ -133,8 +131,7 @@ service DlpService { // Updates the InspectTemplate. // See https://cloud.google.com/dlp/docs/creating-templates to learn more. - rpc UpdateInspectTemplate(UpdateInspectTemplateRequest) - returns (InspectTemplate) { + rpc UpdateInspectTemplate(UpdateInspectTemplateRequest) returns (InspectTemplate) { option (google.api.http) = { patch: "/v2/{name=organizations/*/inspectTemplates/*}" body: "*" @@ -150,27 +147,31 @@ service DlpService { rpc GetInspectTemplate(GetInspectTemplateRequest) returns (InspectTemplate) { option (google.api.http) = { get: "/v2/{name=organizations/*/inspectTemplates/*}" - additional_bindings { get: "/v2/{name=projects/*/inspectTemplates/*}" } + additional_bindings { + get: "/v2/{name=projects/*/inspectTemplates/*}" + } }; } // Lists InspectTemplates. // See https://cloud.google.com/dlp/docs/creating-templates to learn more. - rpc ListInspectTemplates(ListInspectTemplatesRequest) - returns (ListInspectTemplatesResponse) { + rpc ListInspectTemplates(ListInspectTemplatesRequest) returns (ListInspectTemplatesResponse) { option (google.api.http) = { get: "/v2/{parent=organizations/*}/inspectTemplates" - additional_bindings { get: "/v2/{parent=projects/*}/inspectTemplates" } + additional_bindings { + get: "/v2/{parent=projects/*}/inspectTemplates" + } }; } // Deletes an InspectTemplate. // See https://cloud.google.com/dlp/docs/creating-templates to learn more. - rpc DeleteInspectTemplate(DeleteInspectTemplateRequest) - returns (google.protobuf.Empty) { + rpc DeleteInspectTemplate(DeleteInspectTemplateRequest) returns (google.protobuf.Empty) { option (google.api.http) = { delete: "/v2/{name=organizations/*/inspectTemplates/*}" - additional_bindings { delete: "/v2/{name=projects/*/inspectTemplates/*}" } + additional_bindings { + delete: "/v2/{name=projects/*/inspectTemplates/*}" + } }; } @@ -178,8 +179,7 @@ service DlpService { // for de-identifying content, images, and storage. // See https://cloud.google.com/dlp/docs/creating-templates-deid to learn // more. - rpc CreateDeidentifyTemplate(CreateDeidentifyTemplateRequest) - returns (DeidentifyTemplate) { + rpc CreateDeidentifyTemplate(CreateDeidentifyTemplateRequest) returns (DeidentifyTemplate) { option (google.api.http) = { post: "/v2/{parent=organizations/*}/deidentifyTemplates" body: "*" @@ -193,8 +193,7 @@ service DlpService { // Updates the DeidentifyTemplate. // See https://cloud.google.com/dlp/docs/creating-templates-deid to learn // more. - rpc UpdateDeidentifyTemplate(UpdateDeidentifyTemplateRequest) - returns (DeidentifyTemplate) { + rpc UpdateDeidentifyTemplate(UpdateDeidentifyTemplateRequest) returns (DeidentifyTemplate) { option (google.api.http) = { patch: "/v2/{name=organizations/*/deidentifyTemplates/*}" body: "*" @@ -208,30 +207,31 @@ service DlpService { // Gets a DeidentifyTemplate. // See https://cloud.google.com/dlp/docs/creating-templates-deid to learn // more. - rpc GetDeidentifyTemplate(GetDeidentifyTemplateRequest) - returns (DeidentifyTemplate) { + rpc GetDeidentifyTemplate(GetDeidentifyTemplateRequest) returns (DeidentifyTemplate) { option (google.api.http) = { get: "/v2/{name=organizations/*/deidentifyTemplates/*}" - additional_bindings { get: "/v2/{name=projects/*/deidentifyTemplates/*}" } + additional_bindings { + get: "/v2/{name=projects/*/deidentifyTemplates/*}" + } }; } // Lists DeidentifyTemplates. // See https://cloud.google.com/dlp/docs/creating-templates-deid to learn // more. - rpc ListDeidentifyTemplates(ListDeidentifyTemplatesRequest) - returns (ListDeidentifyTemplatesResponse) { + rpc ListDeidentifyTemplates(ListDeidentifyTemplatesRequest) returns (ListDeidentifyTemplatesResponse) { option (google.api.http) = { get: "/v2/{parent=organizations/*}/deidentifyTemplates" - additional_bindings { get: "/v2/{parent=projects/*}/deidentifyTemplates" } + additional_bindings { + get: "/v2/{parent=projects/*}/deidentifyTemplates" + } }; } // Deletes a DeidentifyTemplate. // See https://cloud.google.com/dlp/docs/creating-templates-deid to learn // more. - rpc DeleteDeidentifyTemplate(DeleteDeidentifyTemplateRequest) - returns (google.protobuf.Empty) { + rpc DeleteDeidentifyTemplate(DeleteDeidentifyTemplateRequest) returns (google.protobuf.Empty) { option (google.api.http) = { delete: "/v2/{name=organizations/*/deidentifyTemplates/*}" additional_bindings { @@ -269,8 +269,7 @@ service DlpService { // Lists job triggers. // See https://cloud.google.com/dlp/docs/creating-job-triggers to learn more. - rpc ListJobTriggers(ListJobTriggersRequest) - returns (ListJobTriggersResponse) { + rpc ListJobTriggers(ListJobTriggersRequest) returns (ListJobTriggersResponse) { option (google.api.http) = { get: "/v2/{parent=projects/*}/jobTriggers" }; @@ -278,8 +277,7 @@ service DlpService { // Deletes a job trigger. // See https://cloud.google.com/dlp/docs/creating-job-triggers to learn more. - rpc DeleteJobTrigger(DeleteJobTriggerRequest) - returns (google.protobuf.Empty) { + rpc DeleteJobTrigger(DeleteJobTriggerRequest) returns (google.protobuf.Empty) { option (google.api.http) = { delete: "/v2/{name=projects/*/jobTriggers/*}" }; @@ -352,8 +350,7 @@ service DlpService { // Creates a pre-built stored infoType to be used for inspection. // See https://cloud.google.com/dlp/docs/creating-stored-infotypes to // learn more. - rpc CreateStoredInfoType(CreateStoredInfoTypeRequest) - returns (StoredInfoType) { + rpc CreateStoredInfoType(CreateStoredInfoTypeRequest) returns (StoredInfoType) { option (google.api.http) = { post: "/v2/{parent=organizations/*}/storedInfoTypes" body: "*" @@ -368,8 +365,7 @@ service DlpService { // will continue to be used until the new version is ready. // See https://cloud.google.com/dlp/docs/creating-stored-infotypes to // learn more. - rpc UpdateStoredInfoType(UpdateStoredInfoTypeRequest) - returns (StoredInfoType) { + rpc UpdateStoredInfoType(UpdateStoredInfoTypeRequest) returns (StoredInfoType) { option (google.api.http) = { patch: "/v2/{name=organizations/*/storedInfoTypes/*}" body: "*" @@ -386,29 +382,33 @@ service DlpService { rpc GetStoredInfoType(GetStoredInfoTypeRequest) returns (StoredInfoType) { option (google.api.http) = { get: "/v2/{name=organizations/*/storedInfoTypes/*}" - additional_bindings { get: "/v2/{name=projects/*/storedInfoTypes/*}" } + additional_bindings { + get: "/v2/{name=projects/*/storedInfoTypes/*}" + } }; } // Lists stored infoTypes. // See https://cloud.google.com/dlp/docs/creating-stored-infotypes to // learn more. - rpc ListStoredInfoTypes(ListStoredInfoTypesRequest) - returns (ListStoredInfoTypesResponse) { + rpc ListStoredInfoTypes(ListStoredInfoTypesRequest) returns (ListStoredInfoTypesResponse) { option (google.api.http) = { get: "/v2/{parent=organizations/*}/storedInfoTypes" - additional_bindings { get: "/v2/{parent=projects/*}/storedInfoTypes" } + additional_bindings { + get: "/v2/{parent=projects/*}/storedInfoTypes" + } }; } // Deletes a stored infoType. // See https://cloud.google.com/dlp/docs/creating-stored-infotypes to // learn more. - rpc DeleteStoredInfoType(DeleteStoredInfoTypeRequest) - returns (google.protobuf.Empty) { + rpc DeleteStoredInfoType(DeleteStoredInfoTypeRequest) returns (google.protobuf.Empty) { option (google.api.http) = { delete: "/v2/{name=organizations/*/storedInfoTypes/*}" - additional_bindings { delete: "/v2/{name=projects/*/storedInfoTypes/*}" } + additional_bindings { + delete: "/v2/{name=projects/*/storedInfoTypes/*}" + } }; } } @@ -426,6 +426,18 @@ message ExcludeInfoTypes { repeated InfoType info_types = 1; } +// Options describing which parts of the provided content should be scanned. +enum ContentOption { + // Includes entire content of a file or a data stream. + CONTENT_UNSPECIFIED = 0; + + // Text content within the data, excluding any metadata. + CONTENT_TEXT = 1; + + // Images found in the data. + CONTENT_IMAGE = 2; +} + // The rule that specifies conditions when findings of infoTypes specified in // `InspectionRuleSet` are removed from results. message ExclusionRule { @@ -444,18 +456,6 @@ message ExclusionRule { MatchingType matching_type = 4; } -// Options describing which parts of the provided content should be scanned. -enum ContentOption { - // Includes entire content of a file or a data stream. - CONTENT_UNSPECIFIED = 0; - - // Text content within the data, excluding any metadata. - CONTENT_TEXT = 1; - - // Images found in the data. - CONTENT_IMAGE = 2; -} - // A single inspection rule to be applied to infoTypes, specified in // `InspectionRuleSet`. message InspectionRule { @@ -1369,8 +1369,7 @@ message AnalyzeDataSourceRiskDetails { } // Histogram of value frequencies in the column. - repeated CategoricalStatsHistogramBucket value_frequency_histogram_buckets = - 5; + repeated CategoricalStatsHistogramBucket value_frequency_histogram_buckets = 5; } // Result of the k-anonymity computation. @@ -1448,8 +1447,7 @@ message AnalyzeDataSourceRiskDetails { } // Histogram of l-diversity equivalence class sensitive value frequencies. - repeated LDiversityHistogramBucket - sensitive_value_frequency_histogram_buckets = 5; + repeated LDiversityHistogramBucket sensitive_value_frequency_histogram_buckets = 5; } // Result of the reidentifiability analysis. Note that these results are an @@ -1555,8 +1553,7 @@ message AnalyzeDataSourceRiskDetails { // {min_probability: 0.3, max_probability: 0.4, frequency: 99} // mean that there are no record with an estimated probability in [0.1, 0.2) // nor larger or equal to 0.4. - repeated DeltaPresenceEstimationHistogramBucket - delta_presence_estimation_histogram = 1; + repeated DeltaPresenceEstimationHistogramBucket delta_presence_estimation_histogram = 1; } // Privacy metric to compute. @@ -1790,12 +1787,16 @@ message ReplaceValueConfig { } // Replace each matching finding with the name of the info_type. -message ReplaceWithInfoTypeConfig {} +message ReplaceWithInfoTypeConfig { + +} // Redact a given value. For example, if used with an `InfoTypeTransformation` // transforming PHONE_NUMBER, and input 'My phone number is 206-555-0123', the // output would be 'My phone number is '. -message RedactConfig {} +message RedactConfig { + +} // Characters to skip when doing deidentification of a value. These will be left // alone and skipped. @@ -2474,11 +2475,29 @@ message Action { // service-specific policy, see https://cloud.google.com/terms/service-terms // Only a single instance of this action can be specified. // Compatible with: Inspect - message PublishSummaryToCscc {} + message PublishSummaryToCscc { + + } + + // Publish findings of a DlpJob to Cloud Data Catalog. Labels summarizing the + // results of the DlpJob will be applied to the entry for the resource scanned + // in Cloud Data Catalog. Any labels previously written by another DlpJob will + // be deleted. InfoType naming patterns are strictly enforced when using this + // feature. Note that the findings will be persisted in Cloud Data Catalog + // storage and are governed by Data Catalog service-specific policy, see + // https://cloud.google.com/terms/service-terms + // Only a single instance of this action can be specified and only allowed if + // all resources being scanned are BigQuery tables. + // Compatible with: Inspect + message PublishFindingsToCloudDataCatalog { + + } // Enable email notification to project owners and editors on jobs's // completion/failure. - message JobNotificationEmails {} + message JobNotificationEmails { + + } oneof action { // Save resulting findings in a provided location. @@ -2490,6 +2509,9 @@ message Action { // Publish summary to Cloud Security Command Center (Alpha). PublishSummaryToCscc publish_summary_to_cscc = 3; + // Publish findings to Cloud Datahub. + PublishFindingsToCloudDataCatalog publish_findings_to_cloud_data_catalog = 5; + // Enable email notification to project owners and editors on job's // completion/failure. JobNotificationEmails job_notification_emails = 8; @@ -2790,12 +2812,6 @@ message DlpJob { repeated Error errors = 11; } -// The request message for [DlpJobs.GetDlpJob][]. -message GetDlpJobRequest { - // The name of the DlpJob resource. - string name = 1; -} - // Operators available for comparing the value of fields. enum RelationalOperator { RELATIONAL_OPERATOR_UNSPECIFIED = 0; @@ -2822,6 +2838,12 @@ enum RelationalOperator { EXISTS = 7; } +// The request message for [DlpJobs.GetDlpJob][]. +message GetDlpJobRequest { + // The name of the DlpJob resource. + string name = 1; +} + // The request message for listing DLP jobs. message ListDlpJobsRequest { // The parent resource name, for example projects/my-project-id. diff --git a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/proto/google/privacy/dlp/v2/storage.proto b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/proto/google/privacy/dlp/v2/storage.proto index 0c93754c2cfb..c2f38a61304c 100644 --- a/google-api-grpc/proto-google-cloud-dlp-v2/src/main/proto/google/privacy/dlp/v2/storage.proto +++ b/google-api-grpc/proto-google-cloud-dlp-v2/src/main/proto/google/privacy/dlp/v2/storage.proto @@ -134,11 +134,14 @@ message CustomInfoType { // output. This should be used in conjunction with a field on the // transformation such as `surrogate_info_type`. This CustomInfoType does // not support the use of `detection_rules`. - message SurrogateType {} + message SurrogateType { - // Rule for modifying a CustomInfoType to alter behavior under certain - // circumstances, depending on the specific details of the rule. Not supported - // for the `surrogate_type` custom info type. + } + + // Deprecated; use `InspectionRuleSet` instead. Rule for modifying a + // `CustomInfoType` to alter behavior under certain circumstances, depending + // on the specific details of the rule. Not supported for the `surrogate_type` + // custom infoType. message DetectionRule { // Message for specifying a window around a finding to apply a detection // rule. diff --git a/google-cloud-clients/google-cloud-dlp/synth.metadata b/google-cloud-clients/google-cloud-dlp/synth.metadata index d850917242be..5d5c71033b67 100644 --- a/google-cloud-clients/google-cloud-dlp/synth.metadata +++ b/google-cloud-clients/google-cloud-dlp/synth.metadata @@ -1,19 +1,19 @@ { - "updateTime": "2019-06-18T07:43:21.912360Z", + "updateTime": "2019-07-03T20:55:12.594544Z", "sources": [ { "generator": { "name": "artman", - "version": "0.27.0", - "dockerImage": "googleapis/artman@sha256:b036a7f4278d9deb5796f065e5c7f608d47d75369985ca7ab5039998120e972d" + "version": "0.29.3", + "dockerImage": "googleapis/artman@sha256:8900f94a81adaab0238965aa8a7b3648791f4f3a95ee65adc6a56cfcc3753101" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "384aa843867c4d17756d14a01f047b6368494d32", - "internalRef": "253675319" + "sha": "dbf13ce41f338054af6017ecff6fc3402d71e8a5", + "internalRef": "256395560" } } ], From e474de10f2a4905d83e78dcbef9b9458e57e9b20 Mon Sep 17 00:00:00 2001 From: athakor <49403056+athakor@users.noreply.github.com> Date: Mon, 8 Jul 2019 23:23:26 +0530 Subject: [PATCH 56/58] ResourceManager: Cleanup unused dependencies (#5689) --- google-cloud-clients/google-cloud-resourcemanager/pom.xml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/google-cloud-clients/google-cloud-resourcemanager/pom.xml b/google-cloud-clients/google-cloud-resourcemanager/pom.xml index 327e7f95aadf..f9c9e8ddab9f 100644 --- a/google-cloud-clients/google-cloud-resourcemanager/pom.xml +++ b/google-cloud-clients/google-cloud-resourcemanager/pom.xml @@ -18,10 +18,6 @@ google-cloud-resourcemanager - - ${project.groupId} - google-cloud-core - ${project.groupId} google-cloud-core-http From 06e7b0885b836dc5d2dc06d80c8bebbe2b2b7d70 Mon Sep 17 00:00:00 2001 From: gaogaogiraffe <52432515+gaogaogiraffe@users.noreply.github.com> Date: Mon, 8 Jul 2019 11:09:25 -0700 Subject: [PATCH 57/58] Asset: Add VPCSC tests (#5695) The tests can be run inside or outside of VPC service perimeter. The input to the script should be the following environment variables. PROJECT_ID: a project that is inside the VPC perimeter. GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_PROJECT: a project that is outside the VPC perimeter. --- .../cloud/asset/v1/VPCServiceControlTest.java | 119 ++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 google-cloud-clients/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/VPCServiceControlTest.java diff --git a/google-cloud-clients/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/VPCServiceControlTest.java b/google-cloud-clients/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/VPCServiceControlTest.java new file mode 100644 index 000000000000..f3e5bdb92788 --- /dev/null +++ b/google-cloud-clients/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/VPCServiceControlTest.java @@ -0,0 +1,119 @@ +/* + * Copyright 2019 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.cloud.asset.v1; + +import com.google.api.*; +import com.google.protobuf.*; +import org.junit.Assert; +import org.junit.Assume; +import org.junit.BeforeClass; +import org.junit.Test; + +@javax.annotation.Generated("by Google") +public class VPCServiceControlTest { + private static void doTest(boolean rejectedInside, boolean rejectedOutside) { + if ((IS_INSIDE_VPCSC != null) && (IS_INSIDE_VPCSC.equalsIgnoreCase("true"))) { + Assert.assertTrue(!rejectedInside); + Assert.assertTrue(rejectedOutside); + } else { + Assert.assertTrue(rejectedInside); + Assert.assertTrue(!rejectedOutside); + } + } + + static final String PROJECT_OUTSIDE = + System.getenv("GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_PROJECT"); + static final String PROJECT_INSIDE = System.getenv("PROJECT_ID"); + static final String IS_INSIDE_VPCSC = System.getenv("GOOGLE_CLOUD_TESTS_IN_VPCSC"); + + @BeforeClass + public static void setUpClass() { + Assume.assumeTrue( + "GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_PROJECT environment variable needs to be set to a GCP project that is outside the VPC perimeter", + PROJECT_OUTSIDE != null && !PROJECT_OUTSIDE.isEmpty()); + Assume.assumeTrue( + "PROJECT_ID environment variable needs to be set to a GCP project that is inside the VPC perimeter", + PROJECT_INSIDE != null && !PROJECT_INSIDE.isEmpty()); + } + + @Test + @SuppressWarnings("all") + public void exportAssetsTest() throws Exception { + final AssetServiceClient client = AssetServiceClient.create(); + final OutputConfig outputConfig = OutputConfig.newBuilder().build(); + final ProjectName nameInside = ProjectName.of(PROJECT_INSIDE); + final ExportAssetsRequest requestInside = + ExportAssetsRequest.newBuilder() + .setParent(nameInside.toString()) + .setOutputConfig(outputConfig) + .build(); + boolean rejectedInside = false; + try { + ExportAssetsResponse response = client.exportAssetsAsync(requestInside).get(); + } catch (Exception e) { + rejectedInside = e.getMessage().contains("Request is prohibited by organization's policy"); + } + final ProjectName nameOutside = ProjectName.of(PROJECT_OUTSIDE); + final ExportAssetsRequest requestOutside = + ExportAssetsRequest.newBuilder() + .setParent(nameOutside.toString()) + .setOutputConfig(outputConfig) + .build(); + boolean rejectedOutside = false; + try { + ExportAssetsResponse response = client.exportAssetsAsync(requestOutside).get(); + } catch (Exception e) { + rejectedOutside = e.getMessage().contains("Request is prohibited by organization's policy"); + } + doTest(rejectedInside, rejectedOutside); + client.close(); + } + + @Test + @SuppressWarnings("all") + public void batchGetAssetsHistoryTest() throws Exception { + final AssetServiceClient client = AssetServiceClient.create(); + final TimeWindow readTimeWindow = TimeWindow.newBuilder().build(); + final ProjectName nameInside = ProjectName.of(PROJECT_INSIDE); + final BatchGetAssetsHistoryRequest requestInside = + BatchGetAssetsHistoryRequest.newBuilder() + .setParent(nameInside.toString()) + .setReadTimeWindow(readTimeWindow) + .build(); + boolean rejectedInside = false; + try { + BatchGetAssetsHistoryResponse response = client.batchGetAssetsHistory(requestInside); + } catch (Exception e) { + rejectedInside = e.getMessage().contains("Request is prohibited by organization's policy"); + } + + final ProjectName nameOutside = ProjectName.of(PROJECT_OUTSIDE); + final BatchGetAssetsHistoryRequest requestOutside = + BatchGetAssetsHistoryRequest.newBuilder() + .setParent(nameOutside.toString()) + .setReadTimeWindow(readTimeWindow) + .build(); + boolean rejectedOutside = false; + try { + BatchGetAssetsHistoryResponse response = client.batchGetAssetsHistory(requestOutside); + } catch (Exception e) { + rejectedOutside = e.getMessage().contains("Request is prohibited by organization's policy"); + } + doTest(rejectedInside, rejectedOutside); + client.close(); + } +} From 71124ba3bc6750abd777df86c813b2fb6945a42b Mon Sep 17 00:00:00 2001 From: Jeff Ching Date: Mon, 8 Jul 2019 11:16:23 -0700 Subject: [PATCH 58/58] Bump next snapshot (#5702) --- .../grpc-google-cloud-asset-v1/pom.xml | 4 +- .../grpc-google-cloud-asset-v1beta1/pom.xml | 4 +- .../grpc-google-cloud-automl-v1beta1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-bigtable-v2/pom.xml | 4 +- .../grpc-google-cloud-container-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-dataproc-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-dialogflow-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-dlp-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-firestore-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-iot-v1/pom.xml | 4 +- .../grpc-google-cloud-kms-v1/pom.xml | 4 +- .../grpc-google-cloud-language-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-logging-v2/pom.xml | 4 +- .../grpc-google-cloud-monitoring-v3/pom.xml | 4 +- .../grpc-google-cloud-os-login-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-pubsub-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-redis-v1/pom.xml | 4 +- .../grpc-google-cloud-redis-v1beta1/pom.xml | 4 +- .../grpc-google-cloud-scheduler-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-spanner-v1/pom.xml | 4 +- .../grpc-google-cloud-speech-v1/pom.xml | 4 +- .../grpc-google-cloud-speech-v1beta1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-talent-v4beta1/pom.xml | 4 +- .../grpc-google-cloud-tasks-v2/pom.xml | 4 +- .../grpc-google-cloud-tasks-v2beta2/pom.xml | 4 +- .../grpc-google-cloud-tasks-v2beta3/pom.xml | 4 +- .../grpc-google-cloud-texttospeech-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-trace-v1/pom.xml | 4 +- .../grpc-google-cloud-trace-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-vision-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../grpc-google-cloud-webrisk-v1beta1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- google-api-grpc/pom.xml | 272 ++++++------ .../proto-google-cloud-asset-v1/pom.xml | 4 +- .../proto-google-cloud-asset-v1beta1/pom.xml | 4 +- .../proto-google-cloud-automl-v1beta1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-bigtable-v2/pom.xml | 4 +- .../proto-google-cloud-container-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-dataproc-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-datastore-v1/pom.xml | 4 +- .../proto-google-cloud-dialogflow-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-dlp-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-firestore-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-iot-v1/pom.xml | 4 +- .../proto-google-cloud-kms-v1/pom.xml | 4 +- .../proto-google-cloud-language-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-logging-v2/pom.xml | 4 +- .../proto-google-cloud-monitoring-v3/pom.xml | 4 +- .../proto-google-cloud-os-login-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-pubsub-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-redis-v1/pom.xml | 4 +- .../proto-google-cloud-redis-v1beta1/pom.xml | 4 +- .../proto-google-cloud-scheduler-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-spanner-v1/pom.xml | 4 +- .../proto-google-cloud-speech-v1/pom.xml | 4 +- .../proto-google-cloud-speech-v1beta1/pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-talent-v4beta1/pom.xml | 4 +- .../proto-google-cloud-tasks-v2/pom.xml | 4 +- .../proto-google-cloud-tasks-v2beta2/pom.xml | 4 +- .../proto-google-cloud-tasks-v2beta3/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-trace-v1/pom.xml | 4 +- .../proto-google-cloud-trace-v2/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../proto-google-cloud-vision-v1/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 4 +- google-cloud-bom/pom.xml | 370 ++++++++-------- .../google-cloud-asset/pom.xml | 4 +- .../google-cloud-automl/pom.xml | 4 +- .../google-cloud-bigquery/pom.xml | 4 +- .../google-cloud-bigquerydatatransfer/pom.xml | 4 +- .../google-cloud-bigquerystorage/pom.xml | 4 +- .../google-cloud-bigtable/pom.xml | 4 +- .../google-cloud-compute/pom.xml | 4 +- .../google-cloud-container/pom.xml | 4 +- .../google-cloud-containeranalysis/pom.xml | 4 +- .../google-cloud-logging-logback/pom.xml | 4 +- .../google-cloud-nio-examples/README.md | 4 +- .../google-cloud-nio-examples/pom.xml | 4 +- .../google-cloud-nio/pom.xml | 4 +- .../google-cloud-notification/pom.xml | 4 +- .../google-cloud-contrib/pom.xml | 4 +- .../google-cloud-core-grpc/pom.xml | 4 +- .../google-cloud-core-http/pom.xml | 4 +- .../google-cloud-core/pom.xml | 4 +- .../google-cloud-datacatalog/pom.xml | 4 +- .../google-cloud-datalabeling/pom.xml | 4 +- .../google-cloud-dataproc/pom.xml | 4 +- .../google-cloud-datastore/pom.xml | 4 +- .../google-cloud-dialogflow/pom.xml | 4 +- google-cloud-clients/google-cloud-dlp/pom.xml | 4 +- google-cloud-clients/google-cloud-dns/pom.xml | 4 +- .../google-cloud-errorreporting/pom.xml | 4 +- .../google-cloud-firestore/pom.xml | 4 +- .../google-cloud-iamcredentials/pom.xml | 4 +- google-cloud-clients/google-cloud-iot/pom.xml | 4 +- google-cloud-clients/google-cloud-kms/pom.xml | 4 +- .../google-cloud-language/pom.xml | 4 +- .../google-cloud-logging/pom.xml | 4 +- .../google-cloud-monitoring/pom.xml | 4 +- .../google-cloud-os-login/pom.xml | 4 +- .../google-cloud-phishingprotection/pom.xml | 4 +- .../google-cloud-pubsub/pom.xml | 4 +- .../google-cloud-recaptchaenterprise/pom.xml | 4 +- .../google-cloud-redis/pom.xml | 4 +- .../google-cloud-resourcemanager/pom.xml | 4 +- .../google-cloud-scheduler/pom.xml | 4 +- .../google-cloud-securitycenter/pom.xml | 4 +- .../google-cloud-spanner/pom.xml | 4 +- .../google-cloud-speech/pom.xml | 4 +- .../google-cloud-storage/pom.xml | 4 +- .../google-cloud-talent/pom.xml | 4 +- .../google-cloud-tasks/pom.xml | 4 +- .../google-cloud-texttospeech/pom.xml | 4 +- .../google-cloud-trace/pom.xml | 4 +- .../google-cloud-translate/pom.xml | 4 +- .../google-cloud-video-intelligence/pom.xml | 4 +- .../google-cloud-vision/pom.xml | 4 +- .../google-cloud-webrisk/pom.xml | 4 +- .../google-cloud-websecurityscanner/pom.xml | 4 +- google-cloud-clients/grafeas/pom.xml | 4 +- google-cloud-clients/pom.xml | 6 +- google-cloud-examples/pom.xml | 4 +- .../google-cloud-appengineflexcompat/pom.xml | 4 +- .../google-cloud-appengineflexcustom/pom.xml | 4 +- .../google-cloud-appengineflexjava/pom.xml | 4 +- .../google-cloud-appenginejava8/pom.xml | 4 +- .../google-cloud-bigtable-emulator/pom.xml | 6 +- .../google-cloud-conformance-tests/pom.xml | 2 +- .../google-cloud-gcloud-maven-plugin/pom.xml | 4 +- .../google-cloud-managedtest/pom.xml | 4 +- google-cloud-testing/pom.xml | 6 +- .../google-cloud-compat-checker/pom.xml | 4 +- google-cloud-util/pom.xml | 2 +- versions.txt | 406 +++++++++--------- 205 files changed, 929 insertions(+), 929 deletions(-) diff --git a/google-api-grpc/grpc-google-cloud-asset-v1/pom.xml b/google-api-grpc/grpc-google-cloud-asset-v1/pom.xml index 6702a79e4b57..064f3fb667de 100644 --- a/google-api-grpc/grpc-google-cloud-asset-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-asset-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-asset-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-asset-v1 GRPC library for grpc-google-cloud-asset-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-asset-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-asset-v1beta1/pom.xml index edcd9ce920c0..158c6514321f 100644 --- a/google-api-grpc/grpc-google-cloud-asset-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-asset-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-asset-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-asset-v1beta1 GRPC library for grpc-google-cloud-asset-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-automl-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-automl-v1beta1/pom.xml index 3f6316935544..9770ef1b4181 100644 --- a/google-api-grpc/grpc-google-cloud-automl-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-automl-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-automl-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-automl-v1beta1 GRPC library for grpc-google-cloud-automl-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-bigquerydatatransfer-v1/pom.xml b/google-api-grpc/grpc-google-cloud-bigquerydatatransfer-v1/pom.xml index dcb0e0046192..6e0cb3855f85 100644 --- a/google-api-grpc/grpc-google-cloud-bigquerydatatransfer-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-bigquerydatatransfer-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-bigquerydatatransfer-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-bigquerydatatransfer-v1 GRPC library for grpc-google-cloud-bigquerydatatransfer-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-bigquerystorage-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-bigquerystorage-v1beta1/pom.xml index 9defb63a8a6a..d44ed6b0326e 100644 --- a/google-api-grpc/grpc-google-cloud-bigquerystorage-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-bigquerystorage-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-bigquerystorage-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-bigquerystorage-v1beta1 GRPC library for grpc-google-cloud-bigquerystorage-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-bigtable-admin-v2/pom.xml b/google-api-grpc/grpc-google-cloud-bigtable-admin-v2/pom.xml index f391000f2142..1b61385cd073 100644 --- a/google-api-grpc/grpc-google-cloud-bigtable-admin-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-bigtable-admin-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-bigtable-admin-v2 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-bigtable-admin-v2 GRPC library for grpc-google-cloud-bigtable-admin-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-bigtable-v2/pom.xml b/google-api-grpc/grpc-google-cloud-bigtable-v2/pom.xml index 37acf282ec97..5068242a4756 100644 --- a/google-api-grpc/grpc-google-cloud-bigtable-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-bigtable-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-bigtable-v2 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-bigtable-v2 GRPC library for grpc-google-cloud-bigtable-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-container-v1/pom.xml b/google-api-grpc/grpc-google-cloud-container-v1/pom.xml index 4c714f43730a..9bc24c7dba7b 100644 --- a/google-api-grpc/grpc-google-cloud-container-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-container-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-container-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-container-v1 GRPC library for grpc-google-cloud-container-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-containeranalysis-v1/pom.xml b/google-api-grpc/grpc-google-cloud-containeranalysis-v1/pom.xml index 21f2ee599d71..3d63b29a8b38 100644 --- a/google-api-grpc/grpc-google-cloud-containeranalysis-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-containeranalysis-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-containeranalysis-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-containeranalysis-v1 GRPC library for grpc-google-cloud-containeranalysis-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-containeranalysis-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-containeranalysis-v1beta1/pom.xml index 7841ad2ca713..a3755122d5a3 100644 --- a/google-api-grpc/grpc-google-cloud-containeranalysis-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-containeranalysis-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-containeranalysis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-containeranalysis-v1beta1 GRPC library for grpc-google-cloud-containeranalysis-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-datacatalog-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-datacatalog-v1beta1/pom.xml index ef6916b2c0af..06978efb24e9 100644 --- a/google-api-grpc/grpc-google-cloud-datacatalog-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-datacatalog-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-datacatalog-v1beta1 - 0.12.0-alpha + 0.12.1-alpha-SNAPSHOT grpc-google-cloud-datacatalog-v1beta1 GRPC library for grpc-google-cloud-datacatalog-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-datalabeling-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-datalabeling-v1beta1/pom.xml index 94c821f1260f..b71ebd9ecfdc 100644 --- a/google-api-grpc/grpc-google-cloud-datalabeling-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-datalabeling-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-datalabeling-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-datalabeling-v1beta1 GRPC library for grpc-google-cloud-datalabeling-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-dataproc-v1/pom.xml b/google-api-grpc/grpc-google-cloud-dataproc-v1/pom.xml index 115be8731b90..a3ece9301396 100644 --- a/google-api-grpc/grpc-google-cloud-dataproc-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-dataproc-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-dataproc-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-dataproc-v1 GRPC library for grpc-google-cloud-dataproc-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-dataproc-v1beta2/pom.xml b/google-api-grpc/grpc-google-cloud-dataproc-v1beta2/pom.xml index 02ef22593140..eab84672fc7e 100644 --- a/google-api-grpc/grpc-google-cloud-dataproc-v1beta2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-dataproc-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-dataproc-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-dataproc-v1beta2 GRPC library for grpc-google-cloud-dataproc-v1beta2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-dialogflow-v2/pom.xml b/google-api-grpc/grpc-google-cloud-dialogflow-v2/pom.xml index 5d3fbed0a820..1b501f59478b 100644 --- a/google-api-grpc/grpc-google-cloud-dialogflow-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-dialogflow-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-dialogflow-v2 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-dialogflow-v2 GRPC library for grpc-google-cloud-dialogflow-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-dialogflow-v2beta1/pom.xml b/google-api-grpc/grpc-google-cloud-dialogflow-v2beta1/pom.xml index bff0be3e7526..cbe728171c7b 100644 --- a/google-api-grpc/grpc-google-cloud-dialogflow-v2beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-dialogflow-v2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-dialogflow-v2beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-dialogflow-v2beta1 GRPC library for grpc-google-cloud-dialogflow-v2beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-dlp-v2/pom.xml b/google-api-grpc/grpc-google-cloud-dlp-v2/pom.xml index 6e8954a5eca3..179359c89726 100644 --- a/google-api-grpc/grpc-google-cloud-dlp-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-dlp-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-dlp-v2 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-dlp-v2 GRPC library for grpc-google-cloud-dlp-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-error-reporting-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-error-reporting-v1beta1/pom.xml index d6c7101a67e0..7cbd0524d90a 100644 --- a/google-api-grpc/grpc-google-cloud-error-reporting-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-error-reporting-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-error-reporting-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-error-reporting-v1beta1 GRPC library for grpc-google-cloud-error-reporting-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-firestore-admin-v1/pom.xml b/google-api-grpc/grpc-google-cloud-firestore-admin-v1/pom.xml index bfe9af635fa1..15c6cc1d10d4 100644 --- a/google-api-grpc/grpc-google-cloud-firestore-admin-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-firestore-admin-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-firestore-admin-v1 - 1.11.0 + 1.11.1-SNAPSHOT grpc-google-cloud-firestore-admin-v1 GRPC library for grpc-google-cloud-firestore-admin-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-firestore-v1/pom.xml b/google-api-grpc/grpc-google-cloud-firestore-v1/pom.xml index ea958f972a6f..371e69ab473d 100644 --- a/google-api-grpc/grpc-google-cloud-firestore-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-firestore-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-firestore-v1 - 1.11.0 + 1.11.1-SNAPSHOT grpc-google-cloud-firestore-v1 GRPC library for grpc-google-cloud-firestore-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-firestore-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-firestore-v1beta1/pom.xml index f11f39d42ca9..c14c71c87598 100644 --- a/google-api-grpc/grpc-google-cloud-firestore-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-firestore-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-firestore-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-firestore-v1beta1 GRPC library for grpc-google-cloud-firestore-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-iamcredentials-v1/pom.xml b/google-api-grpc/grpc-google-cloud-iamcredentials-v1/pom.xml index b74f6a1d5cd6..ac84fb077455 100644 --- a/google-api-grpc/grpc-google-cloud-iamcredentials-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-iamcredentials-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-iamcredentials-v1 - 0.26.0-alpha + 0.26.1-alpha-SNAPSHOT grpc-google-cloud-iamcredentials-v1 GRPC library for grpc-google-cloud-iamcredentials-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-iot-v1/pom.xml b/google-api-grpc/grpc-google-cloud-iot-v1/pom.xml index 504e4e6362b0..96b46c4156d3 100644 --- a/google-api-grpc/grpc-google-cloud-iot-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-iot-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-iot-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-iot-v1 GRPC library for grpc-google-cloud-iot-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-kms-v1/pom.xml b/google-api-grpc/grpc-google-cloud-kms-v1/pom.xml index 5ef228508184..3396c3758591 100644 --- a/google-api-grpc/grpc-google-cloud-kms-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-kms-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-kms-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-kms-v1 GRPC library for grpc-google-cloud-kms-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-language-v1/pom.xml b/google-api-grpc/grpc-google-cloud-language-v1/pom.xml index 9e1662664e66..f584cdd3f6d2 100644 --- a/google-api-grpc/grpc-google-cloud-language-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-language-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-language-v1 - 1.63.0 + 1.63.1-SNAPSHOT grpc-google-cloud-language-v1 GRPC library for grpc-google-cloud-language-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-language-v1beta2/pom.xml b/google-api-grpc/grpc-google-cloud-language-v1beta2/pom.xml index ae92639856de..8ea7143a6bfa 100644 --- a/google-api-grpc/grpc-google-cloud-language-v1beta2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-language-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-language-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-language-v1beta2 GRPC library for grpc-google-cloud-language-v1beta2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-logging-v2/pom.xml b/google-api-grpc/grpc-google-cloud-logging-v2/pom.xml index 479c38df16f5..01d14eeb03ea 100644 --- a/google-api-grpc/grpc-google-cloud-logging-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-logging-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-logging-v2 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-logging-v2 GRPC library for grpc-google-cloud-logging-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-monitoring-v3/pom.xml b/google-api-grpc/grpc-google-cloud-monitoring-v3/pom.xml index 39f621b55ed1..8d2d9badec72 100644 --- a/google-api-grpc/grpc-google-cloud-monitoring-v3/pom.xml +++ b/google-api-grpc/grpc-google-cloud-monitoring-v3/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-monitoring-v3 - 1.63.0 + 1.63.1-SNAPSHOT grpc-google-cloud-monitoring-v3 GRPC library for grpc-google-cloud-monitoring-v3 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-os-login-v1/pom.xml b/google-api-grpc/grpc-google-cloud-os-login-v1/pom.xml index 6a8b09531983..a20a654b1410 100644 --- a/google-api-grpc/grpc-google-cloud-os-login-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-os-login-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-os-login-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-os-login-v1 GRPC library for grpc-google-cloud-os-login-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-phishingprotection-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-phishingprotection-v1beta1/pom.xml index e300e934a94a..d7d73dd6ba69 100644 --- a/google-api-grpc/grpc-google-cloud-phishingprotection-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-phishingprotection-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-phishingprotection-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT grpc-google-cloud-phishingprotection-v1beta1 GRPC library for grpc-google-cloud-phishingprotection-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-pubsub-v1/pom.xml b/google-api-grpc/grpc-google-cloud-pubsub-v1/pom.xml index 5b3b05b791a3..2d7e92589fdf 100644 --- a/google-api-grpc/grpc-google-cloud-pubsub-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-pubsub-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-pubsub-v1 - 1.63.0 + 1.63.1-SNAPSHOT grpc-google-cloud-pubsub-v1 GRPC library for grpc-google-cloud-pubsub-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-recaptchaenterprise-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-recaptchaenterprise-v1beta1/pom.xml index 3b9b25c30ace..812d680f9747 100644 --- a/google-api-grpc/grpc-google-cloud-recaptchaenterprise-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-recaptchaenterprise-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-recaptchaenterprise-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT grpc-google-cloud-recaptchaenterprise-v1beta1 GRPC library for grpc-google-cloud-recaptchaenterprise-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-redis-v1/pom.xml b/google-api-grpc/grpc-google-cloud-redis-v1/pom.xml index 31ae0c614f9d..f530e42de510 100644 --- a/google-api-grpc/grpc-google-cloud-redis-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-redis-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-redis-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-redis-v1 GRPC library for grpc-google-cloud-redis-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-redis-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-redis-v1beta1/pom.xml index adb6b3d70c4c..a42323c02ef8 100644 --- a/google-api-grpc/grpc-google-cloud-redis-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-redis-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-redis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-redis-v1beta1 GRPC library for grpc-google-cloud-redis-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-scheduler-v1/pom.xml b/google-api-grpc/grpc-google-cloud-scheduler-v1/pom.xml index b8f0e7127a8b..3d655b030267 100644 --- a/google-api-grpc/grpc-google-cloud-scheduler-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-scheduler-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-scheduler-v1 - 1.4.0 + 1.4.1-SNAPSHOT grpc-google-cloud-scheduler-v1 GRPC library for grpc-google-cloud-scheduler-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-scheduler-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-scheduler-v1beta1/pom.xml index 54203931f83b..4429b15545f0 100644 --- a/google-api-grpc/grpc-google-cloud-scheduler-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-scheduler-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-scheduler-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-scheduler-v1beta1 GRPC library for grpc-google-cloud-scheduler-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-securitycenter-v1/pom.xml b/google-api-grpc/grpc-google-cloud-securitycenter-v1/pom.xml index ac12fbfa23c0..09d23e77e360 100644 --- a/google-api-grpc/grpc-google-cloud-securitycenter-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-securitycenter-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-securitycenter-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-securitycenter-v1 GRPC library for grpc-google-cloud-securitycenter-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-securitycenter-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-securitycenter-v1beta1/pom.xml index 92d742d5f38e..b1329cca3c8b 100644 --- a/google-api-grpc/grpc-google-cloud-securitycenter-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-securitycenter-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-securitycenter-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-securitycenter-v1beta1 GRPC library for grpc-google-cloud-securitycenter-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-spanner-admin-database-v1/pom.xml b/google-api-grpc/grpc-google-cloud-spanner-admin-database-v1/pom.xml index 5a953c5f804e..58c57048a8e9 100644 --- a/google-api-grpc/grpc-google-cloud-spanner-admin-database-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-spanner-admin-database-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-spanner-admin-database-v1 - 1.26.0 + 1.26.1-SNAPSHOT grpc-google-cloud-spanner-admin-database-v1 GRPC library for grpc-google-cloud-spanner-admin-database-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-spanner-admin-instance-v1/pom.xml b/google-api-grpc/grpc-google-cloud-spanner-admin-instance-v1/pom.xml index def1df98623b..68c3e37b7d2b 100644 --- a/google-api-grpc/grpc-google-cloud-spanner-admin-instance-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-spanner-admin-instance-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-spanner-admin-instance-v1 - 1.26.0 + 1.26.1-SNAPSHOT grpc-google-cloud-spanner-admin-instance-v1 GRPC library for grpc-google-cloud-spanner-admin-instance-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-spanner-v1/pom.xml b/google-api-grpc/grpc-google-cloud-spanner-v1/pom.xml index f075250567fd..6314e867b505 100644 --- a/google-api-grpc/grpc-google-cloud-spanner-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-spanner-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-spanner-v1 - 1.26.0 + 1.26.1-SNAPSHOT grpc-google-cloud-spanner-v1 GRPC library for grpc-google-cloud-spanner-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-speech-v1/pom.xml b/google-api-grpc/grpc-google-cloud-speech-v1/pom.xml index 4134032a4549..8c2c437f4ff5 100644 --- a/google-api-grpc/grpc-google-cloud-speech-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-speech-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-speech-v1 - 1.11.0 + 1.11.1-SNAPSHOT grpc-google-cloud-speech-v1 GRPC library for grpc-google-cloud-speech-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-speech-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-speech-v1beta1/pom.xml index 46a2a389dc21..8b78005b0e70 100644 --- a/google-api-grpc/grpc-google-cloud-speech-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-speech-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-speech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-speech-v1beta1 GRPC library for grpc-google-cloud-speech-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-speech-v1p1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-speech-v1p1beta1/pom.xml index b12ec1ae1660..cf0d7d3b2517 100644 --- a/google-api-grpc/grpc-google-cloud-speech-v1p1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-speech-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-speech-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-speech-v1p1beta1 GRPC library for grpc-google-cloud-speech-v1p1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-talent-v4beta1/pom.xml b/google-api-grpc/grpc-google-cloud-talent-v4beta1/pom.xml index 15b3c797db6c..3bd9f8fed570 100644 --- a/google-api-grpc/grpc-google-cloud-talent-v4beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-talent-v4beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-talent-v4beta1 - 0.16.0-beta + 0.16.1-beta-SNAPSHOT grpc-google-cloud-talent-v4beta1 GRPC library for grpc-google-cloud-talent-v4beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-tasks-v2/pom.xml b/google-api-grpc/grpc-google-cloud-tasks-v2/pom.xml index baf2097a06d2..673d9ca13826 100644 --- a/google-api-grpc/grpc-google-cloud-tasks-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-tasks-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-tasks-v2 - 1.8.0 + 1.8.1-SNAPSHOT grpc-google-cloud-tasks-v2 GRPC library for grpc-google-cloud-tasks-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-tasks-v2beta2/pom.xml b/google-api-grpc/grpc-google-cloud-tasks-v2beta2/pom.xml index 28a7f22b3661..3586a338b8d6 100644 --- a/google-api-grpc/grpc-google-cloud-tasks-v2beta2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-tasks-v2beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-tasks-v2beta2 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-tasks-v2beta2 GRPC library for grpc-google-cloud-tasks-v2beta2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-tasks-v2beta3/pom.xml b/google-api-grpc/grpc-google-cloud-tasks-v2beta3/pom.xml index 3e54cc02b593..bf4e3537820b 100644 --- a/google-api-grpc/grpc-google-cloud-tasks-v2beta3/pom.xml +++ b/google-api-grpc/grpc-google-cloud-tasks-v2beta3/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-tasks-v2beta3 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-tasks-v2beta3 GRPC library for grpc-google-cloud-tasks-v2beta3 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-texttospeech-v1/pom.xml b/google-api-grpc/grpc-google-cloud-texttospeech-v1/pom.xml index efee6a3e030d..1754ece2bafb 100644 --- a/google-api-grpc/grpc-google-cloud-texttospeech-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-texttospeech-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-texttospeech-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-texttospeech-v1 GRPC library for grpc-google-cloud-texttospeech-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-texttospeech-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-texttospeech-v1beta1/pom.xml index ed776ce5b160..79108df30b06 100644 --- a/google-api-grpc/grpc-google-cloud-texttospeech-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-texttospeech-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-texttospeech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-texttospeech-v1beta1 GRPC library for grpc-google-cloud-texttospeech-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-trace-v1/pom.xml b/google-api-grpc/grpc-google-cloud-trace-v1/pom.xml index 01056f0f167b..e9dc955fa05b 100644 --- a/google-api-grpc/grpc-google-cloud-trace-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-trace-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-trace-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-trace-v1 GRPC library for grpc-google-cloud-trace-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-trace-v2/pom.xml b/google-api-grpc/grpc-google-cloud-trace-v2/pom.xml index 853992bd7ccb..9aa656696df2 100644 --- a/google-api-grpc/grpc-google-cloud-trace-v2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-trace-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-trace-v2 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-trace-v2 GRPC library for grpc-google-cloud-trace-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-translate-v3beta1/pom.xml b/google-api-grpc/grpc-google-cloud-translate-v3beta1/pom.xml index 54ce1d786c94..0fa3e13be946 100644 --- a/google-api-grpc/grpc-google-cloud-translate-v3beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-translate-v3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-translate-v3beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-translate-v3beta1 GRPC library for grpc-google-cloud-translate-v3beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1/pom.xml index a119783549df..3159a6fbb318 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-video-intelligence-v1 GRPC library for grpc-google-cloud-video-intelligence-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta1/pom.xml index e660d4ba3beb..60354fb873a2 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-video-intelligence-v1beta1 GRPC library for grpc-google-cloud-video-intelligence-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta2/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta2/pom.xml index 699c9591c9d4..73a971d8d431 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta2/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-video-intelligence-v1beta2 GRPC library for grpc-google-cloud-video-intelligence-v1beta2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p1beta1/pom.xml index 3bd2f57c3043..9040a0c4f856 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-video-intelligence-v1p1beta1 GRPC library for grpc-google-cloud-video-intelligence-v1p1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p2beta1/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p2beta1/pom.xml index 601eee557ee4..2b0e89e2d145 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p2beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1p2beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-video-intelligence-v1p2beta1 GRPC library for grpc-google-cloud-video-intelligence-v1p2beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p3beta1/pom.xml b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p3beta1/pom.xml index 07845e864330..d144d459e830 100644 --- a/google-api-grpc/grpc-google-cloud-video-intelligence-v1p3beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-video-intelligence-v1p3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-video-intelligence-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-video-intelligence-v1p3beta1 GRPC library for grpc-google-cloud-video-intelligence-v1p3beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-vision-v1/pom.xml b/google-api-grpc/grpc-google-cloud-vision-v1/pom.xml index 7aaa981df39a..25efea38d34e 100644 --- a/google-api-grpc/grpc-google-cloud-vision-v1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-vision-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-vision-v1 - 1.63.0 + 1.63.1-SNAPSHOT grpc-google-cloud-vision-v1 GRPC library for grpc-google-cloud-vision-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-vision-v1p1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-vision-v1p1beta1/pom.xml index 20c2887d884c..1bd4b6f3457b 100644 --- a/google-api-grpc/grpc-google-cloud-vision-v1p1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-vision-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-vision-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-vision-v1p1beta1 GRPC library for grpc-google-cloud-vision-v1p1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-vision-v1p2beta1/pom.xml b/google-api-grpc/grpc-google-cloud-vision-v1p2beta1/pom.xml index ab481faa3f5c..5762bb41a1c1 100644 --- a/google-api-grpc/grpc-google-cloud-vision-v1p2beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-vision-v1p2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-vision-v1p2beta1 - 1.63.0 + 1.63.1-SNAPSHOT grpc-google-cloud-vision-v1p2beta1 GRPC library for grpc-google-cloud-vision-v1p2beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-vision-v1p3beta1/pom.xml b/google-api-grpc/grpc-google-cloud-vision-v1p3beta1/pom.xml index 504661bee42f..25298888aeb8 100644 --- a/google-api-grpc/grpc-google-cloud-vision-v1p3beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-vision-v1p3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-vision-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-vision-v1p3beta1 GRPC library for grpc-google-cloud-vision-v1p3beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-vision-v1p4beta1/pom.xml b/google-api-grpc/grpc-google-cloud-vision-v1p4beta1/pom.xml index 488bf4618ac4..8cfb275c70a2 100644 --- a/google-api-grpc/grpc-google-cloud-vision-v1p4beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-vision-v1p4beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-vision-v1p4beta1 - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-vision-v1p4beta1 GRPC library for grpc-google-cloud-vision-v1p4beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-webrisk-v1beta1/pom.xml b/google-api-grpc/grpc-google-cloud-webrisk-v1beta1/pom.xml index 480638ba3500..24de4f11df49 100644 --- a/google-api-grpc/grpc-google-cloud-webrisk-v1beta1/pom.xml +++ b/google-api-grpc/grpc-google-cloud-webrisk-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-webrisk-v1beta1 - 0.14.0-alpha + 0.14.1-alpha-SNAPSHOT grpc-google-cloud-webrisk-v1beta1 GRPC library for grpc-google-cloud-webrisk-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-websecurityscanner-v1alpha/pom.xml b/google-api-grpc/grpc-google-cloud-websecurityscanner-v1alpha/pom.xml index 2cad755fa72b..7f23233e236e 100644 --- a/google-api-grpc/grpc-google-cloud-websecurityscanner-v1alpha/pom.xml +++ b/google-api-grpc/grpc-google-cloud-websecurityscanner-v1alpha/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-websecurityscanner-v1alpha - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-websecurityscanner-v1alpha GRPC library for grpc-google-cloud-websecurityscanner-v1alpha com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/grpc-google-cloud-websecurityscanner-v1beta/pom.xml b/google-api-grpc/grpc-google-cloud-websecurityscanner-v1beta/pom.xml index 909de31a2366..26dd9c59fd98 100644 --- a/google-api-grpc/grpc-google-cloud-websecurityscanner-v1beta/pom.xml +++ b/google-api-grpc/grpc-google-cloud-websecurityscanner-v1beta/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 grpc-google-cloud-websecurityscanner-v1beta - 0.64.0 + 0.64.1-SNAPSHOT grpc-google-cloud-websecurityscanner-v1beta GRPC library for grpc-google-cloud-websecurityscanner-v1beta com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/pom.xml b/google-api-grpc/pom.xml index 796b8aa02829..1006937f0e03 100644 --- a/google-api-grpc/pom.xml +++ b/google-api-grpc/pom.xml @@ -4,7 +4,7 @@ com.google.api.grpc google-api-grpc pom - 0.64.0 + 0.64.1-SNAPSHOT Google Cloud API gRPC https://github.com/googleapis/google-cloud-java/tree/master/google-api-grpc @@ -143,677 +143,677 @@ com.google.api.grpc proto-google-cloud-asset-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-asset-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-asset-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-asset-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-automl-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-automl-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-bigtable-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigtable-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-bigtable-admin-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigtable-admin-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-bigquerydatatransfer-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigquerydatatransfer-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-bigquerystorage-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigquerystorage-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-container-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-container-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-containeranalysis-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-containeranalysis-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-containeranalysis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-containeranalysis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-datacatalog-v1beta1 - 0.12.0-alpha + 0.12.1-alpha-SNAPSHOT com.google.api.grpc grpc-google-cloud-datacatalog-v1beta1 - 0.12.0-alpha + 0.12.1-alpha-SNAPSHOT com.google.api.grpc proto-google-cloud-datalabeling-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-datalabeling-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-dataproc-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-dataproc-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-dataproc-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-dataproc-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-datastore-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-dlp-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-dlp-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-dialogflow-v2beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-dialogflow-v2beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-dialogflow-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-dialogflow-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-error-reporting-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-error-reporting-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-firestore-admin-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc proto-google-cloud-firestore-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc proto-google-cloud-firestore-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-firestore-admin-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-firestore-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-firestore-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-kms-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-kms-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-language-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-language-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc proto-google-cloud-language-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-language-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-logging-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-logging-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-monitoring-v3 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-monitoring-v3 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc proto-google-cloud-os-login-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-os-login-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-pubsub-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-pubsub-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc proto-google-cloud-redis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-redis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-redis-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-redis-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-scheduler-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-scheduler-v1 - 1.4.0 + 1.4.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-scheduler-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-scheduler-v1 - 1.4.0 + 1.4.1-SNAPSHOT com.google.api.grpc proto-google-cloud-spanner-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-spanner-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc proto-google-cloud-spanner-admin-database-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-spanner-admin-database-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc proto-google-cloud-spanner-admin-instance-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-spanner-admin-instance-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc proto-google-cloud-speech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-speech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-speech-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-speech-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-speech-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-speech-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc proto-google-cloud-tasks-v2 - 1.8.0 + 1.8.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-tasks-v2 - 1.8.0 + 1.8.1-SNAPSHOT com.google.api.grpc proto-google-cloud-tasks-v2beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-tasks-v2beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-tasks-v2beta3 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-tasks-v2beta3 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-texttospeech-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-texttospeech-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-texttospeech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-texttospeech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-trace-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-trace-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-translate-v3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-translate-v3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-trace-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-trace-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-vision-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-vision-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc proto-google-cloud-vision-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-vision-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-vision-v1p2beta1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-vision-v1p2beta1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc proto-google-cloud-vision-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-vision-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-vision-v1p4beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-vision-v1p4beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1p2beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1p2beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-iot-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-iot-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-securitycenter-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-securitycenter-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-securitycenter-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-securitycenter-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-websecurityscanner-v1alpha - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-websecurityscanner-v1alpha - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-websecurityscanner-v1beta - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-websecurityscanner-v1beta - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-iamcredentials-v1 - 0.26.0-alpha + 0.26.1-alpha-SNAPSHOT com.google.api.grpc grpc-google-cloud-iamcredentials-v1 - 0.26.0-alpha + 0.26.1-alpha-SNAPSHOT com.google.api.grpc proto-google-cloud-talent-v4beta1 - 0.16.0-beta + 0.16.1-beta-SNAPSHOT com.google.api.grpc grpc-google-cloud-talent-v4beta1 - 0.16.0-beta + 0.16.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-webrisk-v1beta1 - 0.14.0-alpha + 0.14.1-alpha-SNAPSHOT com.google.api.grpc grpc-google-cloud-webrisk-v1beta1 - 0.14.0-alpha + 0.14.1-alpha-SNAPSHOT com.google.api.grpc proto-google-cloud-phishingprotection-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-phishingprotection-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT com.google.api.grpc proto-google-cloud-recaptchaenterprise-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-recaptchaenterprise-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-asset-v1/pom.xml b/google-api-grpc/proto-google-cloud-asset-v1/pom.xml index 9c0143f8ef14..491a2f676560 100644 --- a/google-api-grpc/proto-google-cloud-asset-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-asset-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-asset-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-asset-v1 PROTO library for proto-google-cloud-asset-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-asset-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-asset-v1beta1/pom.xml index 48e8d49dbf84..63120ee0e33a 100644 --- a/google-api-grpc/proto-google-cloud-asset-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-asset-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-asset-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-asset-v1beta1 PROTO library for proto-google-cloud-asset-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-automl-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-automl-v1beta1/pom.xml index 13c8b1a24c19..f134bede1f90 100644 --- a/google-api-grpc/proto-google-cloud-automl-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-automl-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-automl-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-automl-v1beta1 PROTO library for proto-google-cloud-automl-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-bigquerydatatransfer-v1/pom.xml b/google-api-grpc/proto-google-cloud-bigquerydatatransfer-v1/pom.xml index 9888901dcc3f..2f3bf0e9cbf7 100644 --- a/google-api-grpc/proto-google-cloud-bigquerydatatransfer-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-bigquerydatatransfer-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-bigquerydatatransfer-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-bigquerydatatransfer-v1 PROTO library for proto-google-cloud-bigquerydatatransfer-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/pom.xml index a80c9d7523a3..e694b8209118 100644 --- a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-bigquerystorage-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-bigquerystorage-v1beta1 PROTO library for proto-google-cloud-bigquerystorage-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-bigtable-admin-v2/pom.xml b/google-api-grpc/proto-google-cloud-bigtable-admin-v2/pom.xml index 6fb536dbd1d3..a08d83462564 100644 --- a/google-api-grpc/proto-google-cloud-bigtable-admin-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-bigtable-admin-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-bigtable-admin-v2 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-bigtable-admin-v2 PROTO library for proto-google-cloud-bigtable-admin-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-bigtable-v2/pom.xml b/google-api-grpc/proto-google-cloud-bigtable-v2/pom.xml index 176b14e45671..11b65b8de8ca 100644 --- a/google-api-grpc/proto-google-cloud-bigtable-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-bigtable-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-bigtable-v2 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-bigtable-v2 PROTO library for proto-google-cloud-bigtable-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-container-v1/pom.xml b/google-api-grpc/proto-google-cloud-container-v1/pom.xml index 6c7987f84aad..f87467f5a4ee 100644 --- a/google-api-grpc/proto-google-cloud-container-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-container-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-container-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-container-v1 PROTO library for proto-google-cloud-container-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-containeranalysis-v1/pom.xml b/google-api-grpc/proto-google-cloud-containeranalysis-v1/pom.xml index 523beaaac63e..1605342afea7 100644 --- a/google-api-grpc/proto-google-cloud-containeranalysis-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-containeranalysis-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-containeranalysis-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-containeranalysis-v1 PROTO library for proto-google-cloud-containeranalysis-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-containeranalysis-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-containeranalysis-v1beta1/pom.xml index 9823dcf0f67d..d3e847c8639e 100644 --- a/google-api-grpc/proto-google-cloud-containeranalysis-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-containeranalysis-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-containeranalysis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-containeranalysis-v1beta1 PROTO library for proto-google-cloud-containeranalysis-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-datacatalog-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-datacatalog-v1beta1/pom.xml index ad4fa491770e..8a85a1af5075 100644 --- a/google-api-grpc/proto-google-cloud-datacatalog-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-datacatalog-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-datacatalog-v1beta1 - 0.12.0-alpha + 0.12.1-alpha-SNAPSHOT proto-google-cloud-datacatalog-v1beta1 PROTO library for proto-google-cloud-datacatalog-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-datalabeling-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-datalabeling-v1beta1/pom.xml index 26c7e39ba3af..638d0d98dd8f 100644 --- a/google-api-grpc/proto-google-cloud-datalabeling-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-datalabeling-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-datalabeling-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-datalabeling-v1beta1 PROTO library for proto-google-cloud-datalabeling-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-dataproc-v1/pom.xml b/google-api-grpc/proto-google-cloud-dataproc-v1/pom.xml index 212406d2e1f1..f49a3f63b124 100644 --- a/google-api-grpc/proto-google-cloud-dataproc-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-dataproc-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-dataproc-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-dataproc-v1 PROTO library for proto-google-cloud-dataproc-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-dataproc-v1beta2/pom.xml b/google-api-grpc/proto-google-cloud-dataproc-v1beta2/pom.xml index aae94cd70458..9543defcc277 100644 --- a/google-api-grpc/proto-google-cloud-dataproc-v1beta2/pom.xml +++ b/google-api-grpc/proto-google-cloud-dataproc-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-dataproc-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-dataproc-v1beta2 PROTO library for proto-google-cloud-dataproc-v1beta2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-datastore-v1/pom.xml b/google-api-grpc/proto-google-cloud-datastore-v1/pom.xml index 71d29494a8a0..ee2e56424f95 100644 --- a/google-api-grpc/proto-google-cloud-datastore-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-datastore-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-datastore-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-datastore-v1 PROTO library for proto-google-cloud-datastore-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-dialogflow-v2/pom.xml b/google-api-grpc/proto-google-cloud-dialogflow-v2/pom.xml index b64cc6bc0019..eaf8b1569626 100644 --- a/google-api-grpc/proto-google-cloud-dialogflow-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-dialogflow-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-dialogflow-v2 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-dialogflow-v2 PROTO library for proto-google-cloud-dialogflow-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-dialogflow-v2beta1/pom.xml b/google-api-grpc/proto-google-cloud-dialogflow-v2beta1/pom.xml index 0e2f2e4165ac..7c4cab352363 100644 --- a/google-api-grpc/proto-google-cloud-dialogflow-v2beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-dialogflow-v2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-dialogflow-v2beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-dialogflow-v2beta1 PROTO library for proto-google-cloud-dialogflow-v2beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-dlp-v2/pom.xml b/google-api-grpc/proto-google-cloud-dlp-v2/pom.xml index 88205959aa17..dd9a3a7f9f03 100644 --- a/google-api-grpc/proto-google-cloud-dlp-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-dlp-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-dlp-v2 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-dlp-v2 PROTO library for proto-google-cloud-dlp-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-error-reporting-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-error-reporting-v1beta1/pom.xml index 7156877aa034..6c43f050aaf9 100644 --- a/google-api-grpc/proto-google-cloud-error-reporting-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-error-reporting-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-error-reporting-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-error-reporting-v1beta1 PROTO library for proto-google-cloud-error-reporting-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-firestore-admin-v1/pom.xml b/google-api-grpc/proto-google-cloud-firestore-admin-v1/pom.xml index 52d20fa1de1f..9b185616ac5f 100644 --- a/google-api-grpc/proto-google-cloud-firestore-admin-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-firestore-admin-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-firestore-admin-v1 - 1.11.0 + 1.11.1-SNAPSHOT proto-google-cloud-firestore-admin-v1 PROTO library for proto-google-cloud-firestore-admin-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-firestore-v1/pom.xml b/google-api-grpc/proto-google-cloud-firestore-v1/pom.xml index 50292b2d892b..8a0fdf82a5ff 100644 --- a/google-api-grpc/proto-google-cloud-firestore-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-firestore-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-firestore-v1 - 1.11.0 + 1.11.1-SNAPSHOT proto-google-cloud-firestore-v1 PROTO library for proto-google-cloud-firestore-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-firestore-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-firestore-v1beta1/pom.xml index 1972ffa9c713..0b6ebca97843 100644 --- a/google-api-grpc/proto-google-cloud-firestore-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-firestore-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-firestore-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-firestore-v1beta1 PROTO library for proto-google-cloud-firestore-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-iamcredentials-v1/pom.xml b/google-api-grpc/proto-google-cloud-iamcredentials-v1/pom.xml index f21029961a9d..e221ffeb29ba 100644 --- a/google-api-grpc/proto-google-cloud-iamcredentials-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-iamcredentials-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-iamcredentials-v1 - 0.26.0-alpha + 0.26.1-alpha-SNAPSHOT proto-google-cloud-iamcredentials-v1 PROTO library for proto-google-cloud-iamcredentials-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-iot-v1/pom.xml b/google-api-grpc/proto-google-cloud-iot-v1/pom.xml index 2139e0878f55..14dbd7b46d18 100644 --- a/google-api-grpc/proto-google-cloud-iot-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-iot-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-iot-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-iot-v1 PROTO library for proto-google-cloud-iot-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-kms-v1/pom.xml b/google-api-grpc/proto-google-cloud-kms-v1/pom.xml index b2a9e4411426..60b316e90bdb 100644 --- a/google-api-grpc/proto-google-cloud-kms-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-kms-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-kms-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-kms-v1 PROTO library for proto-google-cloud-kms-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-language-v1/pom.xml b/google-api-grpc/proto-google-cloud-language-v1/pom.xml index 088f85bda4eb..2b9b6a52c384 100644 --- a/google-api-grpc/proto-google-cloud-language-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-language-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-language-v1 - 1.63.0 + 1.63.1-SNAPSHOT proto-google-cloud-language-v1 PROTO library for proto-google-cloud-language-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-language-v1beta2/pom.xml b/google-api-grpc/proto-google-cloud-language-v1beta2/pom.xml index 0b8d876a67e1..f33bb920fd83 100644 --- a/google-api-grpc/proto-google-cloud-language-v1beta2/pom.xml +++ b/google-api-grpc/proto-google-cloud-language-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-language-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-language-v1beta2 PROTO library for proto-google-cloud-language-v1beta2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-logging-v2/pom.xml b/google-api-grpc/proto-google-cloud-logging-v2/pom.xml index f2538ce986d9..7e3fe0cbea2d 100644 --- a/google-api-grpc/proto-google-cloud-logging-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-logging-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-logging-v2 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-logging-v2 PROTO library for proto-google-cloud-logging-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-monitoring-v3/pom.xml b/google-api-grpc/proto-google-cloud-monitoring-v3/pom.xml index bb8367ff969e..ad0b9e50d5b5 100644 --- a/google-api-grpc/proto-google-cloud-monitoring-v3/pom.xml +++ b/google-api-grpc/proto-google-cloud-monitoring-v3/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-monitoring-v3 - 1.63.0 + 1.63.1-SNAPSHOT proto-google-cloud-monitoring-v3 PROTO library for proto-google-cloud-monitoring-v3 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-os-login-v1/pom.xml b/google-api-grpc/proto-google-cloud-os-login-v1/pom.xml index 57931d53688e..c5e0b0980028 100644 --- a/google-api-grpc/proto-google-cloud-os-login-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-os-login-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-os-login-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-os-login-v1 PROTO library for proto-google-cloud-os-login-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-phishingprotection-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-phishingprotection-v1beta1/pom.xml index c6fb44a3ab4b..dfa4cbf616fe 100644 --- a/google-api-grpc/proto-google-cloud-phishingprotection-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-phishingprotection-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-phishingprotection-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT proto-google-cloud-phishingprotection-v1beta1 PROTO library for proto-google-cloud-phishingprotection-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-pubsub-v1/pom.xml b/google-api-grpc/proto-google-cloud-pubsub-v1/pom.xml index 84eca144c7fa..313b7e7bb235 100644 --- a/google-api-grpc/proto-google-cloud-pubsub-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-pubsub-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-pubsub-v1 - 1.63.0 + 1.63.1-SNAPSHOT proto-google-cloud-pubsub-v1 PROTO library for proto-google-cloud-pubsub-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-recaptchaenterprise-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-recaptchaenterprise-v1beta1/pom.xml index a7c463c082f7..63a29fd7a091 100644 --- a/google-api-grpc/proto-google-cloud-recaptchaenterprise-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-recaptchaenterprise-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-recaptchaenterprise-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT proto-google-cloud-recaptchaenterprise-v1beta1 PROTO library for proto-google-cloud-recaptchaenterprise-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-redis-v1/pom.xml b/google-api-grpc/proto-google-cloud-redis-v1/pom.xml index d35c1672c937..493b40c8588f 100644 --- a/google-api-grpc/proto-google-cloud-redis-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-redis-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-redis-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-redis-v1 PROTO library for proto-google-cloud-redis-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-redis-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-redis-v1beta1/pom.xml index d22ffe649b53..d9ad73dce565 100644 --- a/google-api-grpc/proto-google-cloud-redis-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-redis-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-redis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-redis-v1beta1 PROTO library for proto-google-cloud-redis-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-scheduler-v1/pom.xml b/google-api-grpc/proto-google-cloud-scheduler-v1/pom.xml index 6fec74c2153b..157457b3c208 100644 --- a/google-api-grpc/proto-google-cloud-scheduler-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-scheduler-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-scheduler-v1 - 1.4.0 + 1.4.1-SNAPSHOT proto-google-cloud-scheduler-v1 PROTO library for proto-google-cloud-scheduler-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-scheduler-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-scheduler-v1beta1/pom.xml index b4b8b33abde6..578b2fc4aa2f 100644 --- a/google-api-grpc/proto-google-cloud-scheduler-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-scheduler-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-scheduler-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-scheduler-v1beta1 PROTO library for proto-google-cloud-scheduler-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-securitycenter-v1/pom.xml b/google-api-grpc/proto-google-cloud-securitycenter-v1/pom.xml index 67b2093f2877..ea494354b49e 100644 --- a/google-api-grpc/proto-google-cloud-securitycenter-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-securitycenter-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-securitycenter-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-securitycenter-v1 PROTO library for proto-google-cloud-securitycenter-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-securitycenter-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-securitycenter-v1beta1/pom.xml index 0592ede06762..bf856079eba9 100644 --- a/google-api-grpc/proto-google-cloud-securitycenter-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-securitycenter-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-securitycenter-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-securitycenter-v1beta1 PROTO library for proto-google-cloud-securitycenter-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-spanner-admin-database-v1/pom.xml b/google-api-grpc/proto-google-cloud-spanner-admin-database-v1/pom.xml index 6c6919cfeffd..f6491cb1b772 100644 --- a/google-api-grpc/proto-google-cloud-spanner-admin-database-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-spanner-admin-database-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-spanner-admin-database-v1 - 1.26.0 + 1.26.1-SNAPSHOT proto-google-cloud-spanner-admin-database-v1 PROTO library for proto-google-cloud-spanner-admin-database-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-spanner-admin-instance-v1/pom.xml b/google-api-grpc/proto-google-cloud-spanner-admin-instance-v1/pom.xml index 54252a5a5660..85bc3034daab 100644 --- a/google-api-grpc/proto-google-cloud-spanner-admin-instance-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-spanner-admin-instance-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-spanner-admin-instance-v1 - 1.26.0 + 1.26.1-SNAPSHOT proto-google-cloud-spanner-admin-instance-v1 PROTO library for proto-google-cloud-spanner-admin-instance-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-spanner-v1/pom.xml b/google-api-grpc/proto-google-cloud-spanner-v1/pom.xml index d4f31b98a1dd..2002602bc2c3 100644 --- a/google-api-grpc/proto-google-cloud-spanner-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-spanner-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-spanner-v1 - 1.26.0 + 1.26.1-SNAPSHOT proto-google-cloud-spanner-v1 PROTO library for proto-google-cloud-spanner-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-speech-v1/pom.xml b/google-api-grpc/proto-google-cloud-speech-v1/pom.xml index c929b4843270..005c4aa62474 100644 --- a/google-api-grpc/proto-google-cloud-speech-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-speech-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-speech-v1 - 1.11.0 + 1.11.1-SNAPSHOT proto-google-cloud-speech-v1 PROTO library for proto-google-cloud-speech-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-speech-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-speech-v1beta1/pom.xml index 0016b32eb694..9b730cf7cd34 100644 --- a/google-api-grpc/proto-google-cloud-speech-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-speech-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-speech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-speech-v1beta1 PROTO library for proto-google-cloud-speech-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-speech-v1p1beta1/pom.xml b/google-api-grpc/proto-google-cloud-speech-v1p1beta1/pom.xml index 56debcc52a91..8dd1fe5b17db 100644 --- a/google-api-grpc/proto-google-cloud-speech-v1p1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-speech-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-speech-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-speech-v1p1beta1 PROTO library for proto-google-cloud-speech-v1p1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-talent-v4beta1/pom.xml b/google-api-grpc/proto-google-cloud-talent-v4beta1/pom.xml index ba1a0cfce8fa..91d4d0ca5deb 100644 --- a/google-api-grpc/proto-google-cloud-talent-v4beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-talent-v4beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-talent-v4beta1 - 0.16.0-beta + 0.16.1-beta-SNAPSHOT proto-google-cloud-talent-v4beta1 PROTO library for proto-google-cloud-talent-v4beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-tasks-v2/pom.xml b/google-api-grpc/proto-google-cloud-tasks-v2/pom.xml index 869fbba8cb53..43f5b70e0bad 100644 --- a/google-api-grpc/proto-google-cloud-tasks-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-tasks-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-tasks-v2 - 1.8.0 + 1.8.1-SNAPSHOT proto-google-cloud-tasks-v2 PROTO library for proto-google-cloud-tasks-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-tasks-v2beta2/pom.xml b/google-api-grpc/proto-google-cloud-tasks-v2beta2/pom.xml index 103da511dde3..a743abcdf7ab 100644 --- a/google-api-grpc/proto-google-cloud-tasks-v2beta2/pom.xml +++ b/google-api-grpc/proto-google-cloud-tasks-v2beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-tasks-v2beta2 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-tasks-v2beta2 PROTO library for proto-google-cloud-tasks-v2beta2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-tasks-v2beta3/pom.xml b/google-api-grpc/proto-google-cloud-tasks-v2beta3/pom.xml index 894cd58131d4..e1d01bbdfb65 100644 --- a/google-api-grpc/proto-google-cloud-tasks-v2beta3/pom.xml +++ b/google-api-grpc/proto-google-cloud-tasks-v2beta3/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-tasks-v2beta3 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-tasks-v2beta3 PROTO library for proto-google-cloud-tasks-v2beta3 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-texttospeech-v1/pom.xml b/google-api-grpc/proto-google-cloud-texttospeech-v1/pom.xml index 3ed77388ccf2..c0d08028513f 100644 --- a/google-api-grpc/proto-google-cloud-texttospeech-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-texttospeech-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-texttospeech-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-texttospeech-v1 PROTO library for proto-google-cloud-texttospeech-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-texttospeech-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-texttospeech-v1beta1/pom.xml index 2e81f20da303..fb6fb1e41a1a 100644 --- a/google-api-grpc/proto-google-cloud-texttospeech-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-texttospeech-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-texttospeech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-texttospeech-v1beta1 PROTO library for proto-google-cloud-texttospeech-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-trace-v1/pom.xml b/google-api-grpc/proto-google-cloud-trace-v1/pom.xml index a854e41c78e5..6f17154257a2 100644 --- a/google-api-grpc/proto-google-cloud-trace-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-trace-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-trace-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-trace-v1 PROTO library for proto-google-cloud-trace-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-trace-v2/pom.xml b/google-api-grpc/proto-google-cloud-trace-v2/pom.xml index cb987bcf0b5d..278e39101a5f 100644 --- a/google-api-grpc/proto-google-cloud-trace-v2/pom.xml +++ b/google-api-grpc/proto-google-cloud-trace-v2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-trace-v2 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-trace-v2 PROTO library for proto-google-cloud-trace-v2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-translate-v3beta1/pom.xml b/google-api-grpc/proto-google-cloud-translate-v3beta1/pom.xml index 79a0d31a0a62..5642317d8474 100644 --- a/google-api-grpc/proto-google-cloud-translate-v3beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-translate-v3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-translate-v3beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-translate-v3beta1 PROTO library for proto-google-cloud-translate-v3beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1/pom.xml index e90019a232ef..ab0aa764f1b9 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-video-intelligence-v1 PROTO library for proto-google-cloud-video-intelligence-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/pom.xml index f2b93387e2a5..ea505026dee3 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-video-intelligence-v1beta1 PROTO library for proto-google-cloud-video-intelligence-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/pom.xml index 7c76ee5298a7..ed5acfc086f9 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-video-intelligence-v1beta2 PROTO library for proto-google-cloud-video-intelligence-v1beta2 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/pom.xml index 5db301766f08..c9c34d953d29 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-video-intelligence-v1p1beta1 PROTO library for proto-google-cloud-video-intelligence-v1p1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/pom.xml index 786a1cb59726..86c9f6c9c050 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1p2beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-video-intelligence-v1p2beta1 PROTO library for proto-google-cloud-video-intelligence-v1p2beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/pom.xml b/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/pom.xml index 58fe27050af6..69471375db01 100644 --- a/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-video-intelligence-v1p3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-video-intelligence-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-video-intelligence-v1p3beta1 PROTO library for proto-google-cloud-video-intelligence-v1p3beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-vision-v1/pom.xml b/google-api-grpc/proto-google-cloud-vision-v1/pom.xml index 716a344fa89b..ad7f99a25407 100644 --- a/google-api-grpc/proto-google-cloud-vision-v1/pom.xml +++ b/google-api-grpc/proto-google-cloud-vision-v1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-vision-v1 - 1.63.0 + 1.63.1-SNAPSHOT proto-google-cloud-vision-v1 PROTO library for proto-google-cloud-vision-v1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-vision-v1p1beta1/pom.xml b/google-api-grpc/proto-google-cloud-vision-v1p1beta1/pom.xml index 506fbda1ca24..2596b05dcbd9 100644 --- a/google-api-grpc/proto-google-cloud-vision-v1p1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-vision-v1p1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-vision-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-vision-v1p1beta1 PROTO library for proto-google-cloud-vision-v1p1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-vision-v1p2beta1/pom.xml b/google-api-grpc/proto-google-cloud-vision-v1p2beta1/pom.xml index f98b7786e229..860ee823a136 100644 --- a/google-api-grpc/proto-google-cloud-vision-v1p2beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-vision-v1p2beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-vision-v1p2beta1 - 1.63.0 + 1.63.1-SNAPSHOT proto-google-cloud-vision-v1p2beta1 PROTO library for proto-google-cloud-vision-v1p2beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-vision-v1p3beta1/pom.xml b/google-api-grpc/proto-google-cloud-vision-v1p3beta1/pom.xml index cb6f62aa3b8a..512e099e30f9 100644 --- a/google-api-grpc/proto-google-cloud-vision-v1p3beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-vision-v1p3beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-vision-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-vision-v1p3beta1 PROTO library for proto-google-cloud-vision-v1p3beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-vision-v1p4beta1/pom.xml b/google-api-grpc/proto-google-cloud-vision-v1p4beta1/pom.xml index db2dd4641ecc..61f3ea483ab7 100644 --- a/google-api-grpc/proto-google-cloud-vision-v1p4beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-vision-v1p4beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-vision-v1p4beta1 - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-vision-v1p4beta1 PROTO library for proto-google-cloud-vision-v1p4beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-webrisk-v1beta1/pom.xml b/google-api-grpc/proto-google-cloud-webrisk-v1beta1/pom.xml index 8b0887024727..9e1e86c36056 100644 --- a/google-api-grpc/proto-google-cloud-webrisk-v1beta1/pom.xml +++ b/google-api-grpc/proto-google-cloud-webrisk-v1beta1/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-webrisk-v1beta1 - 0.14.0-alpha + 0.14.1-alpha-SNAPSHOT proto-google-cloud-webrisk-v1beta1 PROTO library for proto-google-cloud-webrisk-v1beta1 com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-websecurityscanner-v1alpha/pom.xml b/google-api-grpc/proto-google-cloud-websecurityscanner-v1alpha/pom.xml index 145551ff2a96..f61fa50533e4 100644 --- a/google-api-grpc/proto-google-cloud-websecurityscanner-v1alpha/pom.xml +++ b/google-api-grpc/proto-google-cloud-websecurityscanner-v1alpha/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-websecurityscanner-v1alpha - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-websecurityscanner-v1alpha PROTO library for proto-google-cloud-websecurityscanner-v1alpha com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-api-grpc/proto-google-cloud-websecurityscanner-v1beta/pom.xml b/google-api-grpc/proto-google-cloud-websecurityscanner-v1beta/pom.xml index 4f615565a98c..e1885a7a361b 100644 --- a/google-api-grpc/proto-google-cloud-websecurityscanner-v1beta/pom.xml +++ b/google-api-grpc/proto-google-cloud-websecurityscanner-v1beta/pom.xml @@ -3,13 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 proto-google-cloud-websecurityscanner-v1beta - 0.64.0 + 0.64.1-SNAPSHOT proto-google-cloud-websecurityscanner-v1beta PROTO library for proto-google-cloud-websecurityscanner-v1beta com.google.api.grpc google-api-grpc - 0.64.0 + 0.64.1-SNAPSHOT diff --git a/google-cloud-bom/pom.xml b/google-cloud-bom/pom.xml index 23e916f2c061..5efd71ffc1c5 100644 --- a/google-cloud-bom/pom.xml +++ b/google-cloud-bom/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-bom pom - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT Google Cloud Java BOM https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-bom @@ -197,923 +197,923 @@ com.google.cloud google-cloud-asset - 0.99.0-beta + 0.99.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-asset-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-asset-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-asset-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-asset-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-automl - 0.99.0-beta + 0.99.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-automl-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-automl-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-bigtable - 0.99.0 + 0.99.1-SNAPSHOT com.google.api.grpc proto-google-cloud-bigtable-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigtable-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-bigtable-admin-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigtable-admin-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-bigtable-emulator - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.cloud google-cloud-bigquery - 1.81.0 + 1.81.1-SNAPSHOT com.google.cloud google-cloud-bigquerydatatransfer - 0.99.0-beta + 0.99.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-bigquerydatatransfer-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigquerydatatransfer-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-bigquerystorage-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigquerystorage-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-compute - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.cloud google-cloud-container - 0.99.0-beta + 0.99.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-container-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-container-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-containeranalysis - 0.99.0-beta + 0.99.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-containeranalysis-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-containeranalysis-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-containeranalysis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-containeranalysis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-contrib - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.cloud google-cloud-nio - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.cloud google-cloud-core - 1.81.0 + 1.81.1-SNAPSHOT com.google.cloud google-cloud-core-grpc - 1.81.0 + 1.81.1-SNAPSHOT com.google.cloud google-cloud-core-http - 1.81.0 + 1.81.1-SNAPSHOT com.google.cloud google-cloud-datacatalog - 0.12.0-alpha + 0.12.1-alpha-SNAPSHOT com.google.api.grpc proto-google-cloud-datacatalog-v1beta1 - 0.12.0-alpha + 0.12.1-alpha-SNAPSHOT com.google.api.grpc grpc-google-cloud-datacatalog-v1beta1 - 0.12.0-alpha + 0.12.1-alpha-SNAPSHOT com.google.cloud google-cloud-datalabeling - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.api.grpc proto-google-cloud-datalabeling-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-datalabeling-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-dataproc - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.api.grpc proto-google-cloud-dataproc-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-dataproc-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-dataproc-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-dataproc-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-datastore - 1.81.0 + 1.81.1-SNAPSHOT com.google.api.grpc proto-google-cloud-datastore-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-dlp - 0.99.0-beta + 0.99.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-dlp-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-dlp-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-dialogflow - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.api.grpc proto-google-cloud-dialogflow-v2beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-dialogflow-v2beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-dialogflow-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-dialogflow-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-dns - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.cloud google-cloud-errorreporting - 0.99.0-beta + 0.99.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-error-reporting-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-error-reporting-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-firestore - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc proto-google-cloud-firestore-admin-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc proto-google-cloud-firestore-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc proto-google-cloud-firestore-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-firestore-admin-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-firestore-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-firestore-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-kms - 1.17.0 + 1.17.1-SNAPSHOT com.google.api.grpc proto-google-cloud-kms-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-kms-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-language - 1.81.0 + 1.81.1-SNAPSHOT com.google.api.grpc proto-google-cloud-language-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-language-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc proto-google-cloud-language-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-language-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-logging - 1.81.0 + 1.81.1-SNAPSHOT com.google.api.grpc proto-google-cloud-logging-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-logging-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-logging-logback - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.cloud google-cloud-monitoring - 1.81.0 + 1.81.1-SNAPSHOT com.google.api.grpc proto-google-cloud-monitoring-v3 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-monitoring-v3 - 1.63.0 + 1.63.1-SNAPSHOT com.google.cloud google-cloud-os-login - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.api.grpc proto-google-cloud-os-login-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-os-login-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-pubsub - 1.81.0 + 1.81.1-SNAPSHOT com.google.api.grpc proto-google-cloud-pubsub-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-pubsub-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.cloud google-cloud-redis - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.api.grpc proto-google-cloud-redis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-redis-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-redis-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-redis-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-resourcemanager - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT com.google.cloud google-cloud-scheduler - 1.4.0 + 1.4.1-SNAPSHOT com.google.api.grpc proto-google-cloud-scheduler-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-scheduler-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-securitycenter - 0.99.0 + 0.99.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-scheduler-v1 - 1.4.0 + 1.4.1-SNAPSHOT com.google.api.grpc proto-google-cloud-scheduler-v1 - 1.4.0 + 1.4.1-SNAPSHOT com.google.api.grpc proto-google-cloud-securitycenter-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-securitycenter-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-securitycenter-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-securitycenter-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-spanner - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc proto-google-cloud-spanner-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-spanner-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc proto-google-cloud-spanner-admin-database-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-spanner-admin-database-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc proto-google-cloud-spanner-admin-instance-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-spanner-admin-instance-v1 - 1.26.0 + 1.26.1-SNAPSHOT com.google.cloud google-cloud-speech - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc proto-google-cloud-speech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-speech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-speech-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-speech-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-speech-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-speech-v1 - 1.11.0 + 1.11.1-SNAPSHOT com.google.cloud google-cloud-storage - 1.81.0 + 1.81.1-SNAPSHOT com.google.cloud google-cloud-tasks - 1.8.0 + 1.8.1-SNAPSHOT com.google.api.grpc proto-google-cloud-tasks-v2 - 1.8.0 + 1.8.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-tasks-v2 - 1.8.0 + 1.8.1-SNAPSHOT com.google.api.grpc proto-google-cloud-tasks-v2beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-tasks-v2beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-tasks-v2beta3 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-tasks-v2beta3 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-texttospeech - 0.99.0-beta + 0.99.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-texttospeech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-texttospeech-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-texttospeech-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-texttospeech-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-trace - 0.99.0-beta + 0.99.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-trace-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-trace-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-trace-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-trace-v2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-translate-v3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-translate-v3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-translate - 1.81.0 + 1.81.1-SNAPSHOT com.google.cloud google-cloud-vision - 1.81.0 + 1.81.1-SNAPSHOT com.google.api.grpc proto-google-cloud-vision-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-vision-v1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc proto-google-cloud-vision-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-vision-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-vision-v1p2beta1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-vision-v1p2beta1 - 1.63.0 + 1.63.1-SNAPSHOT com.google.api.grpc proto-google-cloud-vision-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-vision-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-vision-v1p4beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-vision-v1p4beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.cloud google-cloud-video-intelligence - 0.99.0-beta + 0.99.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1beta2 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1p1beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1p2beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1p2beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-video-intelligence-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-video-intelligence-v1p3beta1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-iot-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-iot-v1 - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-websecurityscanner-v1alpha - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-websecurityscanner-v1alpha - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-websecurityscanner-v1beta - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-websecurityscanner-v1beta - 0.64.0 + 0.64.1-SNAPSHOT com.google.api.grpc proto-google-cloud-iamcredentials-v1 - 0.26.0-alpha + 0.26.1-alpha-SNAPSHOT com.google.api.grpc grpc-google-cloud-iamcredentials-v1 - 0.26.0-alpha + 0.26.1-alpha-SNAPSHOT com.google.cloud google-cloud-iamcredentials - 0.26.0-alpha + 0.26.1-alpha-SNAPSHOT com.google.api.grpc proto-google-cloud-talent-v4beta1 - 0.16.0-beta + 0.16.1-beta-SNAPSHOT com.google.api.grpc grpc-google-cloud-talent-v4beta1 - 0.16.0-beta + 0.16.1-beta-SNAPSHOT com.google.cloud google-cloud-talent - 0.16.0-beta + 0.16.1-beta-SNAPSHOT com.google.api.grpc proto-google-cloud-webrisk-v1beta1 - 0.14.0-alpha + 0.14.1-alpha-SNAPSHOT com.google.api.grpc grpc-google-cloud-webrisk-v1beta1 - 0.14.0-alpha + 0.14.1-alpha-SNAPSHOT com.google.cloud google-cloud-webrisk - 0.14.0-alpha + 0.14.1-alpha-SNAPSHOT com.google.api.grpc proto-google-cloud-phishingprotection-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-phishingprotection-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT com.google.cloud google-cloud-phishingprotection - 0.10.0 + 0.10.1-SNAPSHOT com.google.api.grpc proto-google-cloud-recaptchaenterprise-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-recaptchaenterprise-v1beta1 - 0.10.0 + 0.10.1-SNAPSHOT com.google.cloud google-cloud-recaptchaenterprise - 0.10.0 + 0.10.1-SNAPSHOT io.grafeas grafeas - 0.2.0 + 0.2.1-SNAPSHOT diff --git a/google-cloud-clients/google-cloud-asset/pom.xml b/google-cloud-clients/google-cloud-asset/pom.xml index a91e914cf15e..2170d8a37cb4 100644 --- a/google-cloud-clients/google-cloud-asset/pom.xml +++ b/google-cloud-clients/google-cloud-asset/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-asset - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Asset https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-asset @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-asset diff --git a/google-cloud-clients/google-cloud-automl/pom.xml b/google-cloud-clients/google-cloud-automl/pom.xml index f5b236ca29fc..9e4e955677e2 100644 --- a/google-cloud-clients/google-cloud-automl/pom.xml +++ b/google-cloud-clients/google-cloud-automl/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-automl - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Auto ML https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-automl @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-automl diff --git a/google-cloud-clients/google-cloud-bigquery/pom.xml b/google-cloud-clients/google-cloud-bigquery/pom.xml index afa1b0efbb26..b759cbfff710 100644 --- a/google-cloud-clients/google-cloud-bigquery/pom.xml +++ b/google-cloud-clients/google-cloud-bigquery/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-bigquery - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud BigQuery https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-bigquery @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-bigquery diff --git a/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml b/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml index c6402eae017b..94b4013952c4 100644 --- a/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml +++ b/google-cloud-clients/google-cloud-bigquerydatatransfer/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-bigquerydatatransfer - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Bigquery Data Transfer https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-bigquerydatatransfer @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-bigquerydatatransfer diff --git a/google-cloud-clients/google-cloud-bigquerystorage/pom.xml b/google-cloud-clients/google-cloud-bigquerystorage/pom.xml index 392989261561..0e263883577e 100644 --- a/google-cloud-clients/google-cloud-bigquerystorage/pom.xml +++ b/google-cloud-clients/google-cloud-bigquerystorage/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-bigquerystorage - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Bigquery Storage https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-bigquerystorage @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-bigquerystorage diff --git a/google-cloud-clients/google-cloud-bigtable/pom.xml b/google-cloud-clients/google-cloud-bigtable/pom.xml index f809b0cee223..bd58f9fb9fe5 100644 --- a/google-cloud-clients/google-cloud-bigtable/pom.xml +++ b/google-cloud-clients/google-cloud-bigtable/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-bigtable - 0.99.0 + 0.99.1-SNAPSHOT jar Google Cloud Bigtable https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-bigtable @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-bigtable diff --git a/google-cloud-clients/google-cloud-compute/pom.xml b/google-cloud-clients/google-cloud-compute/pom.xml index 5956809c87ac..6e9d1977a62b 100644 --- a/google-cloud-clients/google-cloud-compute/pom.xml +++ b/google-cloud-clients/google-cloud-compute/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-compute - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud Compute https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-compute @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-compute diff --git a/google-cloud-clients/google-cloud-container/pom.xml b/google-cloud-clients/google-cloud-container/pom.xml index 378565f5cf09..b694b3b882b3 100644 --- a/google-cloud-clients/google-cloud-container/pom.xml +++ b/google-cloud-clients/google-cloud-container/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-container - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Container https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-container @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-container diff --git a/google-cloud-clients/google-cloud-containeranalysis/pom.xml b/google-cloud-clients/google-cloud-containeranalysis/pom.xml index d05d2342914b..fea7801ac3b7 100644 --- a/google-cloud-clients/google-cloud-containeranalysis/pom.xml +++ b/google-cloud-clients/google-cloud-containeranalysis/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-containeranalysis - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Container Analysis https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-containeranalysis @@ -15,7 +15,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-containeranalysis diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml index 9fde3d729edc..c8758bf30a76 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback/pom.xml @@ -5,7 +5,7 @@ 4.0.0 google-cloud-logging-logback - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud Logging Logback Appender https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback @@ -20,7 +20,7 @@ com.google.cloud google-cloud-contrib - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/README.md b/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/README.md index 68d24851782f..af944c298c7c 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/README.md +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/README.md @@ -24,12 +24,12 @@ To run this example: [//]: # ({x-version-update-start:google-cloud-nio:current}) ``` - java -cp google-cloud-clients/google-cloud-contrib/google-cloud-nio/target/google-cloud-nio-0.99.0-alpha.jar:google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.99.0-alpha.jar com.google.cloud.nio.examples.ListFilesystems + java -cp google-cloud-clients/google-cloud-contrib/google-cloud-nio/target/google-cloud-nio-0.99.1-alpha-SNAPSHOT.jar:google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.99.1-alpha-SNAPSHOT.jar com.google.cloud.nio.examples.ListFilesystems ``` Notice that it lists Google Cloud Storage, which it wouldn't if you ran it without the NIO jar: ``` - java -cp google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.99.0-alpha.jar com.google.cloud.nio.examples.ListFilesystems + java -cp google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.99.1-alpha-SNAPSHOT.jar com.google.cloud.nio.examples.ListFilesystems ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml index b8cef6c0e797..dc28ccd10235 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-nio-examples - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud NIO Examples https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-contrib/google-cloud-nio-examples @@ -12,7 +12,7 @@ com.google.cloud google-cloud-contrib - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-nio-examples diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml index 702af8d06a35..37483067aaa0 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-nio/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-nio - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud NIO https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-contrib/google-cloud-nio @@ -12,7 +12,7 @@ com.google.cloud google-cloud-contrib - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-nio diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml b/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml index 3c6784c3a004..08eccf5a883e 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-notification/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-notification - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Pub/Sub Notifications for GCS https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-notification @@ -15,7 +15,7 @@ com.google.cloud google-cloud-contrib - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-notification diff --git a/google-cloud-clients/google-cloud-contrib/pom.xml b/google-cloud-clients/google-cloud-contrib/pom.xml index 338d572ab9ef..667919f0aa71 100644 --- a/google-cloud-clients/google-cloud-contrib/pom.xml +++ b/google-cloud-clients/google-cloud-contrib/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-contrib - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT pom Google Cloud Contributions https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-contrib @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-contrib diff --git a/google-cloud-clients/google-cloud-core-grpc/pom.xml b/google-cloud-clients/google-cloud-core-grpc/pom.xml index 79bb9f3720a4..90f15f0574c7 100644 --- a/google-cloud-clients/google-cloud-core-grpc/pom.xml +++ b/google-cloud-clients/google-cloud-core-grpc/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-core-grpc - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud Core gRPC https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-core-grpc @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-core-grpc diff --git a/google-cloud-clients/google-cloud-core-http/pom.xml b/google-cloud-clients/google-cloud-core-http/pom.xml index ab7c8a908de0..dd50cfb17662 100644 --- a/google-cloud-clients/google-cloud-core-http/pom.xml +++ b/google-cloud-clients/google-cloud-core-http/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-core-http - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud Core HTTP https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-core-http @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-core-http diff --git a/google-cloud-clients/google-cloud-core/pom.xml b/google-cloud-clients/google-cloud-core/pom.xml index 4efc6c82a46f..b477ec59ccec 100644 --- a/google-cloud-clients/google-cloud-core/pom.xml +++ b/google-cloud-clients/google-cloud-core/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-core - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud Core https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-core @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-core diff --git a/google-cloud-clients/google-cloud-datacatalog/pom.xml b/google-cloud-clients/google-cloud-datacatalog/pom.xml index 486517e6a4d4..d10272af14fa 100644 --- a/google-cloud-clients/google-cloud-datacatalog/pom.xml +++ b/google-cloud-clients/google-cloud-datacatalog/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-datacatalog - 0.12.0-alpha + 0.12.1-alpha-SNAPSHOT jar Google Cloud Datacatalog https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-datacatalog @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-datacatalog diff --git a/google-cloud-clients/google-cloud-datalabeling/pom.xml b/google-cloud-clients/google-cloud-datalabeling/pom.xml index 0ba6b70e9bfd..ac045dc4e7ea 100644 --- a/google-cloud-clients/google-cloud-datalabeling/pom.xml +++ b/google-cloud-clients/google-cloud-datalabeling/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-datalabeling - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud Asset https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-datalabeling @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-datalabeling diff --git a/google-cloud-clients/google-cloud-dataproc/pom.xml b/google-cloud-clients/google-cloud-dataproc/pom.xml index b65e339bfb4f..e89eee1597c8 100644 --- a/google-cloud-clients/google-cloud-dataproc/pom.xml +++ b/google-cloud-clients/google-cloud-dataproc/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-dataproc - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud Dataproc https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-dataproc @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-dataproc diff --git a/google-cloud-clients/google-cloud-datastore/pom.xml b/google-cloud-clients/google-cloud-datastore/pom.xml index 77af3bfd0257..444e4e18f3c9 100644 --- a/google-cloud-clients/google-cloud-datastore/pom.xml +++ b/google-cloud-clients/google-cloud-datastore/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-datastore - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud Datastore https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-datastore @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-datastore diff --git a/google-cloud-clients/google-cloud-dialogflow/pom.xml b/google-cloud-clients/google-cloud-dialogflow/pom.xml index 69394519f2c4..e5847f238c79 100644 --- a/google-cloud-clients/google-cloud-dialogflow/pom.xml +++ b/google-cloud-clients/google-cloud-dialogflow/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-dialogflow - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud Dialog Flow API https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-dialogflow @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-dialogflow diff --git a/google-cloud-clients/google-cloud-dlp/pom.xml b/google-cloud-clients/google-cloud-dlp/pom.xml index b81e74a32518..37bd4ce3c096 100644 --- a/google-cloud-clients/google-cloud-dlp/pom.xml +++ b/google-cloud-clients/google-cloud-dlp/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-dlp - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Data Loss Prevention API https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-dlp @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-dlp diff --git a/google-cloud-clients/google-cloud-dns/pom.xml b/google-cloud-clients/google-cloud-dns/pom.xml index c743276c2d3e..07434f777c29 100644 --- a/google-cloud-clients/google-cloud-dns/pom.xml +++ b/google-cloud-clients/google-cloud-dns/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-dns - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud DNS https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-dns @@ -14,7 +14,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-dns diff --git a/google-cloud-clients/google-cloud-errorreporting/pom.xml b/google-cloud-clients/google-cloud-errorreporting/pom.xml index 05fa372d1a22..685f44dc6e70 100644 --- a/google-cloud-clients/google-cloud-errorreporting/pom.xml +++ b/google-cloud-clients/google-cloud-errorreporting/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-errorreporting - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Error Reporting https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-errorreporting @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-errorreporting diff --git a/google-cloud-clients/google-cloud-firestore/pom.xml b/google-cloud-clients/google-cloud-firestore/pom.xml index f8b4bca0f71e..be29d34637c3 100644 --- a/google-cloud-clients/google-cloud-firestore/pom.xml +++ b/google-cloud-clients/google-cloud-firestore/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-firestore - 1.11.0 + 1.11.1-SNAPSHOT jar Google Cloud Firestore https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-firestore @@ -15,7 +15,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-firestore diff --git a/google-cloud-clients/google-cloud-iamcredentials/pom.xml b/google-cloud-clients/google-cloud-iamcredentials/pom.xml index a41826dbf2ae..aa32ade1981b 100644 --- a/google-cloud-clients/google-cloud-iamcredentials/pom.xml +++ b/google-cloud-clients/google-cloud-iamcredentials/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-iamcredentials - 0.26.0-alpha + 0.26.1-alpha-SNAPSHOT jar Google Cloud Java Client for IAM Service Account Credentials API https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-iamcredentials @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-iamcredentials diff --git a/google-cloud-clients/google-cloud-iot/pom.xml b/google-cloud-clients/google-cloud-iot/pom.xml index ce3795206dbd..3312960f1680 100644 --- a/google-cloud-clients/google-cloud-iot/pom.xml +++ b/google-cloud-clients/google-cloud-iot/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-iot - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud IoT https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-iot @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-iot diff --git a/google-cloud-clients/google-cloud-kms/pom.xml b/google-cloud-clients/google-cloud-kms/pom.xml index 0e2b0014912a..8c6ec6a6c949 100644 --- a/google-cloud-clients/google-cloud-kms/pom.xml +++ b/google-cloud-clients/google-cloud-kms/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-kms - 1.17.0 + 1.17.1-SNAPSHOT jar Google Cloud KMS https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-kms @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-kms-v1 diff --git a/google-cloud-clients/google-cloud-language/pom.xml b/google-cloud-clients/google-cloud-language/pom.xml index dab9cc0d74c9..ad380fab4404 100644 --- a/google-cloud-clients/google-cloud-language/pom.xml +++ b/google-cloud-clients/google-cloud-language/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-language - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud Natural Language https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-language @@ -15,7 +15,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-language diff --git a/google-cloud-clients/google-cloud-logging/pom.xml b/google-cloud-clients/google-cloud-logging/pom.xml index b7c40401bb2b..fb4c1add0620 100644 --- a/google-cloud-clients/google-cloud-logging/pom.xml +++ b/google-cloud-clients/google-cloud-logging/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-logging - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud Logging https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-logging @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-logging diff --git a/google-cloud-clients/google-cloud-monitoring/pom.xml b/google-cloud-clients/google-cloud-monitoring/pom.xml index e9a89c34e8b8..99c393dfc058 100644 --- a/google-cloud-clients/google-cloud-monitoring/pom.xml +++ b/google-cloud-clients/google-cloud-monitoring/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-monitoring - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud Monitoring https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-monitoring @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-monitoring diff --git a/google-cloud-clients/google-cloud-os-login/pom.xml b/google-cloud-clients/google-cloud-os-login/pom.xml index f92c2bea4f0d..286e21d47f4c 100644 --- a/google-cloud-clients/google-cloud-os-login/pom.xml +++ b/google-cloud-clients/google-cloud-os-login/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-os-login - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud OS Login https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-os-login @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-os-login diff --git a/google-cloud-clients/google-cloud-phishingprotection/pom.xml b/google-cloud-clients/google-cloud-phishingprotection/pom.xml index c1eea4715a07..b0e5729c425f 100644 --- a/google-cloud-clients/google-cloud-phishingprotection/pom.xml +++ b/google-cloud-clients/google-cloud-phishingprotection/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-phishingprotection - 0.10.0 + 0.10.1-SNAPSHOT jar Google Cloud Phishing Protection https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-phishingprotection @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-phishingprotection diff --git a/google-cloud-clients/google-cloud-pubsub/pom.xml b/google-cloud-clients/google-cloud-pubsub/pom.xml index 3bc41a164d7d..39de07949ece 100644 --- a/google-cloud-clients/google-cloud-pubsub/pom.xml +++ b/google-cloud-clients/google-cloud-pubsub/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-pubsub - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud Pub/Sub https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-pubsub @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-pubsub diff --git a/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml b/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml index df1c2b934520..a6601d7e808a 100644 --- a/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml +++ b/google-cloud-clients/google-cloud-recaptchaenterprise/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-recaptchaenterprise - 0.10.0 + 0.10.1-SNAPSHOT jar reCAPTCHA Enterprise https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-recaptchaenterprise @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-recaptchaenterprise diff --git a/google-cloud-clients/google-cloud-redis/pom.xml b/google-cloud-clients/google-cloud-redis/pom.xml index 663c1ff2f377..3804e1bfeaf4 100644 --- a/google-cloud-clients/google-cloud-redis/pom.xml +++ b/google-cloud-clients/google-cloud-redis/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-redis - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud Redis https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-redis @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-redis diff --git a/google-cloud-clients/google-cloud-resourcemanager/pom.xml b/google-cloud-clients/google-cloud-resourcemanager/pom.xml index f9c9e8ddab9f..c172ee049f57 100644 --- a/google-cloud-clients/google-cloud-resourcemanager/pom.xml +++ b/google-cloud-clients/google-cloud-resourcemanager/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-resourcemanager - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud Resource Manager https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-resourcemanager @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-resourcemanager diff --git a/google-cloud-clients/google-cloud-scheduler/pom.xml b/google-cloud-clients/google-cloud-scheduler/pom.xml index b429d1d326b4..dcab826c99ef 100644 --- a/google-cloud-clients/google-cloud-scheduler/pom.xml +++ b/google-cloud-clients/google-cloud-scheduler/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-scheduler - 1.4.0 + 1.4.1-SNAPSHOT jar Google Cloud Scheduler https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-scheduler @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-scheduler diff --git a/google-cloud-clients/google-cloud-securitycenter/pom.xml b/google-cloud-clients/google-cloud-securitycenter/pom.xml index 498884478b40..3849f386053f 100644 --- a/google-cloud-clients/google-cloud-securitycenter/pom.xml +++ b/google-cloud-clients/google-cloud-securitycenter/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-securitycenter - 0.99.0 + 0.99.1-SNAPSHOT jar Google Cloud Security Command Center https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-securitycenter @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-securitycenter diff --git a/google-cloud-clients/google-cloud-spanner/pom.xml b/google-cloud-clients/google-cloud-spanner/pom.xml index 5aa788c844d2..7f429d819f06 100644 --- a/google-cloud-clients/google-cloud-spanner/pom.xml +++ b/google-cloud-clients/google-cloud-spanner/pom.xml @@ -4,7 +4,7 @@ http://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 google-cloud-spanner - 1.26.0 + 1.26.1-SNAPSHOT jar Google Cloud Spanner https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-spanner @@ -14,7 +14,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-spanner diff --git a/google-cloud-clients/google-cloud-speech/pom.xml b/google-cloud-clients/google-cloud-speech/pom.xml index fb7688634a4e..3f17420fe5c4 100644 --- a/google-cloud-clients/google-cloud-speech/pom.xml +++ b/google-cloud-clients/google-cloud-speech/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-speech - 1.11.0 + 1.11.1-SNAPSHOT jar Google Cloud Speech https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-speech @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-speech diff --git a/google-cloud-clients/google-cloud-storage/pom.xml b/google-cloud-clients/google-cloud-storage/pom.xml index f6966071dcba..42974cc8c343 100644 --- a/google-cloud-clients/google-cloud-storage/pom.xml +++ b/google-cloud-clients/google-cloud-storage/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-storage - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud Storage https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-storage @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-storage diff --git a/google-cloud-clients/google-cloud-talent/pom.xml b/google-cloud-clients/google-cloud-talent/pom.xml index 3e1ebd3f0cd2..fd05a79d6e91 100644 --- a/google-cloud-clients/google-cloud-talent/pom.xml +++ b/google-cloud-clients/google-cloud-talent/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-talent - 0.16.0-beta + 0.16.1-beta-SNAPSHOT jar Google Cloud Talent Solution https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-talent @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-talent diff --git a/google-cloud-clients/google-cloud-tasks/pom.xml b/google-cloud-clients/google-cloud-tasks/pom.xml index 1bfc2b220627..809aea8fe481 100644 --- a/google-cloud-clients/google-cloud-tasks/pom.xml +++ b/google-cloud-clients/google-cloud-tasks/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-tasks - 1.8.0 + 1.8.1-SNAPSHOT jar Google Cloud Tasks https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-tasks @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-tasks-v2 diff --git a/google-cloud-clients/google-cloud-texttospeech/pom.xml b/google-cloud-clients/google-cloud-texttospeech/pom.xml index 5635a3d85cee..ca2b5638c3b9 100644 --- a/google-cloud-clients/google-cloud-texttospeech/pom.xml +++ b/google-cloud-clients/google-cloud-texttospeech/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-texttospeech - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Text-to-Speech https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-texttospeech @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-texttospeech-v1beta1 diff --git a/google-cloud-clients/google-cloud-trace/pom.xml b/google-cloud-clients/google-cloud-trace/pom.xml index 59bd7d777384..7632168f64ba 100644 --- a/google-cloud-clients/google-cloud-trace/pom.xml +++ b/google-cloud-clients/google-cloud-trace/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-trace - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Trace https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-trace @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-trace diff --git a/google-cloud-clients/google-cloud-translate/pom.xml b/google-cloud-clients/google-cloud-translate/pom.xml index f707569f1f7f..1a4d4987242c 100644 --- a/google-cloud-clients/google-cloud-translate/pom.xml +++ b/google-cloud-clients/google-cloud-translate/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-translate - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud Translation https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-translate @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-translate diff --git a/google-cloud-clients/google-cloud-video-intelligence/pom.xml b/google-cloud-clients/google-cloud-video-intelligence/pom.xml index 880351a421b8..c1699c90ace9 100644 --- a/google-cloud-clients/google-cloud-video-intelligence/pom.xml +++ b/google-cloud-clients/google-cloud-video-intelligence/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-video-intelligence - 0.99.0-beta + 0.99.1-beta-SNAPSHOT jar Google Cloud Video Intelligence https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-video-intelligence @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-video-intelligence diff --git a/google-cloud-clients/google-cloud-vision/pom.xml b/google-cloud-clients/google-cloud-vision/pom.xml index fc4064647938..cda87350f16b 100644 --- a/google-cloud-clients/google-cloud-vision/pom.xml +++ b/google-cloud-clients/google-cloud-vision/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-vision - 1.81.0 + 1.81.1-SNAPSHOT jar Google Cloud Vision https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-vision @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-vision diff --git a/google-cloud-clients/google-cloud-webrisk/pom.xml b/google-cloud-clients/google-cloud-webrisk/pom.xml index b568e2820c77..7f8d33ccb891 100644 --- a/google-cloud-clients/google-cloud-webrisk/pom.xml +++ b/google-cloud-clients/google-cloud-webrisk/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-webrisk - 0.14.0-alpha + 0.14.1-alpha-SNAPSHOT jar Google Cloud Web Risk https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-webrisk @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-webrisk diff --git a/google-cloud-clients/google-cloud-websecurityscanner/pom.xml b/google-cloud-clients/google-cloud-websecurityscanner/pom.xml index 7cbfc5d3a552..958787b6c8a9 100644 --- a/google-cloud-clients/google-cloud-websecurityscanner/pom.xml +++ b/google-cloud-clients/google-cloud-websecurityscanner/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-websecurityscanner - 0.99.0 + 0.99.1-SNAPSHOT jar Google Cloud Web Security Scanner https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-websecurityscanner @@ -12,7 +12,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-websecurityscanner diff --git a/google-cloud-clients/grafeas/pom.xml b/google-cloud-clients/grafeas/pom.xml index 8f3df0491dbf..4ce90e200ff7 100644 --- a/google-cloud-clients/grafeas/pom.xml +++ b/google-cloud-clients/grafeas/pom.xml @@ -5,7 +5,7 @@ 4.0.0 io.grafeas grafeas - 0.2.0 + 0.2.1-SNAPSHOT jar Grafeas Client https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/grafeas @@ -16,7 +16,7 @@ com.google.cloud google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT grafeas diff --git a/google-cloud-clients/pom.xml b/google-cloud-clients/pom.xml index 99c09cfb0d07..f2a441cb6539 100644 --- a/google-cloud-clients/pom.xml +++ b/google-cloud-clients/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-clients pom - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT Google Cloud https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients @@ -153,7 +153,7 @@ https://googleapis.github.io/google-cloud-java/google-api-grpc/apidocs github google-cloud-clients - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT 1.30.2 1.47.1 @@ -277,7 +277,7 @@ com.google.cloud google-cloud-core - 1.81.0 + 1.81.1-SNAPSHOT test-jar diff --git a/google-cloud-examples/pom.xml b/google-cloud-examples/pom.xml index e505e9a153d1..9f77d84b7ad2 100644 --- a/google-cloud-examples/pom.xml +++ b/google-cloud-examples/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-examples - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud Examples https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-examples @@ -18,7 +18,7 @@ com.google.cloud google-cloud-bom - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT pom import diff --git a/google-cloud-testing/google-cloud-appengineflexcompat/pom.xml b/google-cloud-testing/google-cloud-appengineflexcompat/pom.xml index 2484ab45a873..bd733f419f0c 100644 --- a/google-cloud-testing/google-cloud-appengineflexcompat/pom.xml +++ b/google-cloud-testing/google-cloud-appengineflexcompat/pom.xml @@ -4,13 +4,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-appengineflexcompat - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT war google-cloud-testing com.google.cloud - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT diff --git a/google-cloud-testing/google-cloud-appengineflexcustom/pom.xml b/google-cloud-testing/google-cloud-appengineflexcustom/pom.xml index 0dc364b9c27c..c400e59fb717 100644 --- a/google-cloud-testing/google-cloud-appengineflexcustom/pom.xml +++ b/google-cloud-testing/google-cloud-appengineflexcustom/pom.xml @@ -4,13 +4,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-appengineflexcustom - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT war google-cloud-testing com.google.cloud - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT diff --git a/google-cloud-testing/google-cloud-appengineflexjava/pom.xml b/google-cloud-testing/google-cloud-appengineflexjava/pom.xml index 87fe37efcc8b..fa7634f74860 100644 --- a/google-cloud-testing/google-cloud-appengineflexjava/pom.xml +++ b/google-cloud-testing/google-cloud-appengineflexjava/pom.xml @@ -4,13 +4,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-appengineflexjava - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT war google-cloud-testing com.google.cloud - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT diff --git a/google-cloud-testing/google-cloud-appenginejava8/pom.xml b/google-cloud-testing/google-cloud-appenginejava8/pom.xml index 849ffc7695b9..5a6023a93551 100644 --- a/google-cloud-testing/google-cloud-appenginejava8/pom.xml +++ b/google-cloud-testing/google-cloud-appenginejava8/pom.xml @@ -4,13 +4,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-appenginejava8 - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT war google-cloud-testing com.google.cloud - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT diff --git a/google-cloud-testing/google-cloud-bigtable-emulator/pom.xml b/google-cloud-testing/google-cloud-bigtable-emulator/pom.xml index 244a1dea91f0..c2ce1c46b38b 100644 --- a/google-cloud-testing/google-cloud-bigtable-emulator/pom.xml +++ b/google-cloud-testing/google-cloud-bigtable-emulator/pom.xml @@ -6,7 +6,7 @@ com.google.cloud google-cloud-bigtable-emulator - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT Google Cloud Java - Bigtable Emulator https://github.com/googleapis/google-cloud-java @@ -69,7 +69,7 @@ com.google.cloud google-cloud-gcloud-maven-plugin - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT @@ -126,7 +126,7 @@ com.google.cloud google-cloud-bom - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT pom import diff --git a/google-cloud-testing/google-cloud-conformance-tests/pom.xml b/google-cloud-testing/google-cloud-conformance-tests/pom.xml index 2617386f7aae..b62aff0aebfe 100644 --- a/google-cloud-testing/google-cloud-conformance-tests/pom.xml +++ b/google-cloud-testing/google-cloud-conformance-tests/pom.xml @@ -10,7 +10,7 @@ com.google.cloud google-cloud-testing - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT diff --git a/google-cloud-testing/google-cloud-gcloud-maven-plugin/pom.xml b/google-cloud-testing/google-cloud-gcloud-maven-plugin/pom.xml index ee71e709c21b..ed593a4832d0 100644 --- a/google-cloud-testing/google-cloud-gcloud-maven-plugin/pom.xml +++ b/google-cloud-testing/google-cloud-gcloud-maven-plugin/pom.xml @@ -7,11 +7,11 @@ google-cloud-testing com.google.cloud - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-gcloud-maven-plugin - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT maven-plugin Experimental Maven plugin to interact with the Google Cloud SDK (https://cloud.google.com/sdk/). Currently this plugin is meant to be an internal implementation diff --git a/google-cloud-testing/google-cloud-managedtest/pom.xml b/google-cloud-testing/google-cloud-managedtest/pom.xml index 9c20a6fd35f5..d3fea1393922 100644 --- a/google-cloud-testing/google-cloud-managedtest/pom.xml +++ b/google-cloud-testing/google-cloud-managedtest/pom.xml @@ -4,13 +4,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 google-cloud-managedtest - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar google-cloud-testing com.google.cloud - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT diff --git a/google-cloud-testing/pom.xml b/google-cloud-testing/pom.xml index 09caaaf74b17..98e1b54285b7 100644 --- a/google-cloud-testing/pom.xml +++ b/google-cloud-testing/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.google.cloud google-cloud-testing - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT pom Google Cloud Testing @@ -33,14 +33,14 @@ com.google.cloud google-cloud-bom - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT pom import com.google.cloud google-cloud-core - 1.81.0 + 1.81.1-SNAPSHOT test-jar diff --git a/google-cloud-util/google-cloud-compat-checker/pom.xml b/google-cloud-util/google-cloud-compat-checker/pom.xml index da5c39499c4e..4df64360400b 100644 --- a/google-cloud-util/google-cloud-compat-checker/pom.xml +++ b/google-cloud-util/google-cloud-compat-checker/pom.xml @@ -2,7 +2,7 @@ 4.0.0 google-cloud-compat-checker - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT jar Google Cloud Java Compatibility Checker https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-util/google-cloud-compat-checker @@ -12,7 +12,7 @@ com.google.cloud google-cloud-util - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT google-cloud-compat-checker diff --git a/google-cloud-util/pom.xml b/google-cloud-util/pom.xml index fe9f389890be..0a367b1a4bc9 100644 --- a/google-cloud-util/pom.xml +++ b/google-cloud-util/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-util - 0.99.0-alpha + 0.99.1-alpha-SNAPSHOT pom Google Cloud Util https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-util diff --git a/versions.txt b/versions.txt index 858268b02e24..85c264ec73f9 100644 --- a/versions.txt +++ b/versions.txt @@ -1,206 +1,206 @@ # Format: # module:released-version:current-version -google-api-grpc:0.64.0:0.64.0 -google-cloud:0.99.0-alpha:0.99.0-alpha -google-cloud-appengineflexcompat:0.99.0-alpha:0.99.0-alpha -google-cloud-appengineflexcustom:0.99.0-alpha:0.99.0-alpha -google-cloud-appengineflexjava:0.99.0-alpha:0.99.0-alpha -google-cloud-appenginejava8:0.99.0-alpha:0.99.0-alpha -google-cloud-asset:0.99.0-beta:0.99.0-beta -google-cloud-automl:0.99.0-beta:0.99.0-beta -google-cloud-bigquery:1.81.0:1.81.0 -google-cloud-bigquerydatatransfer:0.99.0-beta:0.99.0-beta -google-cloud-bigquerystorage:0.99.0-beta:0.99.0-beta -google-cloud-bigtable:0.99.0:0.99.0 -google-cloud-bigtable-emulator:0.99.0-alpha:0.99.0-alpha -google-cloud-bom:0.99.0-alpha:0.99.0-alpha -google-cloud-clients:0.99.0-alpha:0.99.0-alpha -google-cloud-compat-checker:0.99.0-alpha:0.99.0-alpha -google-cloud-compute:0.99.0-alpha:0.99.0-alpha -google-cloud-container:0.99.0-beta:0.99.0-beta -google-cloud-containeranalysis:0.99.0-beta:0.99.0-beta -google-cloud-contrib:0.99.0-alpha:0.99.0-alpha -google-cloud-core:1.81.0:1.81.0 -google-cloud-core-grpc:1.81.0:1.81.0 -google-cloud-core-http:1.81.0:1.81.0 -google-cloud-datacatalog:0.12.0-alpha:0.12.0-alpha -google-cloud-datalabeling:0.99.0-alpha:0.99.0-alpha -google-cloud-dataproc:0.99.0-alpha:0.99.0-alpha -google-cloud-datastore:1.81.0:1.81.0 -google-cloud-dialogflow:0.99.0-alpha:0.99.0-alpha -google-cloud-dlp:0.99.0-beta:0.99.0-beta -google-cloud-dns:0.99.0-alpha:0.99.0-alpha -google-cloud-errorreporting:0.99.0-beta:0.99.0-beta -google-cloud-examples:0.99.0-alpha:0.99.0-alpha -google-cloud-firestore:1.11.0:1.11.0 -google-cloud-gcloud-maven-plugin:0.99.0-alpha:0.99.0-alpha -google-cloud-iamcredentials:0.26.0-alpha:0.26.0-alpha -google-cloud-iot:0.99.0-beta:0.99.0-beta -google-cloud-kms:1.17.0:1.17.0 -google-cloud-language:1.81.0:1.81.0 -google-cloud-logging:1.81.0:1.81.0 -google-cloud-logging-logback:0.99.0-alpha:0.99.0-alpha -google-cloud-managedtest:0.99.0-alpha:0.99.0-alpha -google-cloud-monitoring:1.81.0:1.81.0 -google-cloud-nio:0.99.0-alpha:0.99.0-alpha -google-cloud-nio-examples:0.99.0-alpha:0.99.0-alpha -google-cloud-notification:0.99.0-beta:0.99.0-beta -google-cloud-os-login:0.99.0-alpha:0.99.0-alpha -google-cloud-phishingprotection:0.10.0:0.10.0 -google-cloud-pubsub:1.81.0:1.81.0 -google-cloud-recaptchaenterprise:0.10.0:0.10.0 -google-cloud-redis:0.99.0-alpha:0.99.0-alpha -google-cloud-resourcemanager:0.99.0-alpha:0.99.0-alpha -google-cloud-scheduler:1.4.0:1.4.0 -google-cloud-securitycenter:0.99.0:0.99.0 -google-cloud-spanner:1.26.0:1.26.0 -google-cloud-speech:1.11.0:1.11.0 -google-cloud-storage:1.81.0:1.81.0 -google-cloud-talent:0.16.0-beta:0.16.0-beta -google-cloud-tasks:1.8.0:1.8.0 -google-cloud-testing:0.99.0-alpha:0.99.0-alpha -google-cloud-texttospeech:0.99.0-beta:0.99.0-beta -google-cloud-trace:0.99.0-beta:0.99.0-beta -google-cloud-translate:1.81.0:1.81.0 -google-cloud-util:0.99.0-alpha:0.99.0-alpha -google-cloud-video-intelligence:0.99.0-beta:0.99.0-beta -google-cloud-vision:1.81.0:1.81.0 -google-cloud-webrisk:0.14.0-alpha:0.14.0-alpha -google-cloud-websecurityscanner:0.99.0:0.99.0 -grafeas:0.2.0:0.2.0 -grpc-google-cloud-asset-v1:0.64.0:0.64.0 -grpc-google-cloud-asset-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-automl-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-bigquerydatatransfer-v1:0.64.0:0.64.0 -grpc-google-cloud-bigquerystorage-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-bigtable-admin-v2:0.64.0:0.64.0 -grpc-google-cloud-bigtable-v2:0.64.0:0.64.0 -grpc-google-cloud-container-v1:0.64.0:0.64.0 -grpc-google-cloud-containeranalysis-v1:0.64.0:0.64.0 -grpc-google-cloud-containeranalysis-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-datacatalog-v1beta1:0.12.0-alpha:0.12.0-alpha -grpc-google-cloud-datalabeling-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-dataproc-v1:0.64.0:0.64.0 -grpc-google-cloud-dataproc-v1beta2:0.64.0:0.64.0 -grpc-google-cloud-dialogflow-v2:0.64.0:0.64.0 -grpc-google-cloud-dialogflow-v2beta1:0.64.0:0.64.0 -grpc-google-cloud-dlp-v2:0.64.0:0.64.0 -grpc-google-cloud-error-reporting-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-firestore-admin-v1:1.11.0:1.11.0 -grpc-google-cloud-firestore-v1:1.11.0:1.11.0 -grpc-google-cloud-firestore-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-iamcredentials-v1:0.26.0-alpha:0.26.0-alpha -grpc-google-cloud-iot-v1:0.64.0:0.64.0 -grpc-google-cloud-kms-v1:0.64.0:0.64.0 -grpc-google-cloud-language-v1:1.63.0:1.63.0 -grpc-google-cloud-language-v1beta2:0.64.0:0.64.0 -grpc-google-cloud-logging-v2:0.64.0:0.64.0 -grpc-google-cloud-monitoring-v3:1.63.0:1.63.0 -grpc-google-cloud-os-login-v1:0.64.0:0.64.0 -grpc-google-cloud-phishingprotection-v1beta1:0.10.0:0.10.0 -grpc-google-cloud-pubsub-v1:1.63.0:1.63.0 -grpc-google-cloud-recaptchaenterprise-v1beta1:0.10.0:0.10.0 -grpc-google-cloud-redis-v1:0.64.0:0.64.0 -grpc-google-cloud-redis-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-scheduler-v1:1.4.0:1.4.0 -grpc-google-cloud-scheduler-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-securitycenter-v1:0.64.0:0.64.0 -grpc-google-cloud-securitycenter-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-spanner-admin-database-v1:1.26.0:1.26.0 -grpc-google-cloud-spanner-admin-instance-v1:1.26.0:1.26.0 -grpc-google-cloud-spanner-v1:1.26.0:1.26.0 -grpc-google-cloud-speech-v1:1.11.0:1.11.0 -grpc-google-cloud-speech-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-speech-v1p1beta1:0.64.0:0.64.0 -grpc-google-cloud-talent-v4beta1:0.16.0-beta:0.16.0-beta -grpc-google-cloud-tasks-v2:1.8.0:1.8.0 -grpc-google-cloud-tasks-v2beta2:0.64.0:0.64.0 -grpc-google-cloud-tasks-v2beta3:0.64.0:0.64.0 -grpc-google-cloud-texttospeech-v1:0.64.0:0.64.0 -grpc-google-cloud-texttospeech-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-trace-v1:0.64.0:0.64.0 -grpc-google-cloud-trace-v2:0.64.0:0.64.0 -grpc-google-cloud-translate-v3beta1:0.64.0:0.64.0 -grpc-google-cloud-video-intelligence-v1:0.64.0:0.64.0 -grpc-google-cloud-video-intelligence-v1beta1:0.64.0:0.64.0 -grpc-google-cloud-video-intelligence-v1beta2:0.64.0:0.64.0 -grpc-google-cloud-video-intelligence-v1p1beta1:0.64.0:0.64.0 -grpc-google-cloud-video-intelligence-v1p2beta1:0.64.0:0.64.0 -grpc-google-cloud-video-intelligence-v1p3beta1:0.64.0:0.64.0 -grpc-google-cloud-vision-v1:1.63.0:1.63.0 -grpc-google-cloud-vision-v1p1beta1:0.64.0:0.64.0 -grpc-google-cloud-vision-v1p2beta1:1.63.0:1.63.0 -grpc-google-cloud-vision-v1p3beta1:0.64.0:0.64.0 -grpc-google-cloud-vision-v1p4beta1:0.64.0:0.64.0 -grpc-google-cloud-webrisk-v1beta1:0.14.0-alpha:0.14.0-alpha -grpc-google-cloud-websecurityscanner-v1alpha:0.64.0:0.64.0 -grpc-google-cloud-websecurityscanner-v1beta:0.64.0:0.64.0 -proto-google-cloud-asset-v1:0.64.0:0.64.0 -proto-google-cloud-asset-v1beta1:0.64.0:0.64.0 -proto-google-cloud-automl-v1beta1:0.64.0:0.64.0 -proto-google-cloud-bigquerydatatransfer-v1:0.64.0:0.64.0 -proto-google-cloud-bigquerystorage-v1beta1:0.64.0:0.64.0 -proto-google-cloud-bigtable-admin-v2:0.64.0:0.64.0 -proto-google-cloud-bigtable-v2:0.64.0:0.64.0 -proto-google-cloud-container-v1:0.64.0:0.64.0 -proto-google-cloud-containeranalysis-v1:0.64.0:0.64.0 -proto-google-cloud-containeranalysis-v1beta1:0.64.0:0.64.0 -proto-google-cloud-datacatalog-v1beta1:0.12.0-alpha:0.12.0-alpha -proto-google-cloud-datalabeling-v1beta1:0.64.0:0.64.0 -proto-google-cloud-dataproc-v1:0.64.0:0.64.0 -proto-google-cloud-dataproc-v1beta2:0.64.0:0.64.0 -proto-google-cloud-datastore-v1:0.64.0:0.64.0 -proto-google-cloud-dialogflow-v2:0.64.0:0.64.0 -proto-google-cloud-dialogflow-v2beta1:0.64.0:0.64.0 -proto-google-cloud-dlp-v2:0.64.0:0.64.0 -proto-google-cloud-error-reporting-v1beta1:0.64.0:0.64.0 -proto-google-cloud-firestore-admin-v1:1.11.0:1.11.0 -proto-google-cloud-firestore-v1:1.11.0:1.11.0 -proto-google-cloud-firestore-v1beta1:0.64.0:0.64.0 -proto-google-cloud-iamcredentials-v1:0.26.0-alpha:0.26.0-alpha -proto-google-cloud-iot-v1:0.64.0:0.64.0 -proto-google-cloud-kms-v1:0.64.0:0.64.0 -proto-google-cloud-language-v1:1.63.0:1.63.0 -proto-google-cloud-language-v1beta2:0.64.0:0.64.0 -proto-google-cloud-logging-v2:0.64.0:0.64.0 -proto-google-cloud-monitoring-v3:1.63.0:1.63.0 -proto-google-cloud-os-login-v1:0.64.0:0.64.0 -proto-google-cloud-phishingprotection-v1beta1:0.10.0:0.10.0 -proto-google-cloud-pubsub-v1:1.63.0:1.63.0 -proto-google-cloud-recaptchaenterprise-v1beta1:0.10.0:0.10.0 -proto-google-cloud-redis-v1:0.64.0:0.64.0 -proto-google-cloud-redis-v1beta1:0.64.0:0.64.0 -proto-google-cloud-scheduler-v1:1.4.0:1.4.0 -proto-google-cloud-scheduler-v1beta1:0.64.0:0.64.0 -proto-google-cloud-securitycenter-v1:0.64.0:0.64.0 -proto-google-cloud-securitycenter-v1beta1:0.64.0:0.64.0 -proto-google-cloud-spanner-admin-database-v1:1.26.0:1.26.0 -proto-google-cloud-spanner-admin-instance-v1:1.26.0:1.26.0 -proto-google-cloud-spanner-v1:1.26.0:1.26.0 -proto-google-cloud-speech-v1:1.11.0:1.11.0 -proto-google-cloud-speech-v1beta1:0.64.0:0.64.0 -proto-google-cloud-speech-v1p1beta1:0.64.0:0.64.0 -proto-google-cloud-talent-v4beta1:0.16.0-beta:0.16.0-beta -proto-google-cloud-tasks-v2:1.8.0:1.8.0 -proto-google-cloud-tasks-v2beta2:0.64.0:0.64.0 -proto-google-cloud-tasks-v2beta3:0.64.0:0.64.0 -proto-google-cloud-texttospeech-v1:0.64.0:0.64.0 -proto-google-cloud-texttospeech-v1beta1:0.64.0:0.64.0 -proto-google-cloud-trace-v1:0.64.0:0.64.0 -proto-google-cloud-trace-v2:0.64.0:0.64.0 -proto-google-cloud-translate-v3beta1:0.64.0:0.64.0 -proto-google-cloud-video-intelligence-v1:0.64.0:0.64.0 -proto-google-cloud-video-intelligence-v1beta1:0.64.0:0.64.0 -proto-google-cloud-video-intelligence-v1beta2:0.64.0:0.64.0 -proto-google-cloud-video-intelligence-v1p1beta1:0.64.0:0.64.0 -proto-google-cloud-video-intelligence-v1p2beta1:0.64.0:0.64.0 -proto-google-cloud-video-intelligence-v1p3beta1:0.64.0:0.64.0 -proto-google-cloud-vision-v1:1.63.0:1.63.0 -proto-google-cloud-vision-v1p1beta1:0.64.0:0.64.0 -proto-google-cloud-vision-v1p2beta1:1.63.0:1.63.0 -proto-google-cloud-vision-v1p3beta1:0.64.0:0.64.0 -proto-google-cloud-vision-v1p4beta1:0.64.0:0.64.0 -proto-google-cloud-webrisk-v1beta1:0.14.0-alpha:0.14.0-alpha -proto-google-cloud-websecurityscanner-v1alpha:0.64.0:0.64.0 -proto-google-cloud-websecurityscanner-v1beta:0.64.0:0.64.0 +google-api-grpc:0.64.0:0.64.1-SNAPSHOT +google-cloud:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-appengineflexcompat:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-appengineflexcustom:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-appengineflexjava:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-appenginejava8:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-asset:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-automl:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-bigquery:1.81.0:1.81.1-SNAPSHOT +google-cloud-bigquerydatatransfer:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-bigquerystorage:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-bigtable:0.99.0:0.99.1-SNAPSHOT +google-cloud-bigtable-emulator:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-bom:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-clients:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-compat-checker:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-compute:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-container:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-containeranalysis:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-contrib:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-core:1.81.0:1.81.1-SNAPSHOT +google-cloud-core-grpc:1.81.0:1.81.1-SNAPSHOT +google-cloud-core-http:1.81.0:1.81.1-SNAPSHOT +google-cloud-datacatalog:0.12.0-alpha:0.12.1-alpha-SNAPSHOT +google-cloud-datalabeling:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-dataproc:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-datastore:1.81.0:1.81.1-SNAPSHOT +google-cloud-dialogflow:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-dlp:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-dns:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-errorreporting:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-examples:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-firestore:1.11.0:1.11.1-SNAPSHOT +google-cloud-gcloud-maven-plugin:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-iamcredentials:0.26.0-alpha:0.26.1-alpha-SNAPSHOT +google-cloud-iot:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-kms:1.17.0:1.17.1-SNAPSHOT +google-cloud-language:1.81.0:1.81.1-SNAPSHOT +google-cloud-logging:1.81.0:1.81.1-SNAPSHOT +google-cloud-logging-logback:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-managedtest:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-monitoring:1.81.0:1.81.1-SNAPSHOT +google-cloud-nio:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-nio-examples:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-notification:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-os-login:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-phishingprotection:0.10.0:0.10.1-SNAPSHOT +google-cloud-pubsub:1.81.0:1.81.1-SNAPSHOT +google-cloud-recaptchaenterprise:0.10.0:0.10.1-SNAPSHOT +google-cloud-redis:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-resourcemanager:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-scheduler:1.4.0:1.4.1-SNAPSHOT +google-cloud-securitycenter:0.99.0:0.99.1-SNAPSHOT +google-cloud-spanner:1.26.0:1.26.1-SNAPSHOT +google-cloud-speech:1.11.0:1.11.1-SNAPSHOT +google-cloud-storage:1.81.0:1.81.1-SNAPSHOT +google-cloud-talent:0.16.0-beta:0.16.1-beta-SNAPSHOT +google-cloud-tasks:1.8.0:1.8.1-SNAPSHOT +google-cloud-testing:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-texttospeech:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-trace:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-translate:1.81.0:1.81.1-SNAPSHOT +google-cloud-util:0.99.0-alpha:0.99.1-alpha-SNAPSHOT +google-cloud-video-intelligence:0.99.0-beta:0.99.1-beta-SNAPSHOT +google-cloud-vision:1.81.0:1.81.1-SNAPSHOT +google-cloud-webrisk:0.14.0-alpha:0.14.1-alpha-SNAPSHOT +google-cloud-websecurityscanner:0.99.0:0.99.1-SNAPSHOT +grafeas:0.2.0:0.2.1-SNAPSHOT +grpc-google-cloud-asset-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-asset-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-automl-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-bigquerydatatransfer-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-bigquerystorage-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-bigtable-admin-v2:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-bigtable-v2:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-container-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-containeranalysis-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-containeranalysis-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-datacatalog-v1beta1:0.12.0-alpha:0.12.1-alpha-SNAPSHOT +grpc-google-cloud-datalabeling-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-dataproc-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-dataproc-v1beta2:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-dialogflow-v2:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-dialogflow-v2beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-dlp-v2:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-error-reporting-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-firestore-admin-v1:1.11.0:1.11.1-SNAPSHOT +grpc-google-cloud-firestore-v1:1.11.0:1.11.1-SNAPSHOT +grpc-google-cloud-firestore-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-iamcredentials-v1:0.26.0-alpha:0.26.1-alpha-SNAPSHOT +grpc-google-cloud-iot-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-kms-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-language-v1:1.63.0:1.63.1-SNAPSHOT +grpc-google-cloud-language-v1beta2:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-logging-v2:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-monitoring-v3:1.63.0:1.63.1-SNAPSHOT +grpc-google-cloud-os-login-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-phishingprotection-v1beta1:0.10.0:0.10.1-SNAPSHOT +grpc-google-cloud-pubsub-v1:1.63.0:1.63.1-SNAPSHOT +grpc-google-cloud-recaptchaenterprise-v1beta1:0.10.0:0.10.1-SNAPSHOT +grpc-google-cloud-redis-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-redis-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-scheduler-v1:1.4.0:1.4.1-SNAPSHOT +grpc-google-cloud-scheduler-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-securitycenter-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-securitycenter-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-spanner-admin-database-v1:1.26.0:1.26.1-SNAPSHOT +grpc-google-cloud-spanner-admin-instance-v1:1.26.0:1.26.1-SNAPSHOT +grpc-google-cloud-spanner-v1:1.26.0:1.26.1-SNAPSHOT +grpc-google-cloud-speech-v1:1.11.0:1.11.1-SNAPSHOT +grpc-google-cloud-speech-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-speech-v1p1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-talent-v4beta1:0.16.0-beta:0.16.1-beta-SNAPSHOT +grpc-google-cloud-tasks-v2:1.8.0:1.8.1-SNAPSHOT +grpc-google-cloud-tasks-v2beta2:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-tasks-v2beta3:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-texttospeech-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-texttospeech-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-trace-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-trace-v2:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-translate-v3beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-video-intelligence-v1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-video-intelligence-v1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-video-intelligence-v1beta2:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-video-intelligence-v1p1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-video-intelligence-v1p2beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-video-intelligence-v1p3beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-vision-v1:1.63.0:1.63.1-SNAPSHOT +grpc-google-cloud-vision-v1p1beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-vision-v1p2beta1:1.63.0:1.63.1-SNAPSHOT +grpc-google-cloud-vision-v1p3beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-vision-v1p4beta1:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-webrisk-v1beta1:0.14.0-alpha:0.14.1-alpha-SNAPSHOT +grpc-google-cloud-websecurityscanner-v1alpha:0.64.0:0.64.1-SNAPSHOT +grpc-google-cloud-websecurityscanner-v1beta:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-asset-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-asset-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-automl-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-bigquerydatatransfer-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-bigquerystorage-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-bigtable-admin-v2:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-bigtable-v2:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-container-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-containeranalysis-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-containeranalysis-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-datacatalog-v1beta1:0.12.0-alpha:0.12.1-alpha-SNAPSHOT +proto-google-cloud-datalabeling-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-dataproc-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-dataproc-v1beta2:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-datastore-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-dialogflow-v2:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-dialogflow-v2beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-dlp-v2:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-error-reporting-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-firestore-admin-v1:1.11.0:1.11.1-SNAPSHOT +proto-google-cloud-firestore-v1:1.11.0:1.11.1-SNAPSHOT +proto-google-cloud-firestore-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-iamcredentials-v1:0.26.0-alpha:0.26.1-alpha-SNAPSHOT +proto-google-cloud-iot-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-kms-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-language-v1:1.63.0:1.63.1-SNAPSHOT +proto-google-cloud-language-v1beta2:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-logging-v2:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-monitoring-v3:1.63.0:1.63.1-SNAPSHOT +proto-google-cloud-os-login-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-phishingprotection-v1beta1:0.10.0:0.10.1-SNAPSHOT +proto-google-cloud-pubsub-v1:1.63.0:1.63.1-SNAPSHOT +proto-google-cloud-recaptchaenterprise-v1beta1:0.10.0:0.10.1-SNAPSHOT +proto-google-cloud-redis-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-redis-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-scheduler-v1:1.4.0:1.4.1-SNAPSHOT +proto-google-cloud-scheduler-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-securitycenter-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-securitycenter-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-spanner-admin-database-v1:1.26.0:1.26.1-SNAPSHOT +proto-google-cloud-spanner-admin-instance-v1:1.26.0:1.26.1-SNAPSHOT +proto-google-cloud-spanner-v1:1.26.0:1.26.1-SNAPSHOT +proto-google-cloud-speech-v1:1.11.0:1.11.1-SNAPSHOT +proto-google-cloud-speech-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-speech-v1p1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-talent-v4beta1:0.16.0-beta:0.16.1-beta-SNAPSHOT +proto-google-cloud-tasks-v2:1.8.0:1.8.1-SNAPSHOT +proto-google-cloud-tasks-v2beta2:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-tasks-v2beta3:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-texttospeech-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-texttospeech-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-trace-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-trace-v2:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-translate-v3beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-video-intelligence-v1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-video-intelligence-v1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-video-intelligence-v1beta2:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-video-intelligence-v1p1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-video-intelligence-v1p2beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-video-intelligence-v1p3beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-vision-v1:1.63.0:1.63.1-SNAPSHOT +proto-google-cloud-vision-v1p1beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-vision-v1p2beta1:1.63.0:1.63.1-SNAPSHOT +proto-google-cloud-vision-v1p3beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-vision-v1p4beta1:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-webrisk-v1beta1:0.14.0-alpha:0.14.1-alpha-SNAPSHOT +proto-google-cloud-websecurityscanner-v1alpha:0.64.0:0.64.1-SNAPSHOT +proto-google-cloud-websecurityscanner-v1beta:0.64.0:0.64.1-SNAPSHOT