Skip to content

Commit e28c9de

Browse files
yoshi-automationsduskis
authored andcommitted
---
yaml --- r: 32075 b: refs/heads/autosynth-dialogflow c: d2b8075 h: refs/heads/master i: 32073: ac268fe 32071: 95c1718
1 parent 9756708 commit e28c9de

4 files changed

Lines changed: 22 additions & 22 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ refs/heads/autosynth-bigtable: 2a6af7e2959fd79c99b8ca5d773f29a6434b546d
128128
refs/heads/autosynth-bigtable-admin: 6379a2bc712f2736c83de0e009b4d26da4fa82ca
129129
refs/heads/autosynth-containeranalysis: 18d210f81f17cf74864d0db2c29e834302f74f2a
130130
refs/heads/autosynth-datastore: f1efc3dc465174f41041acd56cf29badcec3e5bd
131-
refs/heads/autosynth-dialogflow: 5b98115a7d9a07bee0258d28579c9098fddf2a52
131+
refs/heads/autosynth-dialogflow: d2b8075df20617ce0ba3be4e57db236f9dd3189e
132132
refs/heads/autosynth-errorreporting: 3f176c20b55dfaaa8fc32f28d82b31784b93e636
133133
refs/heads/autosynth-firestore: 983c75e4fb1076502c8cac73ef0538bdb10884f3
134134
refs/heads/autosynth-iot: 4025d1804241e74d54950a324dc4f667aeaad4b3

