Skip to content

Commit 530922f

Browse files
chore: generate libraries at Wed Nov 5 02:32:12 UTC 2025
1 parent fa92745 commit 530922f

File tree

7 files changed

+175
-139
lines changed

7 files changed

+175
-139
lines changed

.kokoro/presubmit/graalvm-native-a.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.53.0" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.54.0" # {x-version-update:google-cloud-shared-dependencies:current}
77
}
88

99
env_vars: {

.kokoro/presubmit/graalvm-native-b.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.53.0" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.54.0" # {x-version-update:google-cloud-shared-dependencies:current}
77
}
88

99
env_vars: {

.kokoro/presubmit/graalvm-native-c.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.53.0" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.54.0" # {x-version-update:google-cloud-shared-dependencies:current}
77
}
88

99
env_vars: {

grpc-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/DatabaseAdminGrpc.java

Lines changed: 80 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@
2929
* * restore a database from an existing backup
3030
* </pre>
3131
*/
32-
@javax.annotation.Generated(
33-
value = "by gRPC proto compiler",
34-
comments = "Source: google/spanner/admin/database/v1/spanner_database_admin.proto")
3532
@io.grpc.stub.annotations.GrpcGenerated
3633
public final class DatabaseAdminGrpc {
3734

@@ -2531,8 +2528,9 @@ protected DatabaseAdminBlockingV2Stub build(
25312528
* </pre>
25322529
*/
25332530
public com.google.spanner.admin.database.v1.ListDatabasesResponse listDatabases(
2534-
com.google.spanner.admin.database.v1.ListDatabasesRequest request) {
2535-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2531+
com.google.spanner.admin.database.v1.ListDatabasesRequest request)
2532+
throws io.grpc.StatusException {
2533+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
25362534
getChannel(), getListDatabasesMethod(), getCallOptions(), request);
25372535
}
25382536

@@ -2551,8 +2549,9 @@ public com.google.spanner.admin.database.v1.ListDatabasesResponse listDatabases(
25512549
* </pre>
25522550
*/
25532551
public com.google.longrunning.Operation createDatabase(
2554-
com.google.spanner.admin.database.v1.CreateDatabaseRequest request) {
2555-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2552+
com.google.spanner.admin.database.v1.CreateDatabaseRequest request)
2553+
throws io.grpc.StatusException {
2554+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
25562555
getChannel(), getCreateDatabaseMethod(), getCallOptions(), request);
25572556
}
25582557

@@ -2564,8 +2563,9 @@ public com.google.longrunning.Operation createDatabase(
25642563
* </pre>
25652564
*/
25662565
public com.google.spanner.admin.database.v1.Database getDatabase(
2567-
com.google.spanner.admin.database.v1.GetDatabaseRequest request) {
2568-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2566+
com.google.spanner.admin.database.v1.GetDatabaseRequest request)
2567+
throws io.grpc.StatusException {
2568+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
25692569
getChannel(), getGetDatabaseMethod(), getCallOptions(), request);
25702570
}
25712571

@@ -2607,8 +2607,9 @@ public com.google.spanner.admin.database.v1.Database getDatabase(
26072607
* </pre>
26082608
*/
26092609
public com.google.longrunning.Operation updateDatabase(
2610-
com.google.spanner.admin.database.v1.UpdateDatabaseRequest request) {
2611-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2610+
com.google.spanner.admin.database.v1.UpdateDatabaseRequest request)
2611+
throws io.grpc.StatusException {
2612+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
26122613
getChannel(), getUpdateDatabaseMethod(), getCallOptions(), request);
26132614
}
26142615

@@ -2627,8 +2628,9 @@ public com.google.longrunning.Operation updateDatabase(
26272628
* </pre>
26282629
*/
26292630
public com.google.longrunning.Operation updateDatabaseDdl(
2630-
com.google.spanner.admin.database.v1.UpdateDatabaseDdlRequest request) {
2631-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2631+
com.google.spanner.admin.database.v1.UpdateDatabaseDdlRequest request)
2632+
throws io.grpc.StatusException {
2633+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
26322634
getChannel(), getUpdateDatabaseDdlMethod(), getCallOptions(), request);
26332635
}
26342636

@@ -2644,8 +2646,9 @@ public com.google.longrunning.Operation updateDatabaseDdl(
26442646
* </pre>
26452647
*/
26462648
public com.google.protobuf.Empty dropDatabase(
2647-
com.google.spanner.admin.database.v1.DropDatabaseRequest request) {
2648-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2649+
com.google.spanner.admin.database.v1.DropDatabaseRequest request)
2650+
throws io.grpc.StatusException {
2651+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
26492652
getChannel(), getDropDatabaseMethod(), getCallOptions(), request);
26502653
}
26512654

@@ -2659,8 +2662,9 @@ public com.google.protobuf.Empty dropDatabase(
26592662
* </pre>
26602663
*/
26612664
public com.google.spanner.admin.database.v1.GetDatabaseDdlResponse getDatabaseDdl(
2662-
com.google.spanner.admin.database.v1.GetDatabaseDdlRequest request) {
2663-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2665+
com.google.spanner.admin.database.v1.GetDatabaseDdlRequest request)
2666+
throws io.grpc.StatusException {
2667+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
26642668
getChannel(), getGetDatabaseDdlMethod(), getCallOptions(), request);
26652669
}
26662670

@@ -2676,8 +2680,9 @@ public com.google.spanner.admin.database.v1.GetDatabaseDdlResponse getDatabaseDd
26762680
* permission on [resource][google.iam.v1.SetIamPolicyRequest.resource].
26772681
* </pre>
26782682
*/
2679-
public com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request) {
2680-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2683+
public com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
2684+
throws io.grpc.StatusException {
2685+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
26812686
getChannel(), getSetIamPolicyMethod(), getCallOptions(), request);
26822687
}
26832688

@@ -2694,8 +2699,9 @@ public com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyReque
26942699
* permission on [resource][google.iam.v1.GetIamPolicyRequest.resource].
26952700
* </pre>
26962701
*/
2697-
public com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request) {
2698-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2702+
public com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
2703+
throws io.grpc.StatusException {
2704+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
26992705
getChannel(), getGetIamPolicyMethod(), getCallOptions(), request);
27002706
}
27012707

