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

Unified Diff: generated/googleapis/lib/clouddebugger/v2.dart

Issue 1296863002: Api-roll 22: 2015-08-17 (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis/lib/cloudbilling/v1.dart ('k') | generated/googleapis/lib/compute/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/clouddebugger/v2.dart
diff --git a/generated/googleapis/lib/clouddebugger/v2.dart b/generated/googleapis/lib/clouddebugger/v2.dart
index a06112f20a969af95228d25f30f670ed4d2a2f7d..10501232de8efd4fddc3df460d23d8087a04f54e 100644
--- a/generated/googleapis/lib/clouddebugger/v2.dart
+++ b/generated/googleapis/lib/clouddebugger/v2.dart
@@ -14,6 +14,10 @@ export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show
const core.String USER_AGENT = 'dart-api-client clouddebugger/v2';
+/**
+ * Lets you examine the stack and variables of your running application without
+ * stopping or slowing it down.
+ */
class ClouddebuggerApi {
/** View and manage your data across Google Cloud Platform services */
static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform";
@@ -1072,6 +1076,39 @@ class GetBreakpointResponse {
}
}
+/**
+ * A GitSourceContext denotes a particular revision in a third party Git
+ * repository (e.g. GitHub).
+ */
+class GitSourceContext {
+ /** Git commit hash. required. */
+ core.String revisionId;
+ /** Git repository URL. */
+ core.String url;
+
+ GitSourceContext();
+
+ GitSourceContext.fromJson(core.Map _json) {
+ if (_json.containsKey("revisionId")) {
+ revisionId = _json["revisionId"];
+ }
+ if (_json.containsKey("url")) {
+ url = _json["url"];
+ }
+ }
+
+ core.Map toJson() {
+ var _json = new core.Map();
+ if (revisionId != null) {
+ _json["revisionId"] = revisionId;
+ }
+ if (url != null) {
+ _json["url"] = url;
+ }
+ return _json;
+ }
+}
+
/** The response of listing active breakpoints. */
class ListActiveBreakpointsResponse {
/**
@@ -1320,6 +1357,8 @@ class SourceContext {
CloudWorkspaceSourceContext cloudWorkspace;
/** A SourceContext referring to a Gerrit project. */
GerritSourceContext gerrit;
+ /** A SourceContext referring to any third party Git repo (e.g. GitHub). */
+ GitSourceContext git;
SourceContext();
@@ -1333,6 +1372,9 @@ class SourceContext {
if (_json.containsKey("gerrit")) {
gerrit = new GerritSourceContext.fromJson(_json["gerrit"]);
}
+ if (_json.containsKey("git")) {
+ git = new GitSourceContext.fromJson(_json["git"]);
+ }
}
core.Map toJson() {
@@ -1346,6 +1388,9 @@ class SourceContext {
if (gerrit != null) {
_json["gerrit"] = (gerrit).toJson();
}
+ if (git != null) {
+ _json["git"] = (git).toJson();
+ }
return _json;
}
}
« no previous file with comments | « generated/googleapis/lib/cloudbilling/v1.dart ('k') | generated/googleapis/lib/compute/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698