| 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;
|
| }
|
|
|