OLD | NEW |
1 library googleapis_beta.autoscaler.v1beta2; | 1 library googleapis_beta.autoscaler.v1beta2; |
2 | 2 |
3 import "dart:core" as core; | 3 import "dart:core" as core; |
4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
5 import "dart:async" as async; | 5 import "dart:async" as async; |
6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
7 | 7 |
8 import "package:crypto/crypto.dart" as crypto; | 8 import "package:crypto/crypto.dart" as crypto; |
9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
10 import '../src/common_internal.dart' as common_internal; | 10 import '../src/common_internal.dart' as common_internal; |
(...skipping 13 matching lines...) Expand all Loading... |
24 /** View your Google Compute Engine resources */ | 24 /** View your Google Compute Engine resources */ |
25 static const ComputeReadonlyScope = "https://www.googleapis.com/auth/compute.r
eadonly"; | 25 static const ComputeReadonlyScope = "https://www.googleapis.com/auth/compute.r
eadonly"; |
26 | 26 |
27 | 27 |
28 final common_internal.ApiRequester _requester; | 28 final common_internal.ApiRequester _requester; |
29 | 29 |
30 AutoscalersResourceApi get autoscalers => new AutoscalersResourceApi(_requeste
r); | 30 AutoscalersResourceApi get autoscalers => new AutoscalersResourceApi(_requeste
r); |
31 ZoneOperationsResourceApi get zoneOperations => new ZoneOperationsResourceApi(
_requester); | 31 ZoneOperationsResourceApi get zoneOperations => new ZoneOperationsResourceApi(
_requester); |
32 ZonesResourceApi get zones => new ZonesResourceApi(_requester); | 32 ZonesResourceApi get zones => new ZonesResourceApi(_requester); |
33 | 33 |
34 AutoscalerApi(http.Client client) : | 34 AutoscalerApi(http.Client client, {core.String rootUrl: "https://www.googleapi
s.com/", core.String servicePath: "autoscaler/v1beta2/"}) : |
35 _requester = new common_internal.ApiRequester(client, "https://www.googlea
pis.com/", "autoscaler/v1beta2/"); | 35 _requester = new common_internal.ApiRequester(client, rootUrl, servicePath
); |
36 } | 36 } |
37 | 37 |
38 | 38 |
39 /** Not documented yet. */ | 39 /** Not documented yet. */ |
40 class AutoscalersResourceApi { | 40 class AutoscalersResourceApi { |
41 final common_internal.ApiRequester _requester; | 41 final common_internal.ApiRequester _requester; |
42 | 42 |
43 AutoscalersResourceApi(common_internal.ApiRequester client) : | 43 AutoscalersResourceApi(common_internal.ApiRequester client) : |
44 _requester = client; | 44 _requester = client; |
45 | 45 |
(...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1165 | 1165 |
1166 /** Not documented yet. */ | 1166 /** Not documented yet. */ |
1167 core.int httpErrorStatusCode; | 1167 core.int httpErrorStatusCode; |
1168 | 1168 |
1169 /** Not documented yet. */ | 1169 /** Not documented yet. */ |
1170 core.String id; | 1170 core.String id; |
1171 | 1171 |
1172 /** Not documented yet. */ | 1172 /** Not documented yet. */ |
1173 core.String insertTime; | 1173 core.String insertTime; |
1174 | 1174 |
1175 /** Type of the resource. */ | 1175 /** |
| 1176 * [Output Only] Type of the resource. Always kind#operation for Operation |
| 1177 * resources. |
| 1178 */ |
1176 core.String kind; | 1179 core.String kind; |
1177 | 1180 |
1178 /** Not documented yet. */ | 1181 /** Not documented yet. */ |
1179 core.String name; | 1182 core.String name; |
1180 | 1183 |
1181 /** Not documented yet. */ | 1184 /** Not documented yet. */ |
1182 core.String operationType; | 1185 core.String operationType; |
1183 | 1186 |
1184 /** Not documented yet. */ | 1187 /** Not documented yet. */ |
1185 core.int progress; | 1188 core.int progress; |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1360 | 1363 |
1361 | 1364 |
1362 /** Not documented yet. */ | 1365 /** Not documented yet. */ |
1363 class OperationList { | 1366 class OperationList { |
1364 /** Not documented yet. */ | 1367 /** Not documented yet. */ |
1365 core.String id; | 1368 core.String id; |
1366 | 1369 |
1367 /** Not documented yet. */ | 1370 /** Not documented yet. */ |
1368 core.List<Operation> items; | 1371 core.List<Operation> items; |
1369 | 1372 |
1370 /** Type of resource. */ | 1373 /** Type of resource. Always compute#operations for Operations resource. */ |
1371 core.String kind; | 1374 core.String kind; |
1372 | 1375 |
1373 /** Not documented yet. */ | 1376 /** Not documented yet. */ |
1374 core.String nextPageToken; | 1377 core.String nextPageToken; |
1375 | 1378 |
1376 /** Not documented yet. */ | 1379 /** Not documented yet. */ |
1377 core.String selfLink; | 1380 core.String selfLink; |
1378 | 1381 |
1379 | 1382 |
1380 OperationList(); | 1383 OperationList(); |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1628 _json["nextPageToken"] = nextPageToken; | 1631 _json["nextPageToken"] = nextPageToken; |
1629 } | 1632 } |
1630 if (selfLink != null) { | 1633 if (selfLink != null) { |
1631 _json["selfLink"] = selfLink; | 1634 _json["selfLink"] = selfLink; |
1632 } | 1635 } |
1633 return _json; | 1636 return _json; |
1634 } | 1637 } |
1635 } | 1638 } |
1636 | 1639 |
1637 | 1640 |
OLD | NEW |