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

Unified Diff: generated/googleapis/lib/cloudbuild/v1.dart

Issue 2649893002: Api-roll 44: 2017-01-23 (Closed)
Patch Set: Created 3 years, 11 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/classroom/v1.dart ('k') | generated/googleapis/lib/clouddebugger/v2.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/cloudbuild/v1.dart
diff --git a/generated/googleapis/lib/cloudbuild/v1.dart b/generated/googleapis/lib/cloudbuild/v1.dart
index b90c3e00ef6952da8218350a7c4f89b593d10255..434598589b1e34045c561ee17437193daede2c17 100644
--- a/generated/googleapis/lib/cloudbuild/v1.dart
+++ b/generated/googleapis/lib/cloudbuild/v1.dart
@@ -963,6 +963,11 @@ class BuildStep {
*/
core.String dir;
/**
+ * Optional entrypoint to be used instead of the build step image's default
+ * If unset, the image's default will be used.
+ */
+ core.String entrypoint;
+ /**
* A list of environment variable definitions to be used when running a step.
*
* The elements are of the form "KEY=VALUE" for the environment variable "KEY"
@@ -1011,6 +1016,9 @@ class BuildStep {
if (_json.containsKey("dir")) {
dir = _json["dir"];
}
+ if (_json.containsKey("entrypoint")) {
+ entrypoint = _json["entrypoint"];
+ }
if (_json.containsKey("env")) {
env = _json["env"];
}
@@ -1033,6 +1041,9 @@ class BuildStep {
if (dir != null) {
_json["dir"] = dir;
}
+ if (entrypoint != null) {
+ _json["entrypoint"] = entrypoint;
+ }
if (env != null) {
_json["env"] = env;
}
« no previous file with comments | « generated/googleapis/lib/classroom/v1.dart ('k') | generated/googleapis/lib/clouddebugger/v2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698