Right now, to create a StorageService object, I need to do:
StorageServiceOptions options = StorageServiceOptions.builder()
.projectId("project")
.build();
StorageService storage = StorageServiceFactory.instance().get(options);
Would it be worthwhile to do this as
StorageService storage = StorageServiceOptions.builder()
.projectId("project")
.build().buildStorageService();
Or maybe we can have a StorageServiceBuilder?
StorageService storage = StorageService.builder()
.projectId("project")
.build();