Skip to content

Commit 6cec1bf

Browse files
fix(deps): Update the Java code generator (gapic-generator-java) to 2.39.0 (#3001)
* fix(deps): Update the Java code generator (gapic-generator-java) to 2.39.0 PiperOrigin-RevId: 626430774 Source-Link: googleapis/googleapis@835b84e Source-Link: https://github.com/googleapis/googleapis-gen/commit/43f369d90f19d09ac18720151ab106042beb811b Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNDNmMzY5ZDkwZjE5ZDA5YWMxODcyMDE1MWFiMTA2MDQyYmViODExYiJ9 build: Update protobuf to 25.3 in WORKSPACE PiperOrigin-RevId: 624989428 Source-Link: googleapis/googleapis@caf600a Source-Link: https://github.com/googleapis/googleapis-gen/commit/cc580b8ea4c07f774093d0f8c4afedd2eae6e856 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiY2M1ODBiOGVhNGMwN2Y3NzQwOTNkMGY4YzRhZmVkZDJlYWU2ZTg1NiJ9 feat(spanner): adding `EXPECTED_FULFILLMENT_PERIOD` to the indicate instance creation times (with `FULFILLMENT_PERIOD_NORMAL` or `FULFILLMENT_PERIOD_EXTENDED` ENUM) with the extended instance creation time triggered by On-Demand Capacity Feature PiperOrigin-RevId: 621488048 Source-Link: googleapis/googleapis@0aa0992 Source-Link: https://github.com/googleapis/googleapis-gen/commit/b8ad4c73a5c05fed8bcfddb931326996c3441791 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYjhhZDRjNzNhNWMwNWZlZDhiY2ZkZGI5MzEzMjY5OTZjMzQ0MTc5MSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 1df09d9 commit 6cec1bf

File tree

399 files changed

+1228
-682
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

399 files changed

+1228
-682
lines changed

google-cloud-spanner-executor/src/main/java/com/google/cloud/spanner/executor/v1/stub/SpannerExecutorProxyStubSettings.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -107,15 +107,6 @@ public SpannerExecutorProxyStub createStub() throws IOException {
107107
"Transport not supported: %s", getTransportChannelProvider().getTransportName()));
108108
}
109109

110-
/** Returns the endpoint set by the user or the the service's default endpoint. */
111-
@Override
112-
public String getEndpoint() {
113-
if (super.getEndpoint() != null) {
114-
return super.getEndpoint();
115-
}
116-
return getDefaultEndpoint();
117-
}
118-
119110
/** Returns the default service name. */
120111
@Override
121112
public String getServiceName() {
@@ -273,15 +264,6 @@ public Builder applyToAllUnaryMethods(
273264
return executeActionAsyncSettings;
274265
}
275266

276-
/** Returns the endpoint set by the user or the the service's default endpoint. */
277-
@Override
278-
public String getEndpoint() {
279-
if (super.getEndpoint() != null) {
280-
return super.getEndpoint();
281-
}
282-
return getDefaultEndpoint();
283-
}
284-
285267
@Override
286268
public SpannerExecutorProxyStubSettings build() throws IOException {
287269
return new SpannerExecutorProxyStubSettings(this);

google-cloud-spanner-executor/src/main/resources/META-INF/native-image/com.google.cloud.spanner.executor.v1/reflect-config.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2708,6 +2708,15 @@
27082708
"allDeclaredClasses": true,
27092709
"allPublicClasses": true
27102710
},
2711+
{
2712+
"name": "com.google.spanner.admin.instance.v1.FulfillmentPeriod",
2713+
"queryAllDeclaredConstructors": true,
2714+
"queryAllPublicConstructors": true,
2715+
"queryAllDeclaredMethods": true,
2716+
"allPublicMethods": true,
2717+
"allDeclaredClasses": true,
2718+
"allPublicClasses": true
2719+
},
27112720
{
27122721
"name": "com.google.spanner.admin.instance.v1.GetInstanceConfigRequest",
27132722
"queryAllDeclaredConstructors": true,

google-cloud-spanner/src/main/java/com/google/cloud/spanner/admin/database/v1/stub/DatabaseAdminStubSettings.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -654,15 +654,6 @@ public DatabaseAdminStub createStub() throws IOException {
654654
"Transport not supported: %s", getTransportChannelProvider().getTransportName()));
655655
}
656656

657-
/** Returns the endpoint set by the user or the the service's default endpoint. */
658-
@Override
659-
public String getEndpoint() {
660-
if (super.getEndpoint() != null) {
661-
return super.getEndpoint();
662-
}
663-
return getDefaultEndpoint();
664-
}
665-
666657
/** Returns the default service name. */
667658
@Override
668659
public String getServiceName() {
@@ -1469,15 +1460,6 @@ public UnaryCallSettings.Builder<RestoreDatabaseRequest, Operation> restoreDatab
14691460
return listDatabaseRolesSettings;
14701461
}
14711462

1472-
/** Returns the endpoint set by the user or the the service's default endpoint. */
1473-
@Override
1474-
public String getEndpoint() {
1475-
if (super.getEndpoint() != null) {
1476-
return super.getEndpoint();
1477-
}
1478-
return getDefaultEndpoint();
1479-
}
1480-
14811463
@Override
14821464
public DatabaseAdminStubSettings build() throws IOException {
14831465
return new DatabaseAdminStubSettings(this);

google-cloud-spanner/src/main/java/com/google/cloud/spanner/admin/instance/v1/stub/InstanceAdminStubSettings.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -726,15 +726,6 @@ public InstanceAdminStub createStub() throws IOException {
726726
"Transport not supported: %s", getTransportChannelProvider().getTransportName()));
727727
}
728728

