Skip to content

Commit 34fd86c

Browse files
yoshi-automationPraful Makani
authored andcommitted
---
yaml --- r: 23509 b: refs/heads/autosynth-dialogflow c: 9e5d406 h: refs/heads/master i: 23507: 9e61bd6
1 parent bd034d6 commit 34fd86c

6 files changed

Lines changed: 17 additions & 17 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: 9e5429f45cf9face9fed585d0233534993e36b58
128128
refs/heads/autosynth-bigtable-admin: 6379a2bc712f2736c83de0e009b4d26da4fa82ca
129129
refs/heads/autosynth-containeranalysis: af5b804492292b43372c9fe00386696136ccae89
130130
refs/heads/autosynth-datastore: d0fc1187000c7a50d8bddd89c3b7cdf1187ecb96
131-
refs/heads/autosynth-dialogflow: 87faf973cd8cd66e2a45ae26b04ed0990e5df555
131+
refs/heads/autosynth-dialogflow: 9e5d4061bbbbdff632e18423e54b8ae22b8db0c5
132132
refs/heads/autosynth-errorreporting: 1101a04e8be074802c35332d5fcf8297f61cae32
133133
refs/heads/autosynth-firestore: d1a44f9acc302750e37b008ecb9c1aa535cc94df
134134
refs/heads/autosynth-iot: f03bdd338a9056ca3b7ea6d9ca901649ba9aab78

branches/autosynth-dialogflow/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/v1/SpannerClient.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1399,10 +1399,10 @@ public final UnaryCallable<RollbackRequest, Empty> rollbackCallable() {
13991399
*
14001400
* <pre><code>
14011401
* try (SpannerClient spannerClient = SpannerClient.create()) {
1402-
* String formattedSession = SessionName.format("[PROJECT]", "[INSTANCE]", "[DATABASE]", "[SESSION]");
1402+
* SessionName session = SessionName.of("[PROJECT]", "[INSTANCE]", "[DATABASE]", "[SESSION]");
14031403
* String sql = "";
14041404
* PartitionQueryRequest request = PartitionQueryRequest.newBuilder()
1405-
* .setSession(formattedSession)
1405+
* .setSession(session.toString())
14061406
* .setSql(sql)
14071407
* .build();
14081408
* PartitionResponse response = spannerClient.partitionQuery(request);
@@ -1433,10 +1433,10 @@ public final PartitionResponse partitionQuery(PartitionQueryRequest request) {
14331433
*
14341434
* <pre><code>
14351435
* try (SpannerClient spannerClient = SpannerClient.create()) {
1436-
* String formattedSession = SessionName.format("[PROJECT]", "[INSTANCE]", "[DATABASE]", "[SESSION]");
1436+
* SessionName session = SessionName.of("[PROJECT]", "[INSTANCE]", "[DATABASE]", "[SESSION]");
14371437
* String sql = "";
14381438
* PartitionQueryRequest request = PartitionQueryRequest.newBuilder()
1439-
* .setSession(formattedSession)
1439+
* .setSession(session.toString())
14401440
* .setSql(sql)
14411441
* .build();
14421442
* ApiFuture&lt;PartitionResponse&gt; future = spannerClient.partitionQueryCallable().futureCall(request);
@@ -1467,11 +1467,11 @@ public final UnaryCallable<PartitionQueryRequest, PartitionResponse> partitionQu
14671467
*
14681468
* <pre><code>
14691469
* try (SpannerClient spannerClient = SpannerClient.create()) {
1470-
* String formattedSession = SessionName.format("[PROJECT]", "[INSTANCE]", "[DATABASE]", "[SESSION]");
1470+
* SessionName session = SessionName.of("[PROJECT]", "[INSTANCE]", "[DATABASE]", "[SESSION]");
14711471
* String table = "";
14721472
* KeySet keySet = KeySet.newBuilder().build();
14731473
* PartitionReadRequest request = PartitionReadRequest.newBuilder()
1474-
* .setSession(formattedSession)
1474+
* .setSession(session.toString())
14751475
* .setTable(table)
14761476
* .setKeySet(keySet)
14771477
* .build();
@@ -1504,11 +1504,11 @@ public final PartitionResponse partitionRead(PartitionReadRequest request) {
15041504
*
15051505
* <pre><code>
15061506
* try (SpannerClient spannerClient = SpannerClient.create()) {
1507-
* String formattedSession = SessionName.format("[PROJECT]", "[INSTANCE]", "[DATABASE]", "[SESSION]");
1507+
* SessionName session = SessionName.of("[PROJECT]", "[INSTANCE]", "[DATABASE]", "[SESSION]");
15081508
* String table = "";
15091509
* KeySet keySet = KeySet.newBuilder().build();
15101510
* PartitionReadRequest request = PartitionReadRequest.newBuilder()
1511-
* .setSession(formattedSession)
1511+
* .setSession(session.toString())
15121512
* .setTable(table)
15131513
* .setKeySet(keySet)
15141514
* .build();

branches/autosynth-dialogflow/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/admin/database/v1/MockDatabaseAdminImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
@javax.annotation.Generated("by GAPIC")
4444
@BetaApi
4545
public class MockDatabaseAdminImpl extends DatabaseAdminImplBase {
46-
private ArrayList<AbstractMessage> requests;
46+
private List<AbstractMessage> requests;
4747
private Queue<Object> responses;
4848

4949
public MockDatabaseAdminImpl() {

branches/autosynth-dialogflow/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/admin/instance/v1/MockInstanceAdminImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
@javax.annotation.Generated("by GAPIC")
4646
@BetaApi
4747
public class MockInstanceAdminImpl extends InstanceAdminImplBase {
48-
private ArrayList<AbstractMessage> requests;
48+
private List<AbstractMessage> requests;
4949
private Queue<Object> responses;
5050

5151
public MockInstanceAdminImpl() {

branches/autosynth-dialogflow/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/v1/MockSpannerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
@javax.annotation.Generated("by GAPIC")
4949
@BetaApi
5050
public class MockSpannerImpl extends SpannerImplBase {
51-
private ArrayList<AbstractMessage> requests;
51+
private List<AbstractMessage> requests;
5252
private Queue<Object> responses;
5353

5454
public MockSpannerImpl() {

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"updateTime": "2019-03-29T07:55:57.058527Z",
2+
"updateTime": "2019-04-02T07:55:48.539500Z",
33
"sources": [
44
{
55
"generator": {
66
"name": "artman",
7-
"version": "0.16.21",
8-
"dockerImage": "googleapis/artman@sha256:854131ec1af7b3a313253474c24748dc0acd217a58a0b74dbfb559f340a15d78"
7+
"version": "0.16.22",
8+
"dockerImage": "googleapis/artman@sha256:e7f9554322a8aa1416c122c918fdc4cdec8cfe816f027fc948dec0be7edef320"
99
}
1010
},
1111
{
1212
"git": {
1313
"name": "googleapis",
1414
"remote": "https://github.com/googleapis/googleapis.git",
15-
"sha": "37386f1ebcaed51bcb7d15d00124d22c38606e45",
16-
"internalRef": "240841842"
15+
"sha": "6c48ab5aef47dc14e02e2dc718d232a28067129d",
16+
"internalRef": "241437588"
1717
}
1818
}
1919
],

0 commit comments

Comments
 (0)