Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: generated/googleapis_beta/lib/replicapool/v1beta2.dart

Issue 1268013003: Api-roll 21: 2015-08-04 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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.replicapool.v1beta2; 3 library googleapis_beta.replicapool.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:crypto/crypto.dart' as crypto; 10 import 'package:crypto/crypto.dart' as crypto;
11 import 'package:http/http.dart' as http; 11 import 'package:http/http.dart' as http;
12 12
13 export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show 13 export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show
14 ApiRequestError, DetailedApiRequestError; 14 ApiRequestError, DetailedApiRequestError;
15 15
16 const core.String USER_AGENT = 'dart-api-client replicapool/v1beta2'; 16 const core.String USER_AGENT = 'dart-api-client replicapool/v1beta2';
17 17
18 /** 18 /**
19 * The Google Compute Engine Instance Group Manager API provides groups of 19 * The Google Compute Engine Instance Group Manager API provides groups of
20 * homogenous Compute Engine Instances. 20 * homogenous Compute Engine Instances.
21 */ 21 */
22 class ReplicapoolApi { 22 class ReplicapoolApi {
23 /** View and manage your data across Google Cloud Platform services */ 23 /** View and manage your data across Google Cloud Platform services */
24 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf orm"; 24 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf orm";
25 25
26 /**
27 * MESSAGE UNDER CONSTRUCTION View your data across Google Cloud Platform
28 * services
29 */
30 static const CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/clo ud-platform.read-only";
31
26 /** View and manage your Google Compute Engine resources */ 32 /** View and manage your Google Compute Engine resources */
27 static const ComputeScope = "https://www.googleapis.com/auth/compute"; 33 static const ComputeScope = "https://www.googleapis.com/auth/compute";
28 34
29 /** View your Google Compute Engine resources */ 35 /** View your Google Compute Engine resources */
30 static const ComputeReadonlyScope = "https://www.googleapis.com/auth/compute.r eadonly"; 36 static const ComputeReadonlyScope = "https://www.googleapis.com/auth/compute.r eadonly";
31 37
32 38
33 final commons.ApiRequester _requester; 39 final commons.ApiRequester _requester;
34 40
35 InstanceGroupManagersResourceApi get instanceGroupManagers => new InstanceGrou pManagersResourceApi(_requester); 41 InstanceGroupManagersResourceApi get instanceGroupManagers => new InstanceGrou pManagersResourceApi(_requester);
(...skipping 1584 matching lines...) Expand 10 before | Expand all | Expand 10 after
1620 var _json = new core.Map(); 1626 var _json = new core.Map();
1621 if (actionType != null) { 1627 if (actionType != null) {
1622 _json["actionType"] = actionType; 1628 _json["actionType"] = actionType;
1623 } 1629 }
1624 if (healthCheck != null) { 1630 if (healthCheck != null) {
1625 _json["healthCheck"] = healthCheck; 1631 _json["healthCheck"] = healthCheck;
1626 } 1632 }
1627 return _json; 1633 return _json;
1628 } 1634 }
1629 } 1635 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698