Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: generated/googleapis_beta/lib/datastore/v1beta2.dart

Issue 798373003: Api roll 8: 2014-12-15 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 library googleapis_beta.datastore.v1beta2; 1 library googleapis_beta.datastore.v1beta2;
2 2
3 import "dart:core" as core; 3 import "dart:core" as core;
4 import "dart:collection" as collection; 4 import "dart:collection" as collection;
5 import "dart:async" as async; 5 import "dart:async" as async;
6 import "dart:convert" as convert; 6 import "dart:convert" as convert;
7 7
8 import "package:crypto/crypto.dart" as crypto; 8 import "package:crypto/crypto.dart" as crypto;
9 import 'package:http/http.dart' as http; 9 import 'package:http/http.dart' as http;
10 import '../src/common_internal.dart' as common_internal; 10 import '../src/common_internal.dart' as common_internal;
(...skipping 11 matching lines...) Expand all
22 static const DatastoreScope = "https://www.googleapis.com/auth/datastore"; 22 static const DatastoreScope = "https://www.googleapis.com/auth/datastore";
23 23
24 /** View your email address */ 24 /** View your email address */
25 static const UserinfoEmailScope = "https://www.googleapis.com/auth/userinfo.em ail"; 25 static const UserinfoEmailScope = "https://www.googleapis.com/auth/userinfo.em ail";
26 26
27 27
28 final common_internal.ApiRequester _requester; 28 final common_internal.ApiRequester _requester;
29 29
30 DatasetsResourceApi get datasets => new DatasetsResourceApi(_requester); 30 DatasetsResourceApi get datasets => new DatasetsResourceApi(_requester);
31 31
32 DatastoreApi(http.Client client) : 32 DatastoreApi(http.Client client, {core.String rootUrl: "https://www.googleapis .com/", core.String servicePath: "datastore/v1beta2/datasets/"}) :
33 _requester = new common_internal.ApiRequester(client, "https://www.googlea pis.com/", "datastore/v1beta2/datasets/"); 33 _requester = new common_internal.ApiRequester(client, rootUrl, servicePath );
34 } 34 }
35 35
36 36
37 /** Not documented yet. */ 37 /** Not documented yet. */
38 class DatasetsResourceApi { 38 class DatasetsResourceApi {
39 final common_internal.ApiRequester _requester; 39 final common_internal.ApiRequester _requester;
40 40
41 DatasetsResourceApi(common_internal.ApiRequester client) : 41 DatasetsResourceApi(common_internal.ApiRequester client) :
42 _requester = client; 42 _requester = client;
43 43
(...skipping 2025 matching lines...) Expand 10 before | Expand all | Expand 10 after
2069 _json["meaning"] = meaning; 2069 _json["meaning"] = meaning;
2070 } 2070 }
2071 if (stringValue != null) { 2071 if (stringValue != null) {
2072 _json["stringValue"] = stringValue; 2072 _json["stringValue"] = stringValue;
2073 } 2073 }
2074 return _json; 2074 return _json;
2075 } 2075 }
2076 } 2076 }
2077 2077
2078 2078
OLDNEW
« no previous file with comments | « generated/googleapis_beta/lib/container/v1beta1.dart ('k') | generated/googleapis_beta/lib/dns/v1beta1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698