| 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.replicapoolupdater.v1beta1; | 3 library googleapis_beta.replicapoolupdater.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 replicapoolupdater/v1beta1'; | 15 const core.String USER_AGENT = 'dart-api-client replicapoolupdater/v1beta1'; |
| 16 | 16 |
| 17 /** | 17 /** Updates groups of Compute Engine instances. */ |
| 18 * The Google Compute Engine Instance Group Updater API provides services for | |
| 19 * updating groups of Compute Engine Instances. | |
| 20 */ | |
| 21 class ReplicapoolupdaterApi { | 18 class ReplicapoolupdaterApi { |
| 22 /** View and manage your data across Google Cloud Platform services */ | 19 /** View and manage your data across Google Cloud Platform services */ |
| 23 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf
orm"; | 20 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf
orm"; |
| 24 | 21 |
| 25 /** View your data across Google Cloud Platform services */ | 22 /** View your data across Google Cloud Platform services */ |
| 26 static const CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/clo
ud-platform.read-only"; | 23 static const CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/clo
ud-platform.read-only"; |
| 27 | 24 |
| 28 /** View and manage replica pools */ | 25 /** View and manage replica pools */ |
| 29 static const ReplicapoolScope = "https://www.googleapis.com/auth/replicapool"; | 26 static const ReplicapoolScope = "https://www.googleapis.com/auth/replicapool"; |
| 30 | 27 |
| (...skipping 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1546 } | 1543 } |
| 1547 if (nextPageToken != null) { | 1544 if (nextPageToken != null) { |
| 1548 _json["nextPageToken"] = nextPageToken; | 1545 _json["nextPageToken"] = nextPageToken; |
| 1549 } | 1546 } |
| 1550 if (selfLink != null) { | 1547 if (selfLink != null) { |
| 1551 _json["selfLink"] = selfLink; | 1548 _json["selfLink"] = selfLink; |
| 1552 } | 1549 } |
| 1553 return _json; | 1550 return _json; |
| 1554 } | 1551 } |
| 1555 } | 1552 } |
| OLD | NEW |