-
Notifications
You must be signed in to change notification settings - Fork 324
/
Copy pathGTLRAppengineService.m
37 lines (29 loc) · 1.24 KB
/
GTLRAppengineService.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// NOTE: This file was generated by the ServiceGenerator.
// ----------------------------------------------------------------------------
// API:
// App Engine Admin API (appengine/v1)
// Description:
// Provisions and manages developers' App Engine applications.
// Documentation:
// https://cloud.google.com/appengine/docs/admin-api/
#import <GoogleAPIClientForREST/GTLRAppengine.h>
// ----------------------------------------------------------------------------
// Authorization scopes
NSString * const kGTLRAuthScopeAppengineAdmin = @"https://www.googleapis.com/auth/appengine.admin";
NSString * const kGTLRAuthScopeAppengineCloudPlatform = @"https://www.googleapis.com/auth/cloud-platform";
NSString * const kGTLRAuthScopeAppengineCloudPlatformReadOnly = @"https://www.googleapis.com/auth/cloud-platform.read-only";
// ----------------------------------------------------------------------------
// GTLRAppengineService
//
@implementation GTLRAppengineService
- (instancetype)init {
self = [super init];
if (self) {
// From discovery.
self.rootURLString = @"https://appengine.googleapis.com/";
self.batchPath = @"batch";
self.prettyPrintQueryParameterNames = @[ @"prettyPrint" ];
}
return self;
}
@end