Skip to content

Commit 83187b6

Browse files
chore: [language] add .NET-specific generation settings to service config (#9349)
* chore: add .NET-specific generation settings to service config chore: reformat proto (no content changes) PiperOrigin-RevId: 524208990 Source-Link: googleapis/googleapis@ba5b444 Source-Link: https://github.com/googleapis/googleapis-gen/commit/2f26f2de40096ed2b5532e74fad95f826d28d2ec Copy-Tag: eyJwIjoiamF2YS1sYW5ndWFnZS8uT3dsQm90LnlhbWwiLCJoIjoiMmYyNmYyZGU0MDA5NmVkMmI1NTMyZTc0ZmFkOTVmODI2ZDI4ZDJlYyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 625bb1a commit 83187b6

21 files changed

+278
-205
lines changed

java-language/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
2020
<dependency>
2121
<groupId>com.google.cloud</groupId>
2222
<artifactId>libraries-bom</artifactId>
23-
<version>26.11.0</version>
23+
<version>26.12.0</version>
2424
<type>pom</type>
2525
<scope>import</scope>
2626
</dependency>
@@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies:
4242
<dependency>
4343
<groupId>com.google.cloud</groupId>
4444
<artifactId>google-cloud-language</artifactId>
45-
<version>2.16.0</version>
45+
<version>2.15.0</version>
4646
</dependency>
4747
```
4848

4949
If you are using Gradle without BOM, add this to your dependencies:
5050

5151
```Groovy
52-
implementation 'com.google.cloud:google-cloud-language:2.16.0'
52+
implementation 'com.google.cloud:google-cloud-language:2.15.0'
5353
```
5454

5555
If you are using SBT, add this to your dependencies:
5656

5757
```Scala
58-
libraryDependencies += "com.google.cloud" % "google-cloud-language" % "2.16.0"
58+
libraryDependencies += "com.google.cloud" % "google-cloud-language" % "2.15.0"
5959
```
6060
<!-- {x-version-update-end} -->
6161

java-language/grpc-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/LanguageServiceGrpc.java

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,10 @@ default void analyzeEntities(
408408
*
409409
*
410410
* <pre>
411-
* Finds entities, similar to [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities] in the text and analyzes
412-
* sentiment associated with each entity and its mentions.
411+
* Finds entities, similar to
412+
* [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities]
413+
* in the text and analyzes sentiment associated with each entity and its
414+
* mentions.
413415
* </pre>
414416
*/
415417
default void analyzeEntitySentiment(
@@ -545,8 +547,10 @@ public void analyzeEntities(
545547
*
546548
*
547549
* <pre>
548-
* Finds entities, similar to [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities] in the text and analyzes
549-
* sentiment associated with each entity and its mentions.
550+
* Finds entities, similar to
551+
* [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities]
552+
* in the text and analyzes sentiment associated with each entity and its
553+
* mentions.
550554
* </pre>
551555
*/
552556
public void analyzeEntitySentiment(
@@ -666,8 +670,10 @@ public com.google.cloud.language.v1.AnalyzeEntitiesResponse analyzeEntities(
666670
*
667671
*
668672
* <pre>
669-
* Finds entities, similar to [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities] in the text and analyzes
670-
* sentiment associated with each entity and its mentions.
673+
* Finds entities, similar to
674+
* [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities]
675+
* in the text and analyzes sentiment associated with each entity and its
676+
* mentions.
671677
* </pre>
672678
*/
673679
public com.google.cloud.language.v1.AnalyzeEntitySentimentResponse analyzeEntitySentiment(
@@ -773,8 +779,10 @@ protected LanguageServiceFutureStub build(
773779
*
774780
*
775781
* <pre>
776-
* Finds entities, similar to [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities] in the text and analyzes
777-
* sentiment associated with each entity and its mentions.
782+
* Finds entities, similar to
783+
* [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities]
784+
* in the text and analyzes sentiment associated with each entity and its
785+
* mentions.
778786
* </pre>
779787
*/
780788
public com.google.common.util.concurrent.ListenableFuture<

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeEntitiesResponse.java

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ public com.google.cloud.language.v1.EntityOrBuilder getEntitiesOrBuilder(int ind
149149
* <pre>
150150
* The language of the text, which will be the same as the language specified
151151
* in the request or, if not specified, the automatically-detected language.
152-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
152+
* See [Document.language][google.cloud.language.v1.Document.language] field
153+
* for more details.
153154
* </pre>
154155
*
155156
* <code>string language = 2;</code>
@@ -174,7 +175,8 @@ public java.lang.String getLanguage() {
174175
* <pre>
175176
* The language of the text, which will be the same as the language specified
176177
* in the request or, if not specified, the automatically-detected language.
177-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
178+
* See [Document.language][google.cloud.language.v1.Document.language] field
179+
* for more details.
178180
* </pre>
179181
*
180182
* <code>string language = 2;</code>
@@ -963,7 +965,8 @@ public java.util.List<com.google.cloud.language.v1.Entity.Builder> getEntitiesBu
963965
* <pre>
964966
* The language of the text, which will be the same as the language specified
965967
* in the request or, if not specified, the automatically-detected language.
966-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
968+
* See [Document.language][google.cloud.language.v1.Document.language] field
969+
* for more details.
967970
* </pre>
968971
*
969972
* <code>string language = 2;</code>
@@ -987,7 +990,8 @@ public java.lang.String getLanguage() {
987990
* <pre>
988991
* The language of the text, which will be the same as the language specified
989992
* in the request or, if not specified, the automatically-detected language.
990-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
993+
* See [Document.language][google.cloud.language.v1.Document.language] field
994+
* for more details.
991995
* </pre>
992996
*
993997
* <code>string language = 2;</code>
@@ -1011,7 +1015,8 @@ public com.google.protobuf.ByteString getLanguageBytes() {
10111015
* <pre>
10121016
* The language of the text, which will be the same as the language specified
10131017
* in the request or, if not specified, the automatically-detected language.
1014-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
1018+
* See [Document.language][google.cloud.language.v1.Document.language] field
1019+
* for more details.
10151020
* </pre>
10161021
*
10171022
* <code>string language = 2;</code>
@@ -1034,7 +1039,8 @@ public Builder setLanguage(java.lang.String value) {
10341039
* <pre>
10351040
* The language of the text, which will be the same as the language specified
10361041
* in the request or, if not specified, the automatically-detected language.
1037-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
1042+
* See [Document.language][google.cloud.language.v1.Document.language] field
1043+
* for more details.
10381044
* </pre>
10391045
*
10401046
* <code>string language = 2;</code>
@@ -1053,7 +1059,8 @@ public Builder clearLanguage() {
10531059
* <pre>
10541060
* The language of the text, which will be the same as the language specified
10551061
* in the request or, if not specified, the automatically-detected language.
1056-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
1062+
* See [Document.language][google.cloud.language.v1.Document.language] field
1063+
* for more details.
10571064
* </pre>
10581065
*
10591066
* <code>string language = 2;</code>

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeEntitiesResponseOrBuilder.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ public interface AnalyzeEntitiesResponseOrBuilder
8080
* <pre>
8181
* The language of the text, which will be the same as the language specified
8282
* in the request or, if not specified, the automatically-detected language.
83-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
83+
* See [Document.language][google.cloud.language.v1.Document.language] field
84+
* for more details.
8485
* </pre>
8586
*
8687
* <code>string language = 2;</code>
@@ -94,7 +95,8 @@ public interface AnalyzeEntitiesResponseOrBuilder
9495
* <pre>
9596
* The language of the text, which will be the same as the language specified
9697
* in the request or, if not specified, the automatically-detected language.
97-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
98+
* See [Document.language][google.cloud.language.v1.Document.language] field
99+
* for more details.
98100
* </pre>
99101
*
100102
* <code>string language = 2;</code>

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeEntitySentimentResponse.java

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ public com.google.cloud.language.v1.EntityOrBuilder getEntitiesOrBuilder(int ind
150150
* <pre>
151151
* The language of the text, which will be the same as the language specified
152152
* in the request or, if not specified, the automatically-detected language.
153-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
153+
* See [Document.language][google.cloud.language.v1.Document.language] field
154+
* for more details.
154155
* </pre>
155156
*
156157
* <code>string language = 2;</code>
@@ -175,7 +176,8 @@ public java.lang.String getLanguage() {
175176
* <pre>
176177
* The language of the text, which will be the same as the language specified
177178
* in the request or, if not specified, the automatically-detected language.
178-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
179+
* See [Document.language][google.cloud.language.v1.Document.language] field
180+
* for more details.
179181
* </pre>
180182
*
181183
* <code>string language = 2;</code>
@@ -965,7 +967,8 @@ public java.util.List<com.google.cloud.language.v1.Entity.Builder> getEntitiesBu
965967
* <pre>
966968
* The language of the text, which will be the same as the language specified
967969
* in the request or, if not specified, the automatically-detected language.
968-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
970+
* See [Document.language][google.cloud.language.v1.Document.language] field
971+
* for more details.
969972
* </pre>
970973
*
971974
* <code>string language = 2;</code>
@@ -989,7 +992,8 @@ public java.lang.String getLanguage() {
989992
* <pre>
990993
* The language of the text, which will be the same as the language specified
991994
* in the request or, if not specified, the automatically-detected language.
992-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
995+
* See [Document.language][google.cloud.language.v1.Document.language] field
996+
* for more details.
993997
* </pre>
994998
*
995999
* <code>string language = 2;</code>
@@ -1013,7 +1017,8 @@ public com.google.protobuf.ByteString getLanguageBytes() {
10131017
* <pre>
10141018
* The language of the text, which will be the same as the language specified
10151019
* in the request or, if not specified, the automatically-detected language.
1016-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
1020+
* See [Document.language][google.cloud.language.v1.Document.language] field
1021+
* for more details.
10171022
* </pre>
10181023
*
10191024
* <code>string language = 2;</code>
@@ -1036,7 +1041,8 @@ public Builder setLanguage(java.lang.String value) {
10361041
* <pre>
10371042
* The language of the text, which will be the same as the language specified
10381043
* in the request or, if not specified, the automatically-detected language.
1039-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
1044+
* See [Document.language][google.cloud.language.v1.Document.language] field
1045+
* for more details.
10401046
* </pre>
10411047
*
10421048
* <code>string language = 2;</code>
@@ -1055,7 +1061,8 @@ public Builder clearLanguage() {
10551061
* <pre>
10561062
* The language of the text, which will be the same as the language specified
10571063
* in the request or, if not specified, the automatically-detected language.
1058-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
1064+
* See [Document.language][google.cloud.language.v1.Document.language] field
1065+
* for more details.
10591066
* </pre>
10601067
*
10611068
* <code>string language = 2;</code>

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeEntitySentimentResponseOrBuilder.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ public interface AnalyzeEntitySentimentResponseOrBuilder
8080
* <pre>
8181
* The language of the text, which will be the same as the language specified
8282
* in the request or, if not specified, the automatically-detected language.
83-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
83+
* See [Document.language][google.cloud.language.v1.Document.language] field
84+
* for more details.
8485
* </pre>
8586
*
8687
* <code>string language = 2;</code>
@@ -94,7 +95,8 @@ public interface AnalyzeEntitySentimentResponseOrBuilder
9495
* <pre>
9596
* The language of the text, which will be the same as the language specified
9697
* in the request or, if not specified, the automatically-detected language.
97-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
98+
* See [Document.language][google.cloud.language.v1.Document.language] field
99+
* for more details.
98100
* </pre>
99101
*
100102
* <code>string language = 2;</code>

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeSentimentResponse.java

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ public com.google.cloud.language.v1.SentimentOrBuilder getDocumentSentimentOrBui
128128
* <pre>
129129
* The language of the text, which will be the same as the language specified
130130
* in the request or, if not specified, the automatically-detected language.
131-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
131+
* See [Document.language][google.cloud.language.v1.Document.language] field
132+
* for more details.
132133
* </pre>
133134
*
134135
* <code>string language = 2;</code>
@@ -153,7 +154,8 @@ public java.lang.String getLanguage() {
153154
* <pre>
154155
* The language of the text, which will be the same as the language specified
155156
* in the request or, if not specified, the automatically-detected language.
156-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
157+
* See [Document.language][google.cloud.language.v1.Document.language] field
158+
* for more details.
157159
* </pre>
158160
*
159161
* <code>string language = 2;</code>
@@ -885,7 +887,8 @@ public com.google.cloud.language.v1.SentimentOrBuilder getDocumentSentimentOrBui
885887
* <pre>
886888
* The language of the text, which will be the same as the language specified
887889
* in the request or, if not specified, the automatically-detected language.
888-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
890+
* See [Document.language][google.cloud.language.v1.Document.language] field
891+
* for more details.
889892
* </pre>
890893
*
891894
* <code>string language = 2;</code>
@@ -909,7 +912,8 @@ public java.lang.String getLanguage() {
909912
* <pre>
910913
* The language of the text, which will be the same as the language specified
911914
* in the request or, if not specified, the automatically-detected language.
912-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
915+
* See [Document.language][google.cloud.language.v1.Document.language] field
916+
* for more details.
913917
* </pre>
914918
*
915919
* <code>string language = 2;</code>
@@ -933,7 +937,8 @@ public com.google.protobuf.ByteString getLanguageBytes() {
933937
* <pre>
934938
* The language of the text, which will be the same as the language specified
935939
* in the request or, if not specified, the automatically-detected language.
936-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
940+
* See [Document.language][google.cloud.language.v1.Document.language] field
941+
* for more details.
937942
* </pre>
938943
*
939944
* <code>string language = 2;</code>
@@ -956,7 +961,8 @@ public Builder setLanguage(java.lang.String value) {
956961
* <pre>
957962
* The language of the text, which will be the same as the language specified
958963
* in the request or, if not specified, the automatically-detected language.
959-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
964+
* See [Document.language][google.cloud.language.v1.Document.language] field
965+
* for more details.
960966
* </pre>
961967
*
962968
* <code>string language = 2;</code>
@@ -975,7 +981,8 @@ public Builder clearLanguage() {
975981
* <pre>
976982
* The language of the text, which will be the same as the language specified
977983
* in the request or, if not specified, the automatically-detected language.
978-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
984+
* See [Document.language][google.cloud.language.v1.Document.language] field
985+
* for more details.
979986
* </pre>
980987
*
981988
* <code>string language = 2;</code>

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeSentimentResponseOrBuilder.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ public interface AnalyzeSentimentResponseOrBuilder
6464
* <pre>
6565
* The language of the text, which will be the same as the language specified
6666
* in the request or, if not specified, the automatically-detected language.
67-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
67+
* See [Document.language][google.cloud.language.v1.Document.language] field
68+
* for more details.
6869
* </pre>
6970
*
7071
* <code>string language = 2;</code>
@@ -78,7 +79,8 @@ public interface AnalyzeSentimentResponseOrBuilder
7879
* <pre>
7980
* The language of the text, which will be the same as the language specified
8081
* in the request or, if not specified, the automatically-detected language.
81-
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
82+
* See [Document.language][google.cloud.language.v1.Document.language] field
83+
* for more details.
8284
* </pre>
8385
*
8486
* <code>string language = 2;</code>

0 commit comments

Comments
 (0)