We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cf6e25 commit c61a9c6Copy full SHA for c61a9c6
google-cloud-storage/src/main/java/com/google/cloud/storage/StorageOptions.java
@@ -105,6 +105,13 @@ public static HttpTransportOptions getDefaultHttpTransportOptions() {
105
return HttpTransportOptions.newBuilder().build();
106
}
107
108
+ // Project ID is only required for creating buckets, so we don't require it for creating the
109
+ // service.
110
+ @Override
111
+ protected boolean projectIdRequired() {
112
+ return false;
113
+ }
114
+
115
@Override
116
protected Set<String> getScopes() {
117
return SCOPES;
0 commit comments