| OLD | NEW |
| 1 library googleapis.discovery.v1; | 1 library googleapis.discovery.v1; |
| 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; |
| 11 import '../common/common.dart' as common; | 11 import '../common/common.dart' as common; |
| 12 | 12 |
| 13 export '../common/common.dart' show ApiRequestError; | 13 export '../common/common.dart' show ApiRequestError; |
| 14 export '../common/common.dart' show DetailedApiRequestError; | 14 export '../common/common.dart' show DetailedApiRequestError; |
| 15 | 15 |
| 16 /** | 16 /** |
| 17 * Lets you discover information about other Google APIs, such as what APIs are | 17 * Lets you discover information about other Google APIs, such as what APIs are |
| 18 * available, the resource and method details for each API. | 18 * available, the resource and method details for each API. |
| 19 */ | 19 */ |
| 20 class DiscoveryApi { | 20 class DiscoveryApi { |
| 21 | 21 |
| 22 final common_internal.ApiRequester _requester; | 22 final common_internal.ApiRequester _requester; |
| 23 | 23 |
| 24 ApisResourceApi get apis => new ApisResourceApi(_requester); | 24 ApisResourceApi get apis => new ApisResourceApi(_requester); |
| 25 | 25 |
| 26 DiscoveryApi(http.Client client) : | 26 DiscoveryApi(http.Client client, {core.String rootUrl: "https://www.googleapis
.com/", core.String servicePath: "discovery/v1/"}) : |
| 27 _requester = new common_internal.ApiRequester(client, "https://www.googlea
pis.com/", "discovery/v1/"); | 27 _requester = new common_internal.ApiRequester(client, rootUrl, servicePath
); |
| 28 } | 28 } |
| 29 | 29 |
| 30 | 30 |
| 31 /** Not documented yet. */ | 31 /** Not documented yet. */ |
| 32 class ApisResourceApi { | 32 class ApisResourceApi { |
| 33 final common_internal.ApiRequester _requester; | 33 final common_internal.ApiRequester _requester; |
| 34 | 34 |
| 35 ApisResourceApi(common_internal.ApiRequester client) : | 35 ApisResourceApi(common_internal.ApiRequester client) : |
| 36 _requester = client; | 36 _requester = client; |
| 37 | 37 |
| (...skipping 1377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1415 _json["methods"] = common_internal.mapMap(methods, (item) => (item).toJson
()); | 1415 _json["methods"] = common_internal.mapMap(methods, (item) => (item).toJson
()); |
| 1416 } | 1416 } |
| 1417 if (resources != null) { | 1417 if (resources != null) { |
| 1418 _json["resources"] = common_internal.mapMap(resources, (item) => (item).to
Json()); | 1418 _json["resources"] = common_internal.mapMap(resources, (item) => (item).to
Json()); |
| 1419 } | 1419 } |
| 1420 return _json; | 1420 return _json; |
| 1421 } | 1421 } |
| 1422 } | 1422 } |
| 1423 | 1423 |
| 1424 | 1424 |
| OLD | NEW |