branches/autosynth-dialogflow/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/ProfileServiceClient.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ public final UnaryCallable<DeleteProfileRequest, Empty> deleteProfileCallable()
686686
* .setParent(parent.toString())
687687
* .setRequestMetadata(requestMetadata)
688688
* .build();
689-
* for (HistogramQueryResult element : profileServiceClient.searchProfiles(request).iterateAll()) {
689+
* for (SummarizedProfile element : profileServiceClient.searchProfiles(request).iterateAll()) {
690690
* // doThingsWith(element);
691691
* }
692692
* }
@@ -721,7 +721,7 @@ public final SearchProfilesPagedResponse searchProfiles(SearchProfilesRequest re
721721
* .build();
722722
* ApiFuture&lt;SearchProfilesPagedResponse&gt; future = profileServiceClient.searchProfilesPagedCallable().futureCall(request);
723723
* // Do something
724-
* for (HistogramQueryResult element : future.get().iterateAll()) {
724+
* for (SummarizedProfile element : future.get().iterateAll()) {
725725
* // doThingsWith(element);
726726
* }
727727
* }
@@ -754,7 +754,7 @@ public final SearchProfilesPagedResponse searchProfiles(SearchProfilesRequest re
754754
* .build();
755755
* while (true) {
756756
* SearchProfilesResponse response = profileServiceClient.searchProfilesCallable().call(request);
757-
* for (HistogramQueryResult element : response.getHistogramQueryResultsList()) {
757+
* for (SummarizedProfile element : response.getSummarizedProfilesList()) {
758758
* // doThingsWith(element);
759759
* }
760760
* String nextPageToken = response.getNextPageToken();
@@ -886,12 +886,12 @@ public static class SearchProfilesPagedResponse
886886
extends AbstractPagedListResponse<
887887
SearchProfilesRequest,
888888
SearchProfilesResponse,
889-
HistogramQueryResult,
889+
SummarizedProfile,
890890
SearchProfilesPage,
891891
SearchProfilesFixedSizeCollection> {
892892

893893
public static ApiFuture<SearchProfilesPagedResponse> createAsync(
894-
PageContext<SearchProfilesRequest, SearchProfilesResponse, HistogramQueryResult> context,
894+
PageContext<SearchProfilesRequest, SearchProfilesResponse, SummarizedProfile> context,
895895
ApiFuture<SearchProfilesResponse> futureResponse) {
896896
ApiFuture<SearchProfilesPage> futurePage =
897897
SearchProfilesPage.createEmptyPage().createPageAsync(context, futureResponse);
@@ -913,10 +913,10 @@ private SearchProfilesPagedResponse(SearchProfilesPage page) {
913913

914914
public static class SearchProfilesPage
915915
extends AbstractPage<
916-
SearchProfilesRequest, SearchProfilesResponse, HistogramQueryResult, SearchProfilesPage> {
916+
SearchProfilesRequest, SearchProfilesResponse, SummarizedProfile, SearchProfilesPage> {
917917

918918
private SearchProfilesPage(
919-
PageContext<SearchProfilesRequest, SearchProfilesResponse, HistogramQueryResult> context,
919+
PageContext<SearchProfilesRequest, SearchProfilesResponse, SummarizedProfile> context,
920920
SearchProfilesResponse response) {
921921
super(context, response);
922922
}
@@ -927,14 +927,14 @@ private static SearchProfilesPage createEmptyPage() {
927927

928928
@Override
929929
protected SearchProfilesPage createPage(
930-
PageContext<SearchProfilesRequest, SearchProfilesResponse, HistogramQueryResult> context,
930+
PageContext<SearchProfilesRequest, SearchProfilesResponse, SummarizedProfile> context,
931931
SearchProfilesResponse response) {
932932
return new SearchProfilesPage(context, response);
933933
}
934934

935935
@Override
936936
public ApiFuture<SearchProfilesPage> createPageAsync(
937-
PageContext<SearchProfilesRequest, SearchProfilesResponse, HistogramQueryResult> context,
937+
PageContext<SearchProfilesRequest, SearchProfilesResponse, SummarizedProfile> context,
938938
ApiFuture<SearchProfilesResponse> futureResponse) {
939939
return super.createPageAsync(context, futureResponse);
940940
}
@@ -944,7 +944,7 @@ public static class SearchProfilesFixedSizeCollection
944944
extends AbstractFixedSizeCollection<
945945
SearchProfilesRequest,
946946
SearchProfilesResponse,
947-
HistogramQueryResult,
947+
SummarizedProfile,
948948
SearchProfilesPage,
949949
SearchProfilesFixedSizeCollection> {
950950

branches/autosynth-dialogflow/google-cloud-clients/google-cloud-talent/src/main/java/com/google/cloud/talent/v4beta1/stub/ProfileServiceStubSettings.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
import com.google.cloud.talent.v4beta1.CreateProfileRequest;
4444
import com.google.cloud.talent.v4beta1.DeleteProfileRequest;
4545
import com.google.cloud.talent.v4beta1.GetProfileRequest;
46-
import com.google.cloud.talent.v4beta1.HistogramQueryResult;
4746
import com.google.cloud.talent.v4beta1.ListProfilesRequest;
4847
import com.google.cloud.talent.v4beta1.ListProfilesResponse;
4948
import com.google.cloud.talent.v4beta1.Profile;
5049
import com.google.cloud.talent.v4beta1.SearchProfilesRequest;
5150
import com.google.cloud.talent.v4beta1.SearchProfilesResponse;
51+
import com.google.cloud.talent.v4beta1.SummarizedProfile;
5252
import com.google.cloud.talent.v4beta1.UpdateProfileRequest;
5353
import com.google.common.collect.ImmutableList;
5454
import com.google.common.collect.ImmutableMap;
@@ -253,10 +253,10 @@ public Iterable<Profile> extractResources(ListProfilesResponse payload) {
253253
};
254254

255255
private static final PagedListDescriptor<
256-
SearchProfilesRequest, SearchProfilesResponse, HistogramQueryResult>
256+
SearchProfilesRequest, SearchProfilesResponse, SummarizedProfile>
257257
SEARCH_PROFILES_PAGE_STR_DESC =
258258
new PagedListDescriptor<
259-
SearchProfilesRequest, SearchProfilesResponse, HistogramQueryResult>() {
259+
SearchProfilesRequest, SearchProfilesResponse, SummarizedProfile>() {
260260
@Override
261261
public String emptyToken() {
262262
return "";
@@ -284,10 +284,10 @@ public String extractNextToken(SearchProfilesResponse payload) {
284284
}
285285

286286
@Override
287-
public Iterable<HistogramQueryResult> extractResources(SearchProfilesResponse payload) {
288-
return payload.getHistogramQueryResultsList() != null
289-
? payload.getHistogramQueryResultsList()
290-
: ImmutableList.<HistogramQueryResult>of();
287+
public Iterable<SummarizedProfile> extractResources(SearchProfilesResponse payload) {
288+
return payload.getSummarizedProfilesList() != null
289+
? payload.getSummarizedProfilesList()
290+
: ImmutableList.<SummarizedProfile>of();
291291
}
292292
};
293293

@@ -319,7 +319,7 @@ public ApiFuture<SearchProfilesPagedResponse> getFuturePagedResponse(
319319
SearchProfilesRequest request,
320320
ApiCallContext context,
321321
ApiFuture<SearchProfilesResponse> futureResponse) {
322-
PageContext<SearchProfilesRequest, SearchProfilesResponse, HistogramQueryResult>
322+
PageContext<SearchProfilesRequest, SearchProfilesResponse, SummarizedProfile>
323323
pageContext =
324324
PageContext.create(callable, SEARCH_PROFILES_PAGE_STR_DESC, request, context);
325325
return SearchProfilesPagedResponse.createAsync(pageContext, futureResponse);

branches/autosynth-dialogflow/google-cloud-clients/google-cloud-talent/synth.metadata

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"updateTime": "2019-05-10T07:54:49.349091Z",
2+
"updateTime": "2019-05-14T07:54:55.302661Z",
33
"sources": [
44
{
55
"generator": {
@@ -12,8 +12,8 @@
1212
"git": {
1313
"name": "googleapis",
1414
"remote": "https://github.com/googleapis/googleapis.git",
15-
"sha": "07883be5bf3c3233095e99d8e92b8094f5d7084a",
16-
"internalRef": "247530843"
15+
"sha": "ffa256646fb15c4a6c720f0ed8f984a0ea513416",
16+
"internalRef": "248066377"
1717
}
1818
}
1919
],

0 commit comments

Comments
 (0)