8000 Regenerate containeranalysis client by yoshi-automation · Pull Request #4633 · googleapis/google-cloud-java · GitHub
[go: up one dir, main page]

Skip to content
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.devtools.containeranalysis.v1beta1.stub.ContainerAnalysisV1Beta1Stub;
import com.google.cloud.devtools.containeranalysis.v1beta1.stub.ContainerAnalysisV1Beta1StubSettings;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.containeranalysis.v1beta1.GetScanConfigRequest;
import com.google.containeranalysis.v1beta1.IamResourceName;
import com.google.containeranalysis.v1beta1.ListScanConfigsRequest;
Expand Down Expand Up @@ -942,7 +943,8 @@ public static ApiFuture<ListScanConfigsPagedResponse> createAsync(
public ListScanConfigsPagedResponse apply(ListScanConfigsPage input) {
return new ListScanConfigsPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListScanConfigsPagedResponse(ListScanConfigsPage page) {
Expand Down
8000
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.devtools.containeranalysis.v1beta1.stub.GrafeasV1Beta1Stub;
import com.google.cloud.devtools.containeranalysis.v1beta1.stub.GrafeasV1Beta1StubSettings;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.containeranalysis.v1beta1.NoteName;
import com.google.containeranalysis.v1beta1.OccurrenceName;
import com.google.containeranalysis.v1beta1.ProjectName;
Expand Down Expand Up @@ -1895,7 +1896,8 @@ public static ApiFuture<ListOccurrencesPagedResponse> createAsync(
public ListOccurrencesPagedResponse apply(ListOccurrencesPage input) {
return new ListOccurrencesPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListOccurrencesPagedResponse(ListOccurrencesPage page) {
Expand Down Expand Up @@ -1972,7 +1974,8 @@ public static ApiFuture<ListNotesPagedResponse> createAsync(
public ListNotesPagedResponse apply(ListNotesPage input) {
return new ListNotesPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListNotesPagedResponse(ListNotesPage page) {
Expand Down Expand Up @@ -2047,7 +2050,8 @@ public static ApiFuture<ListNoteOccurrencesPagedResponse> createAsync(
public ListNoteOccurrencesPagedResponse apply(ListNoteOccurrencesPage input) {
return new ListNoteOccurrencesPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListNoteOccurrencesPagedResponse(ListNoteOccurrencesPage page) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"updateTime": "2019-02-26T08:38:14.123641Z",
"updateTime": "2019-03-06T08:38:24.918772Z",
"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
0