Skip to content

Commit 3850b1c

Browse files
yoshi-automationkolea2
authored andcommitted
---
yaml --- r: 14731 b: refs/heads/autosynth-asset c: 0fcbc59 h: refs/heads/master i: 14729: d575408 14727: c88abcd
1 parent 4442682 commit 3850b1c

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
@@ -122,7 +122,7 @@ refs/heads/autosynth-vision: b8e47d76578b5f150ef530072ea7e485e2b02ca0
122122
refs/heads/spanner: b01127f885b4611bf1852abb0ce481eeb7fcc131
123123
refs/tags/v0.68.0: 9cc799fcf68c82ab431d425fefa58ef615ce8e5b
124124
refs/tags/v0.69.0: 78f67a29e8b9c46ba01de566a2eae0fd1c03edea
125-
refs/heads/autosynth-asset: cfac767a5c20f8ae1c0e493b647cf33cf8df93ab
125+
refs/heads/autosynth-asset: 0fcbc59d24bd4663f64d257fd48585eb9729b649
126126
refs/heads/autosynth-automl: d4315b3596bac160e3439432c54435f44b09953e
127127
refs/heads/autosynth-bigquerydatatransfer: 2a9f3938237f85a8919602d74011326580ff387f
128128
refs/heads/autosynth-bigquerystorage: 99aee05df348f39d98b6fb23c292006f1d2a6c28

branches/autosynth-asset/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-asset/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-asset/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)