On Wed, Mar 12, 2014 at 10:48 AM, GAEfan <[email protected]> wrote: > Is there a way to make the new bucket I created the default bucket, to > fall within the free quota? > > Or, must I now go through the App Engine > Application Settings console to > "Create a Google Cloud project as well as a Google Cloud Storage bucket > for this application.", thereby getting the free default bucket, and then > migrate everything over (again)? >
The default bucket should exist for most (but not all) applications, provided that the App Engine ID is integrated into a cloud project. If you'd like to test whether or not there's a default bucket ready to go, you can use your application's runtime to test for the name of the bucket: Go has DefaultBucketName ( https://godoc.org/code.google.com/p/appengine-go/appengine/file ), Java has getDefaultGcsBucketName ( https://developers.google.com/appengine/docs/java/javadoc/com/google/appengine/api/appidentity/AppIdentityService) and PHP/Python have equivalents in the App Identity service. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