@@ -2715,8 +2721,8 @@ public com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyReque
27152721
* </pre>
27162722
*/
27172723
public com.google.iam.v1.TestIamPermissionsResponse testIamPermissions(
2718-
com.google.iam.v1.TestIamPermissionsRequest request) {
2719-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2724+
com.google.iam.v1.TestIamPermissionsRequest request) throws io.grpc.StatusException {
2725+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
27202726
getChannel(), getTestIamPermissionsMethod(), getCallOptions(), request);
27212727
}
27222728

@@ -2739,8 +2745,9 @@ public com.google.iam.v1.TestIamPermissionsResponse testIamPermissions(
27392745
* </pre>
27402746
*/
27412747
public com.google.longrunning.Operation createBackup(
2742-
com.google.spanner.admin.database.v1.CreateBackupRequest request) {
2743-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2748+
com.google.spanner.admin.database.v1.CreateBackupRequest request)
2749+
throws io.grpc.StatusException {
2750+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
27442751
getChannel(), getCreateBackupMethod(), getCallOptions(), request);
27452752
}
27462753

@@ -2764,8 +2771,9 @@ public com.google.longrunning.Operation createBackup(
27642771
* </pre>
27652772
*/
27662773
public com.google.longrunning.Operation copyBackup(
2767-
com.google.spanner.admin.database.v1.CopyBackupRequest request) {
2768-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2774+
com.google.spanner.admin.database.v1.CopyBackupRequest request)
2775+
throws io.grpc.StatusException {
2776+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
27692777
getChannel(), getCopyBackupMethod(), getCallOptions(), request);
27702778
}
27712779

@@ -2778,8 +2786,9 @@ public com.google.longrunning.Operation copyBackup(
27782786
* </pre>
27792787
*/
27802788
public com.google.spanner.admin.database.v1.Backup getBackup(
2781-
com.google.spanner.admin.database.v1.GetBackupRequest request) {
2782-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2789+
com.google.spanner.admin.database.v1.GetBackupRequest request)
2790+
throws io.grpc.StatusException {
2791+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
27832792
getChannel(), getGetBackupMethod(), getCallOptions(), request);
27842793
}
27852794

