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.v1beta2; | 3 library googleapis_beta.resourceviews.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 resourceviews/v1beta2'; | 15 const core.String USER_AGENT = 'dart-api-client resourceviews/v1beta2'; |
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 1493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1528 } | 1534 } |
1529 if (fingerprint != null) { | 1535 if (fingerprint != null) { |
1530 _json["fingerprint"] = fingerprint; | 1536 _json["fingerprint"] = fingerprint; |
1531 } | 1537 } |
1532 if (resourceName != null) { | 1538 if (resourceName != null) { |
1533 _json["resourceName"] = resourceName; | 1539 _json["resourceName"] = resourceName; |
1534 } | 1540 } |
1535 return _json; | 1541 return _json; |
1536 } | 1542 } |
1537 } | 1543 } |
OLD | NEW |