Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regenerate logging client #4641

Merged
merged 1 commit into from
Mar 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.logging.v2.stub.ConfigServiceV2Stub;
import com.google.cloud.logging.v2.stub.ConfigServiceV2StubSettings;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.logging.v2.CreateExclusionRequest;
import com.google.logging.v2.CreateSinkRequest;
import com.google.logging.v2.DeleteExclusionRequest;
Expand Down Expand Up @@ -1490,7 +1491,8 @@ public static ApiFuture<ListSinksPagedResponse> createAsync(
public ListSinksPagedResponse apply(ListSinksPage input) {
return new ListSinksPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListSinksPagedResponse(ListSinksPage page) {
Expand Down Expand Up @@ -1569,7 +1571,8 @@ public static ApiFuture<ListExclusionsPagedResponse> createAsync(
public ListExclusionsPagedResponse apply(ListExclusionsPage input) {
return new ListExclusionsPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListExclusionsPagedResponse(ListExclusionsPage page) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.logging.v2.stub.LoggingServiceV2Stub;
import com.google.cloud.logging.v2.stub.LoggingServiceV2StubSettings;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.logging.v2.DeleteLogRequest;
import com.google.logging.v2.ListLogEntriesRequest;
import com.google.logging.v2.ListLogEntriesResponse;
Expand Down Expand Up @@ -866,7 +867,8 @@ public static ApiFuture<ListLogEntriesPagedResponse> createAsync(
public ListLogEntriesPagedResponse apply(ListLogEntriesPage input) {
return new ListLogEntriesPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListLogEntriesPagedResponse(ListLogEntriesPage page) {
Expand Down Expand Up @@ -954,7 +956,8 @@ public ListMonitoredResourceDescriptorsPagedResponse apply(
ListMonitoredResourceDescriptorsPage input) {
return new ListMonitoredResourceDescriptorsPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListMonitoredResourceDescriptorsPagedResponse(
Expand Down Expand Up @@ -1047,7 +1050,8 @@ public static ApiFuture<ListLogsPagedResponse> createAsync(
public ListLogsPagedResponse apply(ListLogsPage input) {
return new ListLogsPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListLogsPagedResponse(ListLogsPage page) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.logging.v2.stub.MetricsServiceV2Stub;
import com.google.cloud.logging.v2.stub.MetricsServiceV2StubSettings;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.logging.v2.CreateLogMetricRequest;
import com.google.logging.v2.DeleteLogMetricRequest;
import com.google.logging.v2.GetLogMetricRequest;
Expand Down Expand Up @@ -749,7 +750,8 @@ public static ApiFuture<ListLogMetricsPagedResponse> createAsync(
public ListLogMetricsPagedResponse apply(ListLogMetricsPage input) {
return new ListLogMetricsPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListLogMetricsPagedResponse(ListLogMetricsPage page) {
Expand Down
10 changes: 5 additions & 5 deletions google-cloud-clients/google-cloud-logging/synth.metadata
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"updateTime": "2019-02-26T08:46:31.768482Z",
"updateTime": "2019-03-06T08:47:08.312966Z",
"sources": [
{
"generator": {
"name": "artman",
"version": "0.16.14",
"dockerImage": "googleapis/artman@sha256:f3d61ae45abaeefb6be5f228cda22732c2f1b00fb687c79c4bd4f2c42bb1e1a7"
"version": "0.16.15",
"dockerImage": "googleapis/artman@sha256:9caadfa59d48224cba5f3217eb9d61a155b78ccf31e628abef385bc5b7ed3bd2"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
"sha": "29f098cb03a9983cc9cb15993de5da64419046f2",
"internalRef": "235621085"
"sha": "856117505ff9075b3e9c0b5674113667b6cf9e00",
"internalRef": "236931378"
}
}
],
Expand Down