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.resourceviews.v1beta1; | 3 library googleapis_beta.resourceviews.v1beta1; |
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 resourceviews/v1beta1'; | 15 const core.String USER_AGENT = 'dart-api-client resourceviews/v1beta1'; |
16 | 16 |
17 /** | 17 /** |
18 * The Resource View API allows users to create and manage logical sets of | 18 * The Resource View API allows users to create and manage logical sets of |
19 * Google Compute Engine instances. | 19 * Google Compute Engine instances. |
20 */ | 20 */ |
21 class ResourceviewsApi { | 21 class ResourceviewsApi { |
22 /** View and manage your data across Google Cloud Platform services */ | 22 /** View and manage your data across Google Cloud Platform services */ |
23 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf
orm"; | 23 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf
orm"; |
24 | 24 |
| 25 /** |
| 26 * MESSAGE UNDER CONSTRUCTION View your data across Google Cloud Platform |
| 27 * services |
| 28 */ |
| 29 static const CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/clo
ud-platform.read-only"; |
| 30 |
25 /** View and manage your Google Compute Engine resources */ | 31 /** View and manage your Google Compute Engine resources */ |
26 static const ComputeScope = "https://www.googleapis.com/auth/compute"; | 32 static const ComputeScope = "https://www.googleapis.com/auth/compute"; |
27 | 33 |
28 /** View your Google Compute Engine resources */ | 34 /** View your Google Compute Engine resources */ |
29 static const ComputeReadonlyScope = "https://www.googleapis.com/auth/compute.r
eadonly"; | 35 static const ComputeReadonlyScope = "https://www.googleapis.com/auth/compute.r
eadonly"; |
30 | 36 |
31 /** | 37 /** |
32 * View and manage your Google Cloud Platform management resources and | 38 * View and manage your Google Cloud Platform management resources and |
33 * deployment status information | 39 * deployment status information |
34 */ | 40 */ |
(...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1190 } | 1196 } |
1191 | 1197 |
1192 core.Map toJson() { | 1198 core.Map toJson() { |
1193 var _json = new core.Map(); | 1199 var _json = new core.Map(); |
1194 if (resources != null) { | 1200 if (resources != null) { |
1195 _json["resources"] = resources; | 1201 _json["resources"] = resources; |
1196 } | 1202 } |
1197 return _json; | 1203 return _json; |
1198 } | 1204 } |
1199 } | 1205 } |
OLD | NEW |