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 /** Updates groups of Compute Engine instances. */ | 17 /** |
| 18 * [Deprecated. Please use compute.instanceGroupManagers.update method. |
| 19 * replicapoolupdater API will be disabled after December 30th, 2016] Updates |
| 20 * groups of Compute Engine instances. |
| 21 */ |
18 class ReplicapoolupdaterApi { | 22 class ReplicapoolupdaterApi { |
19 /** View and manage your data across Google Cloud Platform services */ | 23 /** View and manage your data across Google Cloud Platform services */ |
20 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf
orm"; | 24 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf
orm"; |
21 | 25 |
22 /** View your data across Google Cloud Platform services */ | 26 /** View your data across Google Cloud Platform services */ |
23 static const CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/clo
ud-platform.read-only"; | 27 static const CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/clo
ud-platform.read-only"; |
24 | 28 |
25 /** View and manage replica pools */ | 29 /** View and manage replica pools */ |
26 static const ReplicapoolScope = "https://www.googleapis.com/auth/replicapool"; | 30 static const ReplicapoolScope = "https://www.googleapis.com/auth/replicapool"; |
27 | 31 |
(...skipping 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1543 } | 1547 } |
1544 if (nextPageToken != null) { | 1548 if (nextPageToken != null) { |
1545 _json["nextPageToken"] = nextPageToken; | 1549 _json["nextPageToken"] = nextPageToken; |
1546 } | 1550 } |
1547 if (selfLink != null) { | 1551 if (selfLink != null) { |
1548 _json["selfLink"] = selfLink; | 1552 _json["selfLink"] = selfLink; |
1549 } | 1553 } |
1550 return _json; | 1554 return _json; |
1551 } | 1555 } |
1552 } | 1556 } |
OLD | NEW |