This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group 'com.rameshl.demos' | |
version '1.0' | |
buildscript { | |
repositories { | |
jcenter() | |
mavenCentral() | |
} | |
dependencies { | |
// latest App Engine Gradle tasks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Service class to trigger datastore backup request to new Cloud Datastore Export Service | |
* @see <a href="https://cloud.google.com/datastore/docs/schedule-export">Scheduled Export</a> | |
* This class dependents on Jackson for serialization | |
*/ | |
public class DatastoreBackupService { | |
private static final String BACKUP_ENDPOINT = "https://datastore.googleapis.com/v1/projects/%s:export"; | |
private static final String DATASTORE_SCOPE = "https://www.googleapis.com/auth/datastore"; |