729-
/** Returns the endpoint set by the user or the the service's default endpoint. */
730-
@Override
731-
public String getEndpoint() {
732-
if (super.getEndpoint() != null) {
733-
return super.getEndpoint();
734-
}
735-
return getDefaultEndpoint();
736-
}
737-
738729
/** Returns the default service name. */
739730
@Override
740731
public String getServiceName() {
@@ -1586,15 +1577,6 @@ public UnaryCallSettings.Builder<GetIamPolicyRequest, Policy> getIamPolicySettin
15861577
return listInstancePartitionOperationsSettings;
15871578
}
15881579

1589-
/** Returns the endpoint set by the user or the the service's default endpoint. */
1590-
@Override
1591-
public String getEndpoint() {
1592-
if (super.getEndpoint() != null) {
1593-
return super.getEndpoint();
1594-
}
1595-
return getDefaultEndpoint();
1596-
}
1597-
15981580
@Override
15991581
public InstanceAdminStubSettings build() throws IOException {
16001582
return new InstanceAdminStubSettings(this);

google-cloud-spanner/src/main/java/com/google/cloud/spanner/v1/stub/SpannerStubSettings.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -299,15 +299,6 @@ public SpannerStub createStub() throws IOException {
299299
"Transport not supported: %s", getTransportChannelProvider().getTransportName()));
300300
}
301301

302-
/** Returns the endpoint set by the user or the the service's default endpoint. */
303-
@Override
304-
public String getEndpoint() {
305-
if (super.getEndpoint() != null) {
306-
return super.getEndpoint();
307-
}
308-
return getDefaultEndpoint();
309-
}
310-
311302
/** Returns the default service name. */
312303
@Override
313304
public String getServiceName() {
@@ -808,15 +799,6 @@ public UnaryCallSettings.Builder<RollbackRequest, Empty> rollbackSettings() {
808799
return batchWriteSettings;
809800
}
810801

811-
/** Returns the endpoint set by the user or the the service's default endpoint. */
812-
@Override
813-
public String getEndpoint() {
814-
if (super.getEndpoint() != null) {
815-
return super.getEndpoint();
816-
}
817-
return getDefaultEndpoint();
818-
}
819-
820802
@Override
821803
public SpannerStubSettings build() throws IOException {
822804
return new SpannerStubSettings(this);

google-cloud-spanner/src/main/resources/META-INF/native-image/com.google.cloud.spanner.admin.instance.v1/reflect-config.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1817,6 +1817,15 @@
18171817
"allDeclaredClasses": true,
18181818
"allPublicClasses": true
18191819
},
1820+
{
1821+
"name": "com.google.spanner.admin.instance.v1.FulfillmentPeriod",
1822+
"queryAllDeclaredConstructors": true,
1823+
"queryAllPublicConstructors": true,
1824+
"queryAllDeclaredMethods": true,
1825+
"allPublicMethods": true,
1826+
"allDeclaredClasses": true,
1827+
"allPublicClasses": true
1828+
},
18201829
{
18211830
"name": "com.google.spanner.admin.instance.v1.GetInstanceConfigRequest",
18221831
"queryAllDeclaredConstructors": true,

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/Backup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/BackupInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/BackupInfoOrBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public interface BackupInfoOrBuilder

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/BackupOrBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public interface BackupOrBuilder

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/BackupProto.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public final class BackupProto {

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CommonProto.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/common.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public final class CommonProto {

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CopyBackupEncryptionConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CopyBackupEncryptionConfigOrBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public interface CopyBackupEncryptionConfigOrBuilder

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CopyBackupMetadata.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CopyBackupMetadataOrBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public interface CopyBackupMetadataOrBuilder

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CopyBackupRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CopyBackupRequestOrBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public interface CopyBackupRequestOrBuilder

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CreateBackupEncryptionConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CreateBackupEncryptionConfigOrBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public interface CreateBackupEncryptionConfigOrBuilder

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CreateBackupMetadata.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CreateBackupMetadataOrBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public interface CreateBackupMetadataOrBuilder

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CreateBackupRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CreateBackupRequestOrBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/backup.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public interface CreateBackupRequestOrBuilder

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CreateDatabaseMetadata.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/spanner_database_admin.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CreateDatabaseMetadataOrBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/spanner_database_admin.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public interface CreateDatabaseMetadataOrBuilder

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CreateDatabaseRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/spanner_database_admin.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CreateDatabaseRequestOrBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/spanner_database_admin.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public interface CreateDatabaseRequestOrBuilder

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/Database.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/spanner_database_admin.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/DatabaseDialect.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/common.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/DatabaseOrBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/spanner_database_admin.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
public interface DatabaseOrBuilder

proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/DatabaseRole.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Generated by the protocol buffer compiler. DO NOT EDIT!
1717
// source: google/spanner/admin/database/v1/spanner_database_admin.proto
1818

19-
// Protobuf Java Version: 3.25.2
19+
// Protobuf Java Version: 3.25.3
2020
package com.google.spanner.admin.database.v1;
2121

2222
/**

0 commit comments

Comments
 (0)