File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
main/java/com/example/spanner
test/java/com/example/spanner Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2727import com .google .spanner .admin .instance .v1 .ProjectName ;
2828import java .util .concurrent .ExecutionException ;
2929
30- class CreateInstanceWithoutDefaultBackupScheduleExample {
30+ class CreateInstanceWithoutDefaultBackupSchedulesExample {
3131
32- static void createInstanceWithoutDefaultBackupSchedule () {
32+ static void createInstanceWithoutDefaultBackupSchedules () {
3333 // TODO(developer): Replace these variables before running the sample.
3434 String projectId = "my-project" ;
3535 String instanceId = "my-instance" ;
36- createInstanceWithoutDefaultBackupSchedule (projectId , instanceId );
36+ createInstanceWithoutDefaultBackupSchedules (projectId , instanceId );
3737 }
3838
39- static void createInstanceWithoutDefaultBackupSchedule (String projectId , String instanceId ) {
39+ static void createInstanceWithoutDefaultBackupSchedules (String projectId , String instanceId ) {
4040 // Set Instance configuration.
4141 int nodeCount = 2 ;
4242 String displayName = "Descriptive name" ;
Original file line number Diff line number Diff line change @@ -702,8 +702,8 @@ public void testCreateAndUpdateInstanceDefaultBackupScheduleTypeSample() {
702702 runSampleRunnable (
703703 () -> {
704704 try {
705- CreateInstanceWithoutDefaultBackupScheduleExample
706- .createInstanceWithoutDefaultBackupSchedule (
705+ CreateInstanceWithoutDefaultBackupSchedulesExample
706+ .createInstanceWithoutDefaultBackupSchedules (
707707 dbId .getInstanceId ().getProject (), instanceId );
708708 UpdateInstanceDefaultBackupScheduleTypeExample
709709 .updateInstanceDefaultBackupScheduleType (
You can’t perform that action at this time.
0 commit comments