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

Side by Side Diff: generated/googleapis/lib/clouddebugger/v2.dart

Issue 2281923002: Api-roll 41: 2016-08-26 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 4 years, 3 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
« no previous file with comments | « generated/googleapis/lib/cloudbuild/v1.dart ('k') | generated/googleapis/lib/compute/v1.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.clouddebugger.v2; 3 library googleapis.clouddebugger.v2;
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 clouddebugger/v2'; 15 const core.String USER_AGENT = 'dart-api-client clouddebugger/v2';
16 16
17 /** 17 /**
18 * Examines the call stack and variables of a running application without 18 * Examines the call stack and variables of a running application without
19 * stopping or slowing it down. 19 * stopping or slowing it down.
20 */ 20 */
21 class ClouddebuggerApi { 21 class ClouddebuggerApi {
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 /** Manage cloud debugger */ 25 /** Manage cloud debugger */
26 static const CloudDebuggerScope = "https://www.googleapis.com/auth/cloud_debug ger"; 26 static const CloudDebuggerScope = "https://www.googleapis.com/auth/cloud_debug ger";
27 27
28 /** Manage active breakpoints in cloud debugger */
29 static const CloudDebugletcontrollerScope = "https://www.googleapis.com/auth/c loud_debugletcontroller";
30
31 28
32 final commons.ApiRequester _requester; 29 final commons.ApiRequester _requester;
33 30
34 ControllerResourceApi get controller => new ControllerResourceApi(_requester); 31 ControllerResourceApi get controller => new ControllerResourceApi(_requester);
35 DebuggerResourceApi get debugger => new DebuggerResourceApi(_requester); 32 DebuggerResourceApi get debugger => new DebuggerResourceApi(_requester);
36 33
37 ClouddebuggerApi(http.Client client, {core.String rootUrl: "https://clouddebug ger.googleapis.com/", core.String servicePath: ""}) : 34 ClouddebuggerApi(http.Client client, {core.String rootUrl: "https://clouddebug ger.googleapis.com/", core.String servicePath: ""}) :
38 _requester = new commons.ApiRequester(client, rootUrl, servicePath, USER_A GENT); 35 _requester = new commons.ApiRequester(client, rootUrl, servicePath, USER_A GENT);
39 } 36 }
40 37
(...skipping 1803 matching lines...) Expand 10 before | Expand all | Expand 10 after
1844 } 1841 }
1845 if (value != null) { 1842 if (value != null) {
1846 _json["value"] = value; 1843 _json["value"] = value;
1847 } 1844 }
1848 if (varTableIndex != null) { 1845 if (varTableIndex != null) {
1849 _json["varTableIndex"] = varTableIndex; 1846 _json["varTableIndex"] = varTableIndex;
1850 } 1847 }
1851 return _json; 1848 return _json;
1852 } 1849 }
1853 } 1850 }
OLDNEW
« no previous file with comments | « generated/googleapis/lib/cloudbuild/v1.dart ('k') | generated/googleapis/lib/compute/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698