Skip to content

Commit 9e136cf

Browse files
authored
Release gapics (#3423)
Generated with googleapis/gapic-generator#2131 to fix error in LoggingClient (see fix at andreamlin/google-cloud-java@386c987) Update google-common-protos to v 1.12.0. Add google-cloud-tasks for the first time. Remove LoggingSmokeTest.java, because the Logging smoke config has been removed from googleapis/googleapis, and the existing LoggingSmokeTest.java is incompatible with the current google-cloud-logging/src/main.
1 parent aa23ce4 commit 9e136cf

File tree

207 files changed

+64143
-2570
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+64143
-2570
lines changed

google-api-grpc/grpc-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/DlpServiceGrpc.java

+222-28
Large diffs are not rendered by default.

google-api-grpc/grpc-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LoggingServiceV2Grpc.java

+12-4
Original file line numberDiff line numberDiff line change
@@ -261,12 +261,14 @@ public void deleteLog(com.google.logging.v2.DeleteLogRequest request,
261261

262262
/**
263263
* <pre>
264-
* ## Log entry resources
265264
* Writes log entries to Stackdriver Logging. This API method is the
266265
* only way to send log entries to Stackdriver Logging. This method
267266
* is used, directly or indirectly, by the Stackdriver Logging agent
268267
* (fluentd) and all logging libraries configured to use Stackdriver
269268
* Logging.
269+
* A single request may contain log entries for a maximum of 1000
270+
* different resources (projects, organizations, billing accounts or
271+
* folders)
270272
* </pre>
271273
*/
272274
public void writeLogEntries(com.google.logging.v2.WriteLogEntriesRequest request,
@@ -386,12 +388,14 @@ public void deleteLog(com.google.logging.v2.DeleteLogRequest request,
386388

387389
/**
388390
* <pre>
389-
* ## Log entry resources
390391
* Writes log entries to Stackdriver Logging. This API method is the
391392
* only way to send log entries to Stackdriver Logging. This method
392393
* is used, directly or indirectly, by the Stackdriver Logging agent
393394
* (fluentd) and all logging libraries configured to use Stackdriver
394395
* Logging.
396+
* A single request may contain log entries for a maximum of 1000
397+
* different resources (projects, organizations, billing accounts or
398+
* folders)
395399
* </pre>
396400
*/
397401
public void writeLogEntries(com.google.logging.v2.WriteLogEntriesRequest request,
@@ -474,12 +478,14 @@ public com.google.protobuf.Empty deleteLog(com.google.logging.v2.DeleteLogReques
474478

475479
/**
476480
* <pre>
477-
* ## Log entry resources
478481
* Writes log entries to Stackdriver Logging. This API method is the
479482
* only way to send log entries to Stackdriver Logging. This method
480483
* is used, directly or indirectly, by the Stackdriver Logging agent
481484
* (fluentd) and all logging libraries configured to use Stackdriver
482485
* Logging.
486+
* A single request may contain log entries for a maximum of 1000
487+
* different resources (projects, organizations, billing accounts or
488+
* folders)
483489
* </pre>
484490
*/
485491
public com.google.logging.v2.WriteLogEntriesResponse writeLogEntries(com.google.logging.v2.WriteLogEntriesRequest request) {
@@ -559,12 +565,14 @@ public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Em
559565

560566
/**
561567
* <pre>
562-
* ## Log entry resources
563568
* Writes log entries to Stackdriver Logging. This API method is the
564569
* only way to send log entries to Stackdriver Logging. This method
565570
* is used, directly or indirectly, by the Stackdriver Logging agent
566571
* (fluentd) and all logging libraries configured to use Stackdriver
567572
* Logging.
573+
* A single request may contain log entries for a maximum of 1000
574+
* different resources (projects, organizations, billing accounts or
575+
* folders)
568576
* </pre>
569577
*/
570578
public com.google.common.util.concurrent.ListenableFuture<com.google.logging.v2.WriteLogEntriesResponse> writeLogEntries(
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<artifactId>grpc-google-cloud-tasks-v2beta2</artifactId>
6+
<version>0.18.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-tasks-v2beta2:current} -->
7+
<name>grpc-google-cloud-tasks-v2beta2</name>
8+
<description>GRPC library for grpc-google-cloud-tasks-v2beta2</description>
9+
<parent>
10+
<groupId>com.google.api.grpc</groupId>
11+
<artifactId>google-api-grpc</artifactId>
12+
<version>0.18.1-SNAPSHOT</version><!-- {x-version-update:google-api-grpc:current} -->
13+
</parent>
14+
<dependencies>
15+
<dependency>
16+
<groupId>io.grpc</groupId>
17+
<artifactId>grpc-stub</artifactId>
18+
<scope>compile</scope>
19+
</dependency>
20+
<dependency>
21+
<groupId>io.grpc</groupId>
22+
<artifactId>grpc-protobuf</artifactId>
23+
<scope>compile</scope>
24+
</dependency>
25+
<dependency>
26+
<groupId>com.google.api.grpc</groupId>
27+
<artifactId>proto-google-cloud-tasks-v2beta2</artifactId>
28+
<scope>compile</scope>
29+
</dependency>
30+
</dependencies>
31+
</project>

google-api-grpc/grpc-google-cloud-tasks-v2beta2/src/main/java/com/google/cloud/tasks/v2beta2/CloudTasksGrpc.java

+2,574
Large diffs are not rendered by default.

google-api-grpc/pom.xml

+13-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
<dependency>
118118
<groupId>com.google.api.grpc</groupId>
119119
<artifactId>proto-google-common-protos</artifactId>
120-
<version>1.11.0</version>
120+
<version>1.12.0</version>
121121
</dependency>
122122
<dependency>
123123
<groupId>com.google.api.grpc</groupId>
@@ -356,6 +356,16 @@
356356
<artifactId>grpc-google-cloud-speech-v1</artifactId>
357357
<version>0.18.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-speech-v1:current} -->
358358
</dependency>
359+
<dependency>
360+
<groupId>com.google.api.grpc</groupId>
361+
<artifactId>proto-google-cloud-tasks-v2beta2</artifactId>
362+
<version>0.18.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-tasks-v2beta2:current} -->
363+
</dependency>
364+
<dependency>
365+
<groupId>com.google.api.grpc</groupId>
366+
<artifactId>grpc-google-cloud-tasks-v2beta2</artifactId>
367+
<version>0.18.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-tasks-v2beta2:current} -->
368+
</dependency>
359369
<dependency>
360370
<groupId>com.google.api.grpc</groupId>
361371
<artifactId>proto-google-cloud-texttospeech-v1</artifactId>
@@ -522,6 +532,7 @@
522532
<module>grpc-google-cloud-speech-v1</module>
523533
<module>grpc-google-cloud-speech-v1beta1</module>
524534
<module>grpc-google-cloud-speech-v1p1beta1</module>
535+
<module>grpc-google-cloud-tasks-v2beta2</module>
525536
<module>grpc-google-cloud-texttospeech-v1</module>
526537
<module>grpc-google-cloud-texttospeech-v1beta1</module>
527538
<module>grpc-google-cloud-trace-v1</module>
@@ -559,6 +570,7 @@
559570
<module>proto-google-cloud-speech-v1</module>
560571
<module>proto-google-cloud-speech-v1beta1</module>
561572
<module>proto-google-cloud-speech-v1p1beta1</module>
573+
<module>proto-google-cloud-tasks-v2beta2</module>
562574
<module>proto-google-cloud-texttospeech-v1</module>
563575
<module>proto-google-cloud-texttospeech-v1beta1</module>
564576
<module>proto-google-cloud-trace-v1</module>

google-api-grpc/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/Action.java

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)