@@ -2792,8 +2801,9 @@ public com.google.spanner.admin.database.v1.Backup getBackup(
27922801
* </pre>
27932802
*/
27942803
public com.google.spanner.admin.database.v1.Backup updateBackup(
2795-
com.google.spanner.admin.database.v1.UpdateBackupRequest request) {
2796-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2804+
com.google.spanner.admin.database.v1.UpdateBackupRequest request)
2805+
throws io.grpc.StatusException {
2806+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
27972807
getChannel(), getUpdateBackupMethod(), getCallOptions(), request);
27982808
}
27992809

@@ -2806,8 +2816,9 @@ public com.google.spanner.admin.database.v1.Backup updateBackup(
28062816
* </pre>
28072817
*/
28082818
public com.google.protobuf.Empty deleteBackup(
2809-
com.google.spanner.admin.database.v1.DeleteBackupRequest request) {
2810-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2819+
com.google.spanner.admin.database.v1.DeleteBackupRequest request)
2820+
throws io.grpc.StatusException {
2821+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
28112822
getChannel(), getDeleteBackupMethod(), getCallOptions(), request);
28122823
}
28132824

@@ -2821,8 +2832,9 @@ public com.google.protobuf.Empty deleteBackup(
28212832
* </pre>
28222833
*/
28232834
public com.google.spanner.admin.database.v1.ListBackupsResponse listBackups(
2824-
com.google.spanner.admin.database.v1.ListBackupsRequest request) {
2825-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2835+
com.google.spanner.admin.database.v1.ListBackupsRequest request)
2836+
throws io.grpc.StatusException {
2837+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
28262838
getChannel(), getListBackupsMethod(), getCallOptions(), request);
28272839
}
28282840

@@ -2850,8 +2862,9 @@ public com.google.spanner.admin.database.v1.ListBackupsResponse listBackups(
28502862
* </pre>
28512863
*/
28522864
public com.google.longrunning.Operation restoreDatabase(
2853-
com.google.spanner.admin.database.v1.RestoreDatabaseRequest request) {
2854-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2865+
com.google.spanner.admin.database.v1.RestoreDatabaseRequest request)
2866+
throws io.grpc.StatusException {
2867+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
28552868
getChannel(), getRestoreDatabaseMethod(), getCallOptions(), request);
28562869
}
28572870

@@ -2871,8 +2884,9 @@ public com.google.longrunning.Operation restoreDatabase(
28712884
*/
28722885
public com.google.spanner.admin.database.v1.ListDatabaseOperationsResponse
28732886
listDatabaseOperations(
2874-
com.google.spanner.admin.database.v1.ListDatabaseOperationsRequest request) {
2875-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2887+
com.google.spanner.admin.database.v1.ListDatabaseOperationsRequest request)
2888+
throws io.grpc.StatusException {
2889+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
28762890
getChannel(), getListDatabaseOperationsMethod(), getCallOptions(), request);
28772891
}
28782892

@@ -2893,8 +2907,9 @@ public com.google.longrunning.Operation restoreDatabase(
28932907
* </pre>
28942908
*/
28952909
public com.google.spanner.admin.database.v1.ListBackupOperationsResponse listBackupOperations(
2896-
com.google.spanner.admin.database.v1.ListBackupOperationsRequest request) {
2897-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2910+
com.google.spanner.admin.database.v1.ListBackupOperationsRequest request)
2911+
throws io.grpc.StatusException {
2912+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
28982913
getChannel(), getListBackupOperationsMethod(), getCallOptions(), request);
28992914
}
29002915

@@ -2906,8 +2921,9 @@ public com.google.spanner.admin.database.v1.ListBackupOperationsResponse listBac
29062921
* </pre>
29072922
*/
29082923
public com.google.spanner.admin.database.v1.ListDatabaseRolesResponse listDatabaseRoles(
2909-
com.google.spanner.admin.database.v1.ListDatabaseRolesRequest request) {
2910-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2924+
com.google.spanner.admin.database.v1.ListDatabaseRolesRequest request)
2925+
throws io.grpc.StatusException {
2926+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
29112927
getChannel(), getListDatabaseRolesMethod(), getCallOptions(), request);
29122928
}
29132929

@@ -2919,8 +2935,9 @@ public com.google.spanner.admin.database.v1.ListDatabaseRolesResponse listDataba
29192935
* </pre>
29202936
*/
29212937
public com.google.spanner.admin.database.v1.AddSplitPointsResponse addSplitPoints(
2922-
com.google.spanner.admin.database.v1.AddSplitPointsRequest request) {
2923-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2938+
com.google.spanner.admin.database.v1.AddSplitPointsRequest request)
2939+
throws io.grpc.StatusException {
2940+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
29242941
getChannel(), getAddSplitPointsMethod(), getCallOptions(), request);
29252942
}
29262943

@@ -2932,8 +2949,9 @@ public com.google.spanner.admin.database.v1.AddSplitPointsResponse addSplitPoint
29322949
* </pre>
29332950
*/
29342951
public com.google.spanner.admin.database.v1.BackupSchedule createBackupSchedule(
2935-
com.google.spanner.admin.database.v1.CreateBackupScheduleRequest request) {
2936-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2952+
com.google.spanner.admin.database.v1.CreateBackupScheduleRequest request)
2953+
throws io.grpc.StatusException {
2954+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
29372955
getChannel(), getCreateBackupScheduleMethod(), getCallOptions(), request);
29382956
}
29392957

@@ -2945,8 +2963,9 @@ public com.google.spanner.admin.database.v1.BackupSchedule createBackupSchedule(
29452963
* </pre>
29462964
*/
29472965
public com.google.spanner.admin.database.v1.BackupSchedule getBackupSchedule(
2948-
com.google.spanner.admin.database.v1.GetBackupScheduleRequest request) {
2949-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2966+
com.google.spanner.admin.database.v1.GetBackupScheduleRequest request)
2967+
throws io.grpc.StatusException {
2968+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
29502969
getChannel(), getGetBackupScheduleMethod(), getCallOptions(), request);
29512970
}
29522971

@@ -2958,8 +2977,9 @@ public com.google.spanner.admin.database.v1.BackupSchedule getBackupSchedule(
29582977
* </pre>
29592978
*/
29602979
public com.google.spanner.admin.database.v1.BackupSchedule updateBackupSchedule(
2961-
com.google.spanner.admin.database.v1.UpdateBackupScheduleRequest request) {
2962-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2980+
com.google.spanner.admin.database.v1.UpdateBackupScheduleRequest request)
2981+
throws io.grpc.StatusException {
2982+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
29632983
getChannel(), getUpdateBackupScheduleMethod(), getCallOptions(), request);
29642984
}
29652985

@@ -2971,8 +2991,9 @@ public com.google.spanner.admin.database.v1.BackupSchedule updateBackupSchedule(
29712991
* </pre>
29722992
*/
29732993
public com.google.protobuf.Empty deleteBackupSchedule(
2974-
com.google.spanner.admin.database.v1.DeleteBackupScheduleRequest request) {
2975-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
2994+
com.google.spanner.admin.database.v1.DeleteBackupScheduleRequest request)
2995+
throws io.grpc.StatusException {
2996+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
29762997
getChannel(), getDeleteBackupScheduleMethod(), getCallOptions(), request);
29772998
}
29782999

@@ -2984,8 +3005,9 @@ public com.google.protobuf.Empty deleteBackupSchedule(
29843005
* </pre>
29853006
*/
29863007
public com.google.spanner.admin.database.v1.ListBackupSchedulesResponse listBackupSchedules(
2987-
com.google.spanner.admin.database.v1.ListBackupSchedulesRequest request) {
2988-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
3008+
com.google.spanner.admin.database.v1.ListBackupSchedulesRequest request)
3009+
throws io.grpc.StatusException {
3010+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
29893011
getChannel(), getListBackupSchedulesMethod(), getCallOptions(), request);
29903012
}
29913013

@@ -2999,8 +3021,9 @@ public com.google.spanner.admin.database.v1.ListBackupSchedulesResponse listBack
29993021
*/
30003022
public com.google.spanner.admin.database.v1.InternalUpdateGraphOperationResponse
30013023
internalUpdateGraphOperation(
3002-
com.google.spanner.admin.database.v1.InternalUpdateGraphOperationRequest request) {
3003-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
3024+
com.google.spanner.admin.database.v1.InternalUpdateGraphOperationRequest request)
3025+
throws io.grpc.StatusException {
3026+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
30043027
getChannel(), getInternalUpdateGraphOperationMethod(), getCallOptions(), request);
30053028
}
30063029
}

0 commit comments

Comments
 (0)