| OLD | NEW |
| 1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
| 2 | 2 |
| 3 library googleapis_beta.manager.v1beta2; | 3 library googleapis_beta.manager.v1beta2; |
| 4 | 4 |
| 5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
| 6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
| 7 import 'dart:convert' as convert; | 7 import 'dart:convert' as convert; |
| 8 | 8 |
| 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
| 10 import 'package:http/http.dart' as http; | 10 import 'package:http/http.dart' as http; |
| 11 | 11 |
| 12 export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show | 12 export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show |
| 13 ApiRequestError, DetailedApiRequestError; | 13 ApiRequestError, DetailedApiRequestError; |
| 14 | 14 |
| 15 const core.String USER_AGENT = 'dart-api-client manager/v1beta2'; | 15 const core.String USER_AGENT = 'dart-api-client manager/v1beta2'; |
| 16 | 16 |
| 17 /** | 17 /** |
| 18 * The Deployment Manager API allows users to declaratively configure, deploy | 18 * The Deployment Manager API allows users to declaratively configure, deploy |
| 19 * and run complex solutions on the Google Cloud Platform. | 19 * and run complex solutions on the Google Cloud Platform. |
| 20 */ | 20 */ |
| 21 class ManagerApi { | 21 class ManagerApi { |
| 22 /** View and manage your applications deployed on Google App Engine */ | 22 /** View and manage your applications deployed on Google App Engine */ |
| 23 static const AppengineAdminScope = "https://www.googleapis.com/auth/appengine.
admin"; | 23 static const AppengineAdminScope = "https://www.googleapis.com/auth/appengine.
admin"; |
| 24 | 24 |
| 25 /** View and manage your data across Google Cloud Platform services */ | 25 /** View and manage your data across Google Cloud Platform services */ |
| 26 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf
orm"; | 26 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf
orm"; |
| 27 | 27 |
| 28 /** |
| 29 * MESSAGE UNDER CONSTRUCTION View your data across Google Cloud Platform |
| 30 * services |
| 31 */ |
| 32 static const CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/clo
ud-platform.read-only"; |
| 33 |
| 28 /** View and manage your Google Compute Engine resources */ | 34 /** View and manage your Google Compute Engine resources */ |
| 29 static const ComputeScope = "https://www.googleapis.com/auth/compute"; | 35 static const ComputeScope = "https://www.googleapis.com/auth/compute"; |
| 30 | 36 |
| 31 /** Manage your data in Google Cloud Storage */ | 37 /** Manage your data in Google Cloud Storage */ |
| 32 static const DevstorageReadWriteScope = "https://www.googleapis.com/auth/devst
orage.read_write"; | 38 static const DevstorageReadWriteScope = "https://www.googleapis.com/auth/devst
orage.read_write"; |
| 33 | 39 |
| 34 /** | 40 /** |
| 35 * View and manage your Google Cloud Platform management resources and | 41 * View and manage your Google Cloud Platform management resources and |
| 36 * deployment status information | 42 * deployment status information |
| 37 */ | 43 */ |
| (...skipping 1991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2029 var _json = new core.Map(); | 2035 var _json = new core.Map(); |
| 2030 if (nextPageToken != null) { | 2036 if (nextPageToken != null) { |
| 2031 _json["nextPageToken"] = nextPageToken; | 2037 _json["nextPageToken"] = nextPageToken; |
| 2032 } | 2038 } |
| 2033 if (resources != null) { | 2039 if (resources != null) { |
| 2034 _json["resources"] = resources.map((value) => (value).toJson()).toList(); | 2040 _json["resources"] = resources.map((value) => (value).toJson()).toList(); |
| 2035 } | 2041 } |
| 2036 return _json; | 2042 return _json; |
| 2037 } | 2043 } |
| 2038 } | 2044 } |
| OLD | NEW |