Skip to content

Commit 0bb75f9

Browse files
yoshi-automationkolea2
authored andcommitted
---
yaml --- r: 13767 b: refs/heads/autosynth-logging c: 0fcbc59 h: refs/heads/master i: 13765: dd5c913 13763: 7b78e0f 13759: 6c535ae
1 parent 15ef929 commit 0bb75f9

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ refs/tags/v0.61.0: e4b526656bb1bf5eefd0ee578b7405147821225e
105105
refs/tags/v0.62.0: bbede7385d48ba08f487bdd29ec10668ace96396
106106
refs/heads/0.60.0-alpha: 10939381ffe0b8da32db4fe3087c86e3aa7f3e55
107107
refs/heads/autosynth-dlp: 90e4efe3be392e89dc36bce22afab981a905b1bc
108-
refs/heads/autosynth-logging: cfac767a5c20f8ae1c0e493b647cf33cf8df93ab
108+
refs/heads/autosynth-logging: 0fcbc59d24bd4663f64d257fd48585eb9729b649
109109
refs/heads/dupes: 3478c5d81fd242d0e985656645a679420a2060c2
110110
refs/tags/v0.63.0: 94f19b71d40f46b36120e7b9d78a1a3d41bfcbd6
111111
refs/tags/v0.64.0: 456e8fbd129deced3ca025f239a2d8a82bde1d0a

branches/autosynth-logging/google-cloud-clients/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminClient.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ public final OperationFuture<Instance, CreateInstanceMetadata> createInstanceAsy
345345
* .setInstance(instance)
346346
* .putAllClusters(clusters)
347347
* .build();
348-
* OperationFuture&lt;Operation&gt; future = baseBigtableInstanceAdminClient.createInstanceOperationCallable().futureCall(request);
348+
* OperationFuture&lt;Instance, CreateInstanceMetadata&gt; future = baseBigtableInstanceAdminClient.createInstanceOperationCallable().futureCall(request);
349349
* // Do something
350350
* Instance response = future.get();
351351
* }
@@ -645,7 +645,7 @@ public final OperationFuture<Instance, UpdateInstanceMetadata> partialUpdateInst
645645
* .setInstance(instance)
646646
* .setUpdateMask(updateMask)
647647
* .build();
648-
* OperationFuture&lt;Operation&gt; future = baseBigtableInstanceAdminClient.partialUpdateInstanceOperationCallable().futureCall(request);
648+
* OperationFuture&lt;Instance, UpdateInstanceMetadata&gt; future = baseBigtableInstanceAdminClient.partialUpdateInstanceOperationCallable().futureCall(request);
649649
* // Do something
650650
* Instance response = future.get();
651651
* }
@@ -892,7 +892,7 @@ public final OperationFuture<Cluster, CreateClusterMetadata> createClusterAsync(
892892
* .setClusterId(clusterId)
893893
* .setCluster(cluster)
894894
* .build();
895-
* OperationFuture&lt;Operation&gt; future = baseBigtableInstanceAdminClient.createClusterOperationCallable().futureCall(request);
895+
* OperationFuture&lt;Cluster, CreateClusterMetadata&gt; future = baseBigtableInstanceAdminClient.createClusterOperationCallable().futureCall(request);
896896
* // Do something
897897
* Cluster response = future.get();
898898
* }
@@ -1161,7 +1161,7 @@ public final OperationFuture<Cluster, UpdateClusterMetadata> updateClusterAsync(
11611161
* .setName(name.toString())
11621162
* .setServeNodes(serveNodes)
11631163
* .build();
1164-
* OperationFuture&lt;Operation&gt; future = baseBigtableInstanceAdminClient.updateClusterOperationCallable().futureCall(request);
1164+
* OperationFuture&lt;Cluster, UpdateClusterMetadata&gt; future = baseBigtableInstanceAdminClient.updateClusterOperationCallable().futureCall(request);
11651165
* // Do something
11661166
* Cluster response = future.get();
11671167
* }
@@ -1715,7 +1715,7 @@ public final OperationFuture<AppProfile, UpdateAppProfileMetadata> updateAppProf
17151715
* .setAppProfile(appProfile)
17161716
* .setUpdateMask(updateMask)
17171717
* .build();
1718-
* OperationFuture&lt;Operation&gt; future = baseBigtableInstanceAdminClient.updateAppProfileOperationCallable().futureCall(request);
1718+
* OperationFuture&lt;AppProfile, UpdateAppProfileMetadata&gt; future = baseBigtableInstanceAdminClient.updateAppProfileOperationCallable().futureCall(request);
17191719
* // Do something
17201720
* AppProfile response = future.get();
17211721
* }

branches/autosynth-logging/google-cloud-clients/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ public final OperationFuture<Table, CreateTableFromSnapshotMetadata> createTable
470470
* .setTableId(tableId)
471471
* .setSourceSnapshot(sourceSnapshot.toString())
472472
* .build();
473-
* OperationFuture&lt;Operation&gt; future = baseBigtableTableAdminClient.createTableFromSnapshotOperationCallable().futureCall(request);
473+
* OperationFuture&lt;Table, CreateTableFromSnapshotMetadata&gt; future = baseBigtableTableAdminClient.createTableFromSnapshotOperationCallable().futureCall(request);
474474
* // Do something
475475
* Table response = future.get();
476476
* }
@@ -1370,7 +1370,7 @@ public final OperationFuture<Snapshot, SnapshotTableMetadata> snapshotTableAsync
13701370
* .setSnapshotId(snapshotId.toString())
13711371
* .setDescription(description)
13721372
* .build();
1373-
* OperationFuture&lt;Operation&gt; future = baseBigtableTableAdminClient.snapshotTableOperationCallable().futureCall(request);
1373+
* OperationFuture&lt;Snapshot, SnapshotTableMetadata&gt; future = baseBigtableTableAdminClient.snapshotTableOperationCallable().futureCall(request);
13741374
* // Do something
13751375
* Snapshot response = future.get();
13761376
* }

branches/autosynth-logging/google-cloud-clients/google-cloud-bigtable/synth.metadata

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"updateTime": "2019-01-17T08:36:21.634857Z",
2+
"updateTime": "2019-02-02T08:34:53.521732Z",
33
"sources": [
44
{
55
"generator": {
66
"name": "artman",
7-
"version": "0.16.6",
8-
"dockerImage": "googleapis/artman@sha256:12722f2ca3fbc3b53cc6aa5f0e569d7d221b46bd876a2136497089dec5e3634e"
7+
"version": "0.16.8",
8+
"dockerImage": "googleapis/artman@sha256:75bc07ef34a1de9895c18af54dc503ed3b3f3b52e85062e3360a979d2a0741e7"
99
}
1010
},
1111
{
1212
"git": {
1313
"name": "googleapis",
1414
"remote": "https://github.com/googleapis/googleapis.git",
15-
"sha": "0ac60e21a1aa86c07c1836865b35308ba8178b05",
16-
"internalRef": "229626798"
15+
"sha": "bce093dab3e65c40eb9a37efbdc960f34df6037a",
16+
"internalRef": "231974277"
1717
}
1818
}
1919
],

0 commit comments

Comments
 (0)