OLD | NEW |
(Empty) | |
| 1 // This is a generated file (see the discoveryapis_generator project). |
| 2 |
| 3 library googleapis_beta.dataflow.v1b3; |
| 4 |
| 5 import 'dart:core' as core; |
| 6 import 'dart:async' as async; |
| 7 import 'dart:convert' as convert; |
| 8 |
| 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
| 10 import 'package:http/http.dart' as http; |
| 11 |
| 12 export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show |
| 13 ApiRequestError, DetailedApiRequestError; |
| 14 |
| 15 const core.String USER_AGENT = 'dart-api-client dataflow/v1b3'; |
| 16 |
| 17 /** Google Dataflow API. */ |
| 18 class DataflowApi { |
| 19 |
| 20 final commons.ApiRequester _requester; |
| 21 |
| 22 DataflowApi(http.Client client, {core.String rootUrl: "https://dataflow.google
apis.com/", core.String servicePath: ""}) : |
| 23 _requester = new commons.ApiRequester(client, rootUrl, servicePath, USER_A
GENT); |
| 24 } |
OLD | NEW |