Skip to content

Commit

Permalink
Regenerate bigtable client (#4631)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored and andrey-qlogic committed Mar 6, 2019
1 parent 2b69989 commit b424e12
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
import com.google.bigtable.admin.v2.UpdateInstanceMetadata;
import com.google.cloud.bigtable.admin.v2.stub.BigtableInstanceAdminStub;
import com.google.cloud.bigtable.admin.v2.stub.BigtableInstanceAdminStubSettings;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.iam.v1.GetIamPolicyRequest;
import com.google.iam.v1.Policy;
import com.google.iam.v1.SetIamPolicyRequest;
Expand Down Expand Up @@ -2130,7 +2131,8 @@ public static ApiFuture<ListAppProfilesPagedResponse> createAsync(
public ListAppProfilesPagedResponse apply(ListAppProfilesPage input) {
return new ListAppProfilesPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListAppProfilesPagedResponse(ListAppProfilesPage page) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
import com.google.bigtable.admin.v2.TableName;
import com.google.cloud.bigtable.admin.v2.stub.BigtableTableAdminStub;
import com.google.cloud.bigtable.admin.v2.stub.BigtableTableAdminStubSettings;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.longrunning.Operation;
import com.google.longrunning.OperationsClient;
import com.google.protobuf.Empty;
Expand Down Expand Up @@ -1851,7 +1852,8 @@ public static ApiFuture<ListTablesPagedResponse> createAsync(
public ListTablesPagedResponse apply(ListTablesPage input) {
return new ListTablesPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListTablesPagedResponse(ListTablesPage page) {
Expand Down Expand Up @@ -1930,7 +1932,8 @@ public static ApiFuture<ListSnapshotsPagedResponse> createAsync(
public ListSnapshotsPagedResponse apply(ListSnapshotsPage input) {
return new ListSnapshotsPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListSnapshotsPagedResponse(ListSnapshotsPage page) {
Expand Down
10 changes: 5 additions & 5 deletions google-cloud-clients/google-cloud-bigtable/synth.metadata
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"updateTime": "2019-02-26T08:35:32.180936Z",
"updateTime": "2019-03-06T08:35:24.239873Z",
"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 comments on commit b424e12

Please sign in to comment.