listSinksPa
*
* {@code
* try (ConfigClient configClient = ConfigClient.create()) {
+ * ListSinksRequest request =
+ * ListSinksRequest.newBuilder()
+ * .setParent(LogSinkName.ofProjectSinkName("[PROJECT]", "[SINK]").toString())
+ * .setPageToken("pageToken873572522")
+ * .setPageSize(883849137)
+ * .build();
* while (true) {
* ListSinksResponse response = configClient.listSinksCallable().call(request);
* for (LogSink element : response.getResponsesList()) {
@@ -2091,6 +2111,13 @@ public final ListExclusionsPagedResponse listExclusions(ListExclusionsRequest re
*
* {@code
* try (ConfigClient configClient = ConfigClient.create()) {
+ * ListExclusionsRequest request =
+ * ListExclusionsRequest.newBuilder()
+ * .setParent(
+ * LogExclusionName.ofProjectExclusionName("[PROJECT]", "[EXCLUSION]").toString())
+ * .setPageToken("pageToken873572522")
+ * .setPageSize(883849137)
+ * .build();
* while (true) {
* ListExclusionsResponse response = configClient.listExclusionsCallable().call(request);
* for (LogExclusion element : response.getResponsesList()) {
diff --git a/google-cloud-logging/src/main/java/com/google/cloud/logging/v2/LoggingClient.java b/google-cloud-logging/src/main/java/com/google/cloud/logging/v2/LoggingClient.java
index cc51eabac..66f7afcda 100644
--- a/google-cloud-logging/src/main/java/com/google/cloud/logging/v2/LoggingClient.java
+++ b/google-cloud-logging/src/main/java/com/google/cloud/logging/v2/LoggingClient.java
@@ -613,6 +613,14 @@ public final ListLogEntriesPagedResponse listLogEntries(ListLogEntriesRequest re
*
* {@code
* try (LoggingClient loggingClient = LoggingClient.create()) {
+ * ListLogEntriesRequest request =
+ * ListLogEntriesRequest.newBuilder()
+ * .addAllResourceNames(new ArrayList())
+ * .setFilter("filter-1274492040")
+ * .setOrderBy("orderBy-1207110587")
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .build();
* while (true) {
* ListLogEntriesResponse response = loggingClient.listLogEntriesCallable().call(request);
* for (LogEntry element : response.getResponsesList()) {
@@ -697,6 +705,11 @@ public final ListMonitoredResourceDescriptorsPagedResponse listMonitoredResource
*
* {@code
* try (LoggingClient loggingClient = LoggingClient.create()) {
+ * ListMonitoredResourceDescriptorsRequest request =
+ * ListMonitoredResourceDescriptorsRequest.newBuilder()
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .build();
* while (true) {
* ListMonitoredResourceDescriptorsResponse response =
* loggingClient.listMonitoredResourceDescriptorsCallable().call(request);
@@ -919,6 +932,13 @@ public final UnaryCallable listLogsPaged
*
* {@code
* try (LoggingClient loggingClient = LoggingClient.create()) {
+ * ListLogsRequest request =
+ * ListLogsRequest.newBuilder()
+ * .setParent(LogName.ofProjectLogName("[PROJECT]", "[LOG]").toString())
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .addAllResourceNames(new ArrayList())
+ * .build();
* while (true) {
* ListLogsResponse response = loggingClient.listLogsCallable().call(request);
* for (String element : response.getResponsesList()) {
diff --git a/google-cloud-logging/src/main/java/com/google/cloud/logging/v2/MetricsClient.java b/google-cloud-logging/src/main/java/com/google/cloud/logging/v2/MetricsClient.java
index 7c498fe19..987083a26 100644
--- a/google-cloud-logging/src/main/java/com/google/cloud/logging/v2/MetricsClient.java
+++ b/google-cloud-logging/src/main/java/com/google/cloud/logging/v2/MetricsClient.java
@@ -267,6 +267,12 @@ public final ListLogMetricsPagedResponse listLogMetrics(ListLogMetricsRequest re
*
* {@code
* try (MetricsClient metricsClient = MetricsClient.create()) {
+ * ListLogMetricsRequest request =
+ * ListLogMetricsRequest.newBuilder()
+ * .setParent(ProjectName.of("[PROJECT]").toString())
+ * .setPageToken("pageToken873572522")
+ * .setPageSize(883849137)
+ * .build();
* while (true) {
* ListLogMetricsResponse response = metricsClient.listLogMetricsCallable().call(request);
* for (LogMetric element : response.getResponsesList()) {
diff --git a/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockConfigServiceV2Impl.java b/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockConfigServiceV2Impl.java
index 345c4ff03..406467a56 100644
--- a/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockConfigServiceV2Impl.java
+++ b/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockConfigServiceV2Impl.java
@@ -94,7 +94,7 @@ public void reset() {
@Override
public void listBuckets(
ListBucketsRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof ListBucketsResponse) {
requests.add(request);
responseObserver.onNext(((ListBucketsResponse) response));
@@ -106,7 +106,7 @@ public void listBuckets(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ListBuckets, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
ListBucketsResponse.class.getName(),
Exception.class.getName())));
}
@@ -114,7 +114,7 @@ public void listBuckets(
@Override
public void getBucket(GetBucketRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogBucket) {
requests.add(request);
responseObserver.onNext(((LogBucket) response));
@@ -126,7 +126,7 @@ public void getBucket(GetBucketRequest request, StreamObserver respon
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method GetBucket, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogBucket.class.getName(),
Exception.class.getName())));
}
@@ -135,7 +135,7 @@ public void getBucket(GetBucketRequest request, StreamObserver respon
@Override
public void createBucket(
CreateBucketRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogBucket) {
requests.add(request);
responseObserver.onNext(((LogBucket) response));
@@ -147,7 +147,7 @@ public void createBucket(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method CreateBucket, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogBucket.class.getName(),
Exception.class.getName())));
}
@@ -156,7 +156,7 @@ public void createBucket(
@Override
public void updateBucket(
UpdateBucketRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogBucket) {
requests.add(request);
responseObserver.onNext(((LogBucket) response));
@@ -168,7 +168,7 @@ public void updateBucket(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method UpdateBucket, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogBucket.class.getName(),
Exception.class.getName())));
}
@@ -176,7 +176,7 @@ public void updateBucket(
@Override
public void deleteBucket(DeleteBucketRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Empty) {
requests.add(request);
responseObserver.onNext(((Empty) response));
@@ -188,7 +188,7 @@ public void deleteBucket(DeleteBucketRequest request, StreamObserver resp
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method DeleteBucket, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Empty.class.getName(),
Exception.class.getName())));
}
@@ -197,7 +197,7 @@ public void deleteBucket(DeleteBucketRequest request, StreamObserver resp
@Override
public void undeleteBucket(
UndeleteBucketRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Empty) {
requests.add(request);
responseObserver.onNext(((Empty) response));
@@ -209,7 +209,7 @@ public void undeleteBucket(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method UndeleteBucket, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Empty.class.getName(),
Exception.class.getName())));
}
@@ -218,7 +218,7 @@ public void undeleteBucket(
@Override
public void listViews(
ListViewsRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof ListViewsResponse) {
requests.add(request);
responseObserver.onNext(((ListViewsResponse) response));
@@ -230,7 +230,7 @@ public void listViews(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ListViews, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
ListViewsResponse.class.getName(),
Exception.class.getName())));
}
@@ -238,7 +238,7 @@ public void listViews(
@Override
public void getView(GetViewRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogView) {
requests.add(request);
responseObserver.onNext(((LogView) response));
@@ -250,7 +250,7 @@ public void getView(GetViewRequest request, StreamObserver responseObse
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method GetView, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogView.class.getName(),
Exception.class.getName())));
}
@@ -258,7 +258,7 @@ public void getView(GetViewRequest request, StreamObserver responseObse
@Override
public void createView(CreateViewRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogView) {
requests.add(request);
responseObserver.onNext(((LogView) response));
@@ -270,7 +270,7 @@ public void createView(CreateViewRequest request, StreamObserver respon
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method CreateView, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogView.class.getName(),
Exception.class.getName())));
}
@@ -278,7 +278,7 @@ public void createView(CreateViewRequest request, StreamObserver respon
@Override
public void updateView(UpdateViewRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogView) {
requests.add(request);
responseObserver.onNext(((LogView) response));
@@ -290,7 +290,7 @@ public void updateView(UpdateViewRequest request, StreamObserver respon
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method UpdateView, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogView.class.getName(),
Exception.class.getName())));
}
@@ -298,7 +298,7 @@ public void updateView(UpdateViewRequest request, StreamObserver respon
@Override
public void deleteView(DeleteViewRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Empty) {
requests.add(request);
responseObserver.onNext(((Empty) response));
@@ -310,7 +310,7 @@ public void deleteView(DeleteViewRequest request, StreamObserver response
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method DeleteView, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Empty.class.getName(),
Exception.class.getName())));
}
@@ -319,7 +319,7 @@ public void deleteView(DeleteViewRequest request, StreamObserver response
@Override
public void listSinks(
ListSinksRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof ListSinksResponse) {
requests.add(request);
responseObserver.onNext(((ListSinksResponse) response));
@@ -331,7 +331,7 @@ public void listSinks(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ListSinks, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
ListSinksResponse.class.getName(),
Exception.class.getName())));
}
@@ -339,7 +339,7 @@ public void listSinks(
@Override
public void getSink(GetSinkRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogSink) {
requests.add(request);
responseObserver.onNext(((LogSink) response));
@@ -351,7 +351,7 @@ public void getSink(GetSinkRequest request, StreamObserver responseObse
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method GetSink, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogSink.class.getName(),
Exception.class.getName())));
}
@@ -359,7 +359,7 @@ public void getSink(GetSinkRequest request, StreamObserver responseObse
@Override
public void createSink(CreateSinkRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogSink) {
requests.add(request);
responseObserver.onNext(((LogSink) response));
@@ -371,7 +371,7 @@ public void createSink(CreateSinkRequest request, StreamObserver respon
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method CreateSink, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogSink.class.getName(),
Exception.class.getName())));
}
@@ -379,7 +379,7 @@ public void createSink(CreateSinkRequest request, StreamObserver respon
@Override
public void updateSink(UpdateSinkRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogSink) {
requests.add(request);
responseObserver.onNext(((LogSink) response));
@@ -391,7 +391,7 @@ public void updateSink(UpdateSinkRequest request, StreamObserver respon
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method UpdateSink, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogSink.class.getName(),
Exception.class.getName())));
}
@@ -399,7 +399,7 @@ public void updateSink(UpdateSinkRequest request, StreamObserver respon
@Override
public void deleteSink(DeleteSinkRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Empty) {
requests.add(request);
responseObserver.onNext(((Empty) response));
@@ -411,7 +411,7 @@ public void deleteSink(DeleteSinkRequest request, StreamObserver response
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method DeleteSink, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Empty.class.getName(),
Exception.class.getName())));
}
@@ -420,7 +420,7 @@ public void deleteSink(DeleteSinkRequest request, StreamObserver response
@Override
public void listExclusions(
ListExclusionsRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof ListExclusionsResponse) {
requests.add(request);
responseObserver.onNext(((ListExclusionsResponse) response));
@@ -432,7 +432,7 @@ public void listExclusions(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ListExclusions, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
ListExclusionsResponse.class.getName(),
Exception.class.getName())));
}
@@ -441,7 +441,7 @@ public void listExclusions(
@Override
public void getExclusion(
GetExclusionRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogExclusion) {
requests.add(request);
responseObserver.onNext(((LogExclusion) response));
@@ -453,7 +453,7 @@ public void getExclusion(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method GetExclusion, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogExclusion.class.getName(),
Exception.class.getName())));
}
@@ -462,7 +462,7 @@ public void getExclusion(
@Override
public void createExclusion(
CreateExclusionRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogExclusion) {
requests.add(request);
responseObserver.onNext(((LogExclusion) response));
@@ -474,7 +474,7 @@ public void createExclusion(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method CreateExclusion, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogExclusion.class.getName(),
Exception.class.getName())));
}
@@ -483,7 +483,7 @@ public void createExclusion(
@Override
public void updateExclusion(
UpdateExclusionRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogExclusion) {
requests.add(request);
responseObserver.onNext(((LogExclusion) response));
@@ -495,7 +495,7 @@ public void updateExclusion(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method UpdateExclusion, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogExclusion.class.getName(),
Exception.class.getName())));
}
@@ -504,7 +504,7 @@ public void updateExclusion(
@Override
public void deleteExclusion(
DeleteExclusionRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Empty) {
requests.add(request);
responseObserver.onNext(((Empty) response));
@@ -516,7 +516,7 @@ public void deleteExclusion(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method DeleteExclusion, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Empty.class.getName(),
Exception.class.getName())));
}
@@ -525,7 +525,7 @@ public void deleteExclusion(
@Override
public void getCmekSettings(
GetCmekSettingsRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof CmekSettings) {
requests.add(request);
responseObserver.onNext(((CmekSettings) response));
@@ -537,7 +537,7 @@ public void getCmekSettings(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method GetCmekSettings, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
CmekSettings.class.getName(),
Exception.class.getName())));
}
@@ -546,7 +546,7 @@ public void getCmekSettings(
@Override
public void updateCmekSettings(
UpdateCmekSettingsRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof CmekSettings) {
requests.add(request);
responseObserver.onNext(((CmekSettings) response));
@@ -558,7 +558,7 @@ public void updateCmekSettings(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method UpdateCmekSettings, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
CmekSettings.class.getName(),
Exception.class.getName())));
}
diff --git a/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockLoggingServiceV2Impl.java b/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockLoggingServiceV2Impl.java
index 6a3a33098..e98eccb92 100644
--- a/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockLoggingServiceV2Impl.java
+++ b/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockLoggingServiceV2Impl.java
@@ -72,7 +72,7 @@ public void reset() {
@Override
public void deleteLog(DeleteLogRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Empty) {
requests.add(request);
responseObserver.onNext(((Empty) response));
@@ -84,7 +84,7 @@ public void deleteLog(DeleteLogRequest request, StreamObserver responseOb
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method DeleteLog, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Empty.class.getName(),
Exception.class.getName())));
}
@@ -93,7 +93,7 @@ public void deleteLog(DeleteLogRequest request, StreamObserver responseOb
@Override
public void writeLogEntries(
WriteLogEntriesRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof WriteLogEntriesResponse) {
requests.add(request);
responseObserver.onNext(((WriteLogEntriesResponse) response));
@@ -105,7 +105,7 @@ public void writeLogEntries(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method WriteLogEntries, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
WriteLogEntriesResponse.class.getName(),
Exception.class.getName())));
}
@@ -114,7 +114,7 @@ public void writeLogEntries(
@Override
public void listLogEntries(
ListLogEntriesRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof ListLogEntriesResponse) {
requests.add(request);
responseObserver.onNext(((ListLogEntriesResponse) response));
@@ -126,7 +126,7 @@ public void listLogEntries(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ListLogEntries, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
ListLogEntriesResponse.class.getName(),
Exception.class.getName())));
}
@@ -136,7 +136,7 @@ public void listLogEntries(
public void listMonitoredResourceDescriptors(
ListMonitoredResourceDescriptorsRequest request,
StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof ListMonitoredResourceDescriptorsResponse) {
requests.add(request);
responseObserver.onNext(((ListMonitoredResourceDescriptorsResponse) response));
@@ -148,7 +148,7 @@ public void listMonitoredResourceDescriptors(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ListMonitoredResourceDescriptors, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
ListMonitoredResourceDescriptorsResponse.class.getName(),
Exception.class.getName())));
}
@@ -156,7 +156,7 @@ public void listMonitoredResourceDescriptors(
@Override
public void listLogs(ListLogsRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof ListLogsResponse) {
requests.add(request);
responseObserver.onNext(((ListLogsResponse) response));
@@ -168,7 +168,7 @@ public void listLogs(ListLogsRequest request, StreamObserver r
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ListLogs, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
ListLogsResponse.class.getName(),
Exception.class.getName())));
}
@@ -192,7 +192,7 @@ public void onNext(TailLogEntriesRequest value) {
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method TailLogEntries, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
TailLogEntriesResponse.class.getName(),
Exception.class.getName())));
}
diff --git a/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockMetricsServiceV2Impl.java b/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockMetricsServiceV2Impl.java
index 9cc5f7962..716d44770 100644
--- a/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockMetricsServiceV2Impl.java
+++ b/google-cloud-logging/src/test/java/com/google/cloud/logging/v2/MockMetricsServiceV2Impl.java
@@ -69,7 +69,7 @@ public void reset() {
@Override
public void listLogMetrics(
ListLogMetricsRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof ListLogMetricsResponse) {
requests.add(request);
responseObserver.onNext(((ListLogMetricsResponse) response));
@@ -81,7 +81,7 @@ public void listLogMetrics(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ListLogMetrics, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
ListLogMetricsResponse.class.getName(),
Exception.class.getName())));
}
@@ -90,7 +90,7 @@ public void listLogMetrics(
@Override
public void getLogMetric(
GetLogMetricRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogMetric) {
requests.add(request);
responseObserver.onNext(((LogMetric) response));
@@ -102,7 +102,7 @@ public void getLogMetric(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method GetLogMetric, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogMetric.class.getName(),
Exception.class.getName())));
}
@@ -111,7 +111,7 @@ public void getLogMetric(
@Override
public void createLogMetric(
CreateLogMetricRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogMetric) {
requests.add(request);
responseObserver.onNext(((LogMetric) response));
@@ -123,7 +123,7 @@ public void createLogMetric(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method CreateLogMetric, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogMetric.class.getName(),
Exception.class.getName())));
}
@@ -132,7 +132,7 @@ public void createLogMetric(
@Override
public void updateLogMetric(
UpdateLogMetricRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof LogMetric) {
requests.add(request);
responseObserver.onNext(((LogMetric) response));
@@ -144,7 +144,7 @@ public void updateLogMetric(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method UpdateLogMetric, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
LogMetric.class.getName(),
Exception.class.getName())));
}
@@ -153,7 +153,7 @@ public void updateLogMetric(
@Override
public void deleteLogMetric(
DeleteLogMetricRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Empty) {
requests.add(request);
responseObserver.onNext(((Empty) response));
@@ -165,7 +165,7 @@ public void deleteLogMetric(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method DeleteLogMetric, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Empty.class.getName(),
Exception.class.getName())));
}
diff --git a/synth.metadata b/synth.metadata
index 4fcd1136b..f47a8eb90 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,15 +4,15 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-logging.git",
- "sha": "676d0baea2c591f477c0036191874c3d40288251"
+ "sha": "75ef9f7ff5051c3f91d45a26ecd3cef7ded22d18"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "0e915217fb5261c1e57bfaf0e16ee5c7feaaba89",
- "internalRef": "361377784"
+ "sha": "1305ca41d554eb0725237561e34129373bb8cbc1",
+ "internalRef": "362856902"
}
},
{
From dd8e4bf4986ea7604bc66abf729a178c86684c25 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Mon, 15 Mar 2021 08:50:32 -0700
Subject: [PATCH 03/14] chore: regenerate README (#470)
This PR was generated using Autosynth. :rainbow:
Log from Synthtool
```
2021-03-15 15:30:38,481 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-logging/.github/readme/synth.py.
On branch autosynth-readme
nothing to commit, working tree clean
2021-03-15 15:30:39,320 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.
```
Full log will be available here:
https://source.cloud.google.com/results/invocations/7521aff4-5cfd-4fe9-ab60-ebb2b60650e2/targets
- [ ] To automatically regenerate this PR, check this box.
---
.github/readme/synth.metadata/synth.metadata | 4 ++--
README.md | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/readme/synth.metadata/synth.metadata b/.github/readme/synth.metadata/synth.metadata
index afa70797d..5eb363beb 100644
--- a/.github/readme/synth.metadata/synth.metadata
+++ b/.github/readme/synth.metadata/synth.metadata
@@ -4,14 +4,14 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-logging.git",
- "sha": "3e1046b26ad9348c9ccd55c34b9ab51174a3bffb"
+ "sha": "5d43881241c81a3b0ec2fa2979337228148216f5"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "2e7bd5cc66a3f0b90ce1c150eb35c89eeb9872d6"
+ "sha": "2c54c473779ea731128cea61a3a6c975a08a5378"
}
}
]
diff --git a/README.md b/README.md
index db624ec0c..40f31fcfe 100644
--- a/README.md
+++ b/README.md
@@ -52,12 +52,12 @@ compile 'com.google.cloud:google-cloud-logging'
```
If you are using Gradle without BOM, add this to your dependencies
```Groovy
-compile 'com.google.cloud:google-cloud-logging:2.1.5'
+compile 'com.google.cloud:google-cloud-logging:2.2.0'
```
If you are using SBT, add this to your dependencies
```Scala
-libraryDependencies += "com.google.cloud" % "google-cloud-logging" % "2.1.5"
+libraryDependencies += "com.google.cloud" % "google-cloud-logging" % "2.2.0"
```
## Authentication
From 7bc6cb956e278583f2e6ebe68796dcb71bbe5eb0 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Wed, 17 Mar 2021 21:08:08 +0100
Subject: [PATCH 04/14] chore(deps): update dependency
com.google.cloud:libraries-bom to v19.1.0 (#471)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `19.0.0` -> `19.1.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Renovate configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-logging).
---
samples/snippets/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml
index 2482d348c..fcebf46d5 100644
--- a/samples/snippets/pom.xml
+++ b/samples/snippets/pom.xml
@@ -29,7 +29,7 @@
com.google.cloud
libraries-bom
- 19.0.0
+ 19.1.0
pom
import
From c5f89832028f08dbe0ce94f9654660772cc10eab Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Wed, 17 Mar 2021 13:42:22 -0700
Subject: [PATCH 05/14] chore: regenerate README (#472)
This PR was generated using Autosynth. :rainbow:
Log from Synthtool
```
2021-03-17 20:10:29,348 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-logging/.github/readme/synth.py.
On branch autosynth-readme
nothing to commit, working tree clean
2021-03-17 20:10:30,287 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.
```
Full log will be available here:
https://source.cloud.google.com/results/invocations/91fdfbe5-ebed-4046-9aa2-92cd6e2d6849/targets
- [ ] To automatically regenerate this PR, check this box.
---
.github/readme/synth.metadata/synth.metadata | 4 ++--
README.md | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/readme/synth.metadata/synth.metadata b/.github/readme/synth.metadata/synth.metadata
index 5eb363beb..b9703d62d 100644
--- a/.github/readme/synth.metadata/synth.metadata
+++ b/.github/readme/synth.metadata/synth.metadata
@@ -4,14 +4,14 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-logging.git",
- "sha": "5d43881241c81a3b0ec2fa2979337228148216f5"
+ "sha": "7bc6cb956e278583f2e6ebe68796dcb71bbe5eb0"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "2c54c473779ea731128cea61a3a6c975a08a5378"
+ "sha": "78437c732a60c64895778697b078497b0988346c"
}
}
]
diff --git a/README.md b/README.md
index 40f31fcfe..5831302ac 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file
com.google.cloud
libraries-bom
- 19.0.0
+ 19.1.0
pom
import
@@ -46,7 +46,7 @@ If you are using Maven without BOM, add this to your dependencies:
If you are using Gradle 5.x or later, add this to your dependencies
```Groovy
-implementation platform('com.google.cloud:libraries-bom:19.0.0')
+implementation platform('com.google.cloud:libraries-bom:19.1.0')
compile 'com.google.cloud:google-cloud-logging'
```
From e4acb6c59805e92d244cdf907d9a50a77f82d269 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Fri, 19 Mar 2021 19:04:03 +0100
Subject: [PATCH 06/14] chore(deps): update dependency
com.google.cloud:libraries-bom to v19.2.1 (#473)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `19.1.0` -> `19.2.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Renovate configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-logging).
---
samples/snippets/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml
index fcebf46d5..23153ed52 100644
--- a/samples/snippets/pom.xml
+++ b/samples/snippets/pom.xml
@@ -29,7 +29,7 @@
com.google.cloud
libraries-bom
- 19.1.0
+ 19.2.1
pom
import
From 0c2f20d730c8b355efd1529a49e2fb867952be77 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Fri, 19 Mar 2021 11:42:07 -0700
Subject: [PATCH 07/14] chore: regenerate README (#474)
This PR was generated using Autosynth. :rainbow:
Log from Synthtool
```
2021-03-19 18:06:26,415 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-logging/.github/readme/synth.py.
On branch autosynth-readme
nothing to commit, working tree clean
2021-03-19 18:06:27,289 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.
```
Full log will be available here:
https://source.cloud.google.com/results/invocations/20e4a86b-50b1-4594-b0ba-505ee4279396/targets
- [ ] To automatically regenerate this PR, check this box.
---
.github/readme/synth.metadata/synth.metadata | 4 ++--
README.md | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/readme/synth.metadata/synth.metadata b/.github/readme/synth.metadata/synth.metadata
index b9703d62d..48b264a80 100644
--- a/.github/readme/synth.metadata/synth.metadata
+++ b/.github/readme/synth.metadata/synth.metadata
@@ -4,14 +4,14 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-logging.git",
- "sha": "7bc6cb956e278583f2e6ebe68796dcb71bbe5eb0"
+ "sha": "e4acb6c59805e92d244cdf907d9a50a77f82d269"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "78437c732a60c64895778697b078497b0988346c"
+ "sha": "8b13da943497f75c5303700bff5aabdd85d939e0"
}
}
]
diff --git a/README.md b/README.md
index 5831302ac..1101b8f0c 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file
com.google.cloud
libraries-bom
- 19.1.0
+ 19.2.1
pom
import
@@ -46,7 +46,7 @@ If you are using Maven without BOM, add this to your dependencies:
If you are using Gradle 5.x or later, add this to your dependencies
```Groovy
-implementation platform('com.google.cloud:libraries-bom:19.1.0')
+implementation platform('com.google.cloud:libraries-bom:19.2.1')
compile 'com.google.cloud:google-cloud-logging'
```
From de2d4425729eea0e48e0b88dce1ea186c060041e Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Tue, 23 Mar 2021 16:42:12 +0100
Subject: [PATCH 08/14] chore(deps): update dependency
com.google.cloud:google-cloud-logging to v2.2.0 (#468)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-logging](https://togithub.com/googleapis/java-logging) | `2.1.5` -> `2.2.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-logging
### [`v2.2.0`](https://togithub.com/googleapis/java-logging/blob/master/CHANGELOG.md#220-httpswwwgithubcomgoogleapisjava-loggingcomparev215v220-2021-03-11)
[Compare Source](https://togithub.com/googleapis/java-logging/compare/v2.1.5...v2.2.0)
##### Features
- **generator:** update protoc to v3.15.3 ([#454](https://www.github.com/googleapis/java-logging/issues/454)) ([1e61adb](https://www.github.com/googleapis/java-logging/commit/1e61adb4b817ff099e17ccc9a4433fc5061a4826))
##### Dependencies
- update dependency com.google.cloud:google-cloud-shared-dependencies to v0.20.1 ([#465](https://www.github.com/googleapis/java-logging/issues/465)) ([676d0ba](https://www.github.com/googleapis/java-logging/commit/676d0baea2c591f477c0036191874c3d40288251))
##### [2.1.5](https://www.github.com/googleapis/java-logging/compare/v2.1.4...v2.1.5) (2021-02-25)
##### Dependencies
- update dependency com.google.cloud:google-cloud-shared-dependencies to v0.20.0 ([#449](https://www.github.com/googleapis/java-logging/issues/449)) ([921553a](https://www.github.com/googleapis/java-logging/commit/921553a44e04afed95d6482eda210df43baf177d))
##### [2.1.4](https://www.github.com/googleapis/java-logging/compare/v2.1.3...v2.1.4) (2021-02-22)
##### Documentation
- generate sample code in the Java microgenerator ([#423](https://www.github.com/googleapis/java-logging/issues/423)) ([8649f2f](https://www.github.com/googleapis/java-logging/commit/8649f2fa8d8d730422ea426142fba2bf3ebfec94))
##### Dependencies
- update dependency com.google.cloud:google-cloud-shared-dependencies to v0.19.0 ([#439](https://www.github.com/googleapis/java-logging/issues/439)) ([9cd8474](https://www.github.com/googleapis/java-logging/commit/9cd8474fdcd313f08216642254d72de9ce1a3214))
##### [2.1.3](https://www.github.com/googleapis/java-logging/compare/v2.1.2...v2.1.3) (2021-01-22)
##### Dependencies
- update dependency com.google.cloud:google-cloud-shared-dependencies to v0.17.1 ([#390](https://www.github.com/googleapis/java-logging/issues/390)) ([3054f17](https://www.github.com/googleapis/java-logging/commit/3054f17bb23f9ac99e373d5368f5e18b9668b917))
- update dependency com.google.cloud:google-cloud-shared-dependencies to v0.18.0 ([#392](https://www.github.com/googleapis/java-logging/issues/392)) ([219a7f8](https://www.github.com/googleapis/java-logging/commit/219a7f85d06327fe0bac4b7c1a36bda17bbb3382))
##### [2.1.2](https://www.github.com/googleapis/java-logging/compare/v2.1.1...v2.1.2) (2020-12-15)
##### Dependencies
- update dependency com.google.cloud:google-cloud-shared-dependencies to v0.17.0 ([#373](https://www.github.com/googleapis/java-logging/issues/373)) ([af43940](https://www.github.com/googleapis/java-logging/commit/af439404fb7786e8bc1856ee4b03796110677c98))
##### [2.1.1](https://www.github.com/googleapis/java-logging/compare/v2.1.0...v2.1.1) (2020-12-14)
##### Dependencies
- update dependency com.google.cloud:google-cloud-shared-dependencies to v0.16.1 ([84c8865](https://www.github.com/googleapis/java-logging/commit/84c88659d1a47633bcd545609262f71e747aaaed))
---
### Renovate configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-logging).
---
samples/install-without-bom/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index b6b5f4725..6c6455306 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -28,7 +28,7 @@
com.google.cloud
google-cloud-logging
- 2.1.5
+ 2.2.0
From 0d10fdf5dca61c761fb8f6fcbc94cef1c8bf77d3 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Tue, 23 Mar 2021 09:06:04 -0700
Subject: [PATCH 09/14] chore: regenerate README (#475)
This PR was generated using Autosynth. :rainbow:
Log from Synthtool
```
2021-03-23 15:44:25,811 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-logging/.github/readme/synth.py.
On branch autosynth-readme
nothing to commit, working tree clean
2021-03-23 15:44:26,773 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.
```
Full log will be available here:
https://source.cloud.google.com/results/invocations/f2ee7879-6acd-4e49-9063-a8d2e2b191f1/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
---
.github/readme/synth.metadata/synth.metadata | 4 ++--
README.md | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/readme/synth.metadata/synth.metadata b/.github/readme/synth.metadata/synth.metadata
index 48b264a80..a6d9d65f5 100644
--- a/.github/readme/synth.metadata/synth.metadata
+++ b/.github/readme/synth.metadata/synth.metadata
@@ -4,14 +4,14 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-logging.git",
- "sha": "e4acb6c59805e92d244cdf907d9a50a77f82d269"
+ "sha": "de2d4425729eea0e48e0b88dce1ea186c060041e"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "8b13da943497f75c5303700bff5aabdd85d939e0"
+ "sha": "c84c8f156e09702e1c8946bfb9746e6f5892cf27"
}
}
]
diff --git a/README.md b/README.md
index 1101b8f0c..ae56966e7 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ If you are using Maven without BOM, add this to your dependencies:
com.google.cloud
google-cloud-logging
- 2.1.5
+ 2.2.0
```
From 233fba9d2c009bedb32753d3b13865b56a5bf552 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Wed, 24 Mar 2021 16:08:10 -0700
Subject: [PATCH 10/14] chore(java): detect sample-secrets in build.sh (#476)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/536f217f-b7dc-42f1-aab8-6857916f6f41/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/bb854b6c048619e3be4e8b8ce8ed10aa74ea78ef
---
.kokoro/build.sh | 5 +++++
synth.metadata | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/.kokoro/build.sh b/.kokoro/build.sh
index 4d3efaf02..08333635b 100755
--- a/.kokoro/build.sh
+++ b/.kokoro/build.sh
@@ -79,6 +79,11 @@ samples)
if [[ -f ${SAMPLES_DIR}/pom.xml ]]
then
+ for FILE in ${KOKORO_GFILE_DIR}/secret_manager/*-samples-secrets; do
+ [[ -f "$FILE" ]] || continue
+ source "$FILE"
+ done
+
pushd ${SAMPLES_DIR}
mvn -B \
-Penable-samples \
diff --git a/synth.metadata b/synth.metadata
index f47a8eb90..b01f1ad21 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-logging.git",
- "sha": "75ef9f7ff5051c3f91d45a26ecd3cef7ded22d18"
+ "sha": "0d10fdf5dca61c761fb8f6fcbc94cef1c8bf77d3"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "0b064d767537e0675fc053e53fca473c5c701fb8"
+ "sha": "bb854b6c048619e3be4e8b8ce8ed10aa74ea78ef"
}
}
],
From 2680500edcff5b38ba06bbdc33b559e7a77d3883 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Mon, 29 Mar 2021 15:34:03 -0700
Subject: [PATCH 11/14] chore: remove staging bucket v2 (#478)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/1653744b-9baf-453c-a47f-57def341bd9a/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/572ef8f70edd9041f5bcfa71511aed6aecfc2098
---
.kokoro/release/publish_javadoc.sh | 5 -----
synth.metadata | 4 ++--
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/.kokoro/release/publish_javadoc.sh b/.kokoro/release/publish_javadoc.sh
index 360e22e6c..dbe976456 100755
--- a/.kokoro/release/publish_javadoc.sh
+++ b/.kokoro/release/publish_javadoc.sh
@@ -24,11 +24,6 @@ if [[ -z "${STAGING_BUCKET}" ]]; then
exit 1
fi
-if [[ -z "${STAGING_BUCKET_V2}" ]]; then
- echo "Need to set STAGING_BUCKET_V2 environment variable"
- exit 1
-fi
-
# work from the git root directory
pushd $(dirname "$0")/../../
diff --git a/synth.metadata b/synth.metadata
index b01f1ad21..1b0d10e96 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-logging.git",
- "sha": "0d10fdf5dca61c761fb8f6fcbc94cef1c8bf77d3"
+ "sha": "233fba9d2c009bedb32753d3b13865b56a5bf552"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "bb854b6c048619e3be4e8b8ce8ed10aa74ea78ef"
+ "sha": "572ef8f70edd9041f5bcfa71511aed6aecfc2098"
}
}
],
From 5266a87525365ea0492028fb30c4063c70306964 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Tue, 6 Apr 2021 20:01:50 +0200
Subject: [PATCH 12/14] chore(deps): update dependency
com.google.cloud.samples:shared-configuration to v1.0.22 (#480)
---
samples/install-without-bom/pom.xml | 2 +-
samples/pom.xml | 2 +-
samples/snapshot/pom.xml | 2 +-
samples/snippets/pom.xml | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 6c6455306..0e37fbe19 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -14,7 +14,7 @@
com.google.cloud.samples
shared-configuration
- 1.0.21
+ 1.0.22
diff --git a/samples/pom.xml b/samples/pom.xml
index a9166f52a..3638bb74f 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -18,7 +18,7 @@
com.google.cloud.samples
shared-configuration
- 1.0.21
+ 1.0.22
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index 5ea7cbdf4..dd2e9c7ec 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -14,7 +14,7 @@
com.google.cloud.samples
shared-configuration
- 1.0.21
+ 1.0.22
diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml
index 23153ed52..aa44333a4 100644
--- a/samples/snippets/pom.xml
+++ b/samples/snippets/pom.xml
@@ -14,7 +14,7 @@
com.google.cloud.samples
shared-configuration
- 1.0.21
+ 1.0.22
From 944e19060b6e1f47567783365e80a54b153d472c Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Fri, 9 Apr 2021 22:36:34 +0200
Subject: [PATCH 13/14] deps: update dependency
com.google.cloud:google-cloud-shared-dependencies to v0.21.0 (#481)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | `0.20.1` -> `0.21.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-shared-dependencies
### [`v0.21.0`](https://togithub.com/googleapis/java-shared-dependencies/blob/master/CHANGELOG.md#0210-httpswwwgithubcomgoogleapisjava-shared-dependenciescompare0201v0210-2021-04-09)
[Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v0.20.1...v0.21.0)
##### Dependencies
- update dependency com.google.auth:google-auth-library-bom to v0.25.0 ([#310](https://www.github.com/googleapis/java-shared-dependencies/issues/310)) ([8f3a0f0](https://www.github.com/googleapis/java-shared-dependencies/commit/8f3a0f002b787f7b27cfe031654fa20bf342f839))
- update dependency com.google.auth:google-auth-library-bom to v0.25.2 ([#311](https://www.github.com/googleapis/java-shared-dependencies/issues/311)) ([6c47a3e](https://www.github.com/googleapis/java-shared-dependencies/commit/6c47a3edbd9da04ba255487a66c0f3a41393217d))
- update dependency com.google.errorprone:error_prone_annotations to v2.6.0 ([#315](https://www.github.com/googleapis/java-shared-dependencies/issues/315)) ([dc254ca](https://www.github.com/googleapis/java-shared-dependencies/commit/dc254ca7359b68fe9411f7b96130ffb416b45c6f))
- update dependency com.google.http-client:google-http-client-bom to v1.39.1 ([#309](https://www.github.com/googleapis/java-shared-dependencies/issues/309)) ([37225e2](https://www.github.com/googleapis/java-shared-dependencies/commit/37225e2d1b32a618765391720b57ff29e7b8f7f9))
- update dependency com.google.http-client:google-http-client-bom to v1.39.2 ([#321](https://www.github.com/googleapis/java-shared-dependencies/issues/321)) ([273c66d](https://www.github.com/googleapis/java-shared-dependencies/commit/273c66d374f7cd6040aac2f302fd1c1dc0f4a1c0))
- update dependency com.google.protobuf:protobuf-bom to v3.15.6 ([#308](https://www.github.com/googleapis/java-shared-dependencies/issues/308)) ([b29dd05](https://www.github.com/googleapis/java-shared-dependencies/commit/b29dd0535f02b56607f64ba69e85d4d468902789))
- update dependency com.google.protobuf:protobuf-bom to v3.15.7 ([#316](https://www.github.com/googleapis/java-shared-dependencies/issues/316)) ([9c00d77](https://www.github.com/googleapis/java-shared-dependencies/commit/9c00d7753c1f7b963deb9ad69dcfe24ba28da5a2))
- update dependency com.google.protobuf:protobuf-bom to v3.15.8 ([#319](https://www.github.com/googleapis/java-shared-dependencies/issues/319)) ([15e5ae2](https://www.github.com/googleapis/java-shared-dependencies/commit/15e5ae2ef46eedcd790ffd8644677d36db5c63f9))
- update dependency io.grpc:grpc-bom to v1.37.0 ([#313](https://www.github.com/googleapis/java-shared-dependencies/issues/313)) ([c599351](https://www.github.com/googleapis/java-shared-dependencies/commit/c5993511c7305e1ced42d73552a93a25dc5e1ac1))
- update gax.version to v1.63.0 ([#318](https://www.github.com/googleapis/java-shared-dependencies/issues/318)) ([ba709da](https://www.github.com/googleapis/java-shared-dependencies/commit/ba709da6fb0e9bcfc83e663588336598737b46e4))
- update google.core.version to v1.94.4 ([#305](https://www.github.com/googleapis/java-shared-dependencies/issues/305)) ([0d38f4c](https://www.github.com/googleapis/java-shared-dependencies/commit/0d38f4c9ffadcfd9446712b8bf0729399b0c9e91))
- update google.core.version to v1.94.5 ([#320](https://www.github.com/googleapis/java-shared-dependencies/issues/320)) ([3439721](https://www.github.com/googleapis/java-shared-dependencies/commit/3439721da83a8b92d9c4b6ecfd158cfb1e1a0503))
- update guava to 30.1.1-android ([#322](https://www.github.com/googleapis/java-shared-dependencies/issues/322)) ([a6b5d3b](https://www.github.com/googleapis/java-shared-dependencies/commit/a6b5d3b8ccfc352bf0d1678952ce3cd8b7a8361e))
- update iam.version to v1.0.11 ([#304](https://www.github.com/googleapis/java-shared-dependencies/issues/304)) ([95a5264](https://www.github.com/googleapis/java-shared-dependencies/commit/95a526442b3d24c83782523d38dd3931e828d757))
##### [0.20.1](https://www.github.com/googleapis/java-shared-dependencies/compare/0.20.0...v0.20.1) (2021-03-09)
##### Dependencies
- update dependency com.fasterxml.jackson:jackson-bom to v2.12.2 ([#301](https://www.github.com/googleapis/java-shared-dependencies/issues/301)) ([7c01eba](https://www.github.com/googleapis/java-shared-dependencies/commit/7c01ebabb6fd65b7404e56651b0ba27f505bb033))
- update dependency com.google.api-client:google-api-client-bom to v1.31.3 ([#295](https://www.github.com/googleapis/java-shared-dependencies/issues/295)) ([a0774e9](https://www.github.com/googleapis/java-shared-dependencies/commit/a0774e9d62d00614142bc4c14214a83dda66d4ad))
- update dependency com.google.api.grpc:grpc-google-iam-v1 to v1.0.10 ([#292](https://www.github.com/googleapis/java-shared-dependencies/issues/292)) ([b629789](https://www.github.com/googleapis/java-shared-dependencies/commit/b629789e3a1cc9a7308b829c034b09b06e24fc07))
- update dependency com.google.auth:google-auth-library-bom to v0.24.1 ([#293](https://www.github.com/googleapis/java-shared-dependencies/issues/293)) ([d85ec34](https://www.github.com/googleapis/java-shared-dependencies/commit/d85ec347ccdd14dfdab10d365d2c2f8df3035e4d))
- update dependency com.google.protobuf:protobuf-bom to v3.15.3 ([#294](https://www.github.com/googleapis/java-shared-dependencies/issues/294)) ([58c01aa](https://www.github.com/googleapis/java-shared-dependencies/commit/58c01aa076e2c4954986185f913bac2c51a1e6fb))
- update dependency com.google.protobuf:protobuf-bom to v3.15.5 ([#302](https://www.github.com/googleapis/java-shared-dependencies/issues/302)) ([e9d5e6e](https://www.github.com/googleapis/java-shared-dependencies/commit/e9d5e6ee6039915da186315ceada673ac37b88d3))
- update google.core.version to v1.94.2 ([#296](https://www.github.com/googleapis/java-shared-dependencies/issues/296)) ([af83b90](https://www.github.com/googleapis/java-shared-dependencies/commit/af83b901be0c03d507189999215d35345602fad7))
- update google.core.version to v1.94.3 ([#300](https://www.github.com/googleapis/java-shared-dependencies/issues/300)) ([3e73176](https://www.github.com/googleapis/java-shared-dependencies/commit/3e73176af0b07dfe621163b301174b5b5820dfa2))
---
### Configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-logging).
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index c747cd7c7..c2167d75d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 0.20.1
+ 0.21.0
pom
import
From 1dd8b6b14430f79b237e28912ab4db58457760b7 Mon Sep 17 00:00:00 2001
From: "release-please[bot]"
<55107282+release-please[bot]@users.noreply.github.com>
Date: Fri, 9 Apr 2021 21:32:10 +0000
Subject: [PATCH 14/14] chore: release 2.2.1 (#482)
:robot: I have created a release \*beep\* \*boop\*
---
### [2.2.1](https://www.github.com/googleapis/java-logging/compare/v2.2.0...v2.2.1) (2021-04-09)
### Dependencies
* update dependency com.google.cloud:google-cloud-shared-dependencies to v0.21.0 ([#481](https://www.github.com/googleapis/java-logging/issues/481)) ([944e190](https://www.github.com/googleapis/java-logging/commit/944e19060b6e1f47567783365e80a54b153d472c))
---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
---
CHANGELOG.md | 7 +++++++
google-cloud-logging-bom/pom.xml | 8 ++++----
google-cloud-logging/pom.xml | 4 ++--
grpc-google-cloud-logging-v2/pom.xml | 4 ++--
pom.xml | 8 ++++----
proto-google-cloud-logging-v2/pom.xml | 4 ++--
samples/snapshot/pom.xml | 2 +-
versions.txt | 6 +++---
8 files changed, 25 insertions(+), 18 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 79e642172..28c1c53a0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+### [2.2.1](https://www.github.com/googleapis/java-logging/compare/v2.2.0...v2.2.1) (2021-04-09)
+
+
+### Dependencies
+
+* update dependency com.google.cloud:google-cloud-shared-dependencies to v0.21.0 ([#481](https://www.github.com/googleapis/java-logging/issues/481)) ([944e190](https://www.github.com/googleapis/java-logging/commit/944e19060b6e1f47567783365e80a54b153d472c))
+
## [2.2.0](https://www.github.com/googleapis/java-logging/compare/v2.1.5...v2.2.0) (2021-03-11)
diff --git a/google-cloud-logging-bom/pom.xml b/google-cloud-logging-bom/pom.xml
index cdf0f4724..3e0c0d9af 100644
--- a/google-cloud-logging-bom/pom.xml
+++ b/google-cloud-logging-bom/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
google-cloud-logging-bom
- 2.2.1-SNAPSHOT
+ 2.2.1
pom
com.google.cloud
@@ -64,17 +64,17 @@
com.google.api.grpc
proto-google-cloud-logging-v2
- 0.87.1-SNAPSHOT
+ 0.87.1
com.google.api.grpc
grpc-google-cloud-logging-v2
- 0.87.1-SNAPSHOT
+ 0.87.1
com.google.cloud
google-cloud-logging
- 2.2.1-SNAPSHOT
+ 2.2.1