You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dyn/lifesciences_v2beta.projects.locations.pipelines.html
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,7 @@ <h3>Method Details</h3>
103
103
"actions": [ # The list of actions to execute, in the order they are specified.
104
104
{ # Specifies a single action that runs a Docker container.
105
105
"alwaysRun": True or False, # By default, after an action fails, no further actions are run. This flag indicates that this action must be run even if the pipeline has already failed. This is useful for actions that copy output files off of the VM or for debugging. Note that no actions will be run if image prefetching fails.
106
+
"blockExternalNetwork": True or False, # Prevents the container from accessing the external network.
106
107
"commands": [ # If specified, overrides the `CMD` specified in the container. If the container also has an `ENTRYPOINT` the values are used as entrypoint arguments. Otherwise, they are used as a command and arguments to run inside the container.
107
108
"A String",
108
109
],
@@ -156,15 +157,15 @@ <h3>Method Details</h3>
156
157
"bootDiskSizeGb": 42, # The size of the boot disk, in GB. The boot disk must be large enough to accommodate all of the Docker images from each action in the pipeline at the same time. If not specified, a small but reasonable default value is used.
157
158
"bootImage": "A String", # The host operating system image to use. Currently, only Container-Optimized OS images can be used. The default value is `projects/cos-cloud/global/images/family/cos-stable`, which selects the latest stable release of Container-Optimized OS. This option is provided to allow testing against the beta release of the operating system to ensure that the new version does not interact negatively with production pipelines. To test a pipeline against the beta release of Container-Optimized OS, use the value `projects/cos-cloud/global/images/family/cos-beta`.
158
159
"cpuPlatform": "A String", # The CPU platform to request. An instance based on a newer platform can be allocated, but never one with fewer capabilities. The value of this parameter must be a valid Compute Engine CPU platform name (such as "Intel Skylake"). This parameter is only useful for carefully optimized work loads where the CPU platform has a significant impact. For more information about the effect of this parameter, see https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform.
159
-
"disks": [ # The list of disks to create and attach to the VM.
160
-
{ # Carries information about a disk that can be attached to a VM. See https://cloud.google.com/compute/docs/disks/performance for more information about disk type, size, and performance considerations.
160
+
"disks": [ # The list of disks to create and attach to the VM. Specify either the `volumes[]` field or the `disks[]` field, but not both.
161
+
{ # Carries information about a disk that can be attached to a VM. See https://cloud.google.com/compute/docs/disks/performance for more information about disk type, size, and performance considerations. Specify either `Volume` or `Disk`, but not both.
161
162
"name": "A String", # A user-supplied name for the disk. Used when mounting the disk into actions. The name must contain only upper and lowercase alphanumeric characters and hyphens and cannot start with a hyphen.
162
163
"sizeGb": 42, # The size, in GB, of the disk to attach. If the size is not specified, a default is chosen to ensure reasonable I/O performance. If the disk type is specified as `local-ssd`, multiple local drives are automatically combined to provide the requested size. Note, however, that each physical SSD is 375GB in size, and no more than 8 drives can be attached to a single instance.
163
164
"sourceImage": "A String", # An optional image to put on the disk before attaching it to the VM.
164
165
"type": "A String", # The Compute Engine disk type. If unspecified, `pd-standard` is used.
165
166
},
166
167
],
167
-
"dockerCacheImages": [ # The Compute Engine Disk Images to use as a Docker cache. The disks will be mounted into the Docker folder in a way that the images present in the cache will not need to be pulled. The digests of the cached images must match those of the tags used or the latest version will still be pulled. The root directory of the ext4 image must contain `image` and `overlay2` directories copied from the Docker directory of a VM where the desired Docker images have already been pulled. Only a single image is supported.
168
+
"dockerCacheImages": [ # The Compute Engine Disk Images to use as a Docker cache. The disks will be mounted into the Docker folder in a way that the images present in the cache will not need to be pulled. The digests of the cached images must match those of the tags used or the latest version will still be pulled. The root directory of the ext4 image must contain `image` and `overlay2` directories copied from the Docker directory of a VM where the desired Docker images have already been pulled. Any images pulled that are not cached will be stored on the first cache disk instead of the boot disk. Only a single image is supported.
168
169
"A String",
169
170
],
170
171
"enableStackdriverMonitoring": True or False, # Whether Stackdriver monitoring should be enabled on the VM.
@@ -185,8 +186,8 @@ <h3>Method Details</h3>
185
186
"A String",
186
187
],
187
188
},
188
-
"volumes": [ # The list of disks and other storage to create or attach to the VM.
189
-
{ # Carries information about storage that can be attached to a VM.
189
+
"volumes": [ # The list of disks and other storage to create or attach to the VM. Specify either the `volumes[]` field or the `disks[]` field, but not both.
190
+
{ # Carries information about storage that can be attached to a VM. Specify either `Volume` or `Disk`, but not both.
190
191
"existingDisk": { # Configuration for an existing disk to be attached to the VM. # Configuration for a existing disk.
191
192
"disk": "A String", # If `disk` contains slashes, the Cloud Life Sciences API assumes that it is a complete URL for the disk. If `disk` does not contain slashes, the Cloud Life Sciences API assumes that the disk is a zonal disk and a URL will be generated of the form `zones//disks/`, where `` is the zone in which the instance is allocated. The disk must be ext4 formatted. If all `Mount` references to this disk have the `read_only` flag set to true, the disk will be attached in `read-only` mode and can be shared with other instances. Otherwise, the disk will be available for writing but cannot be shared.
192
193
},
@@ -208,6 +209,7 @@ <h3>Method Details</h3>
208
209
},
209
210
"timeout": "A String", # The maximum amount of time to give the pipeline to complete. This includes the time spent waiting for a worker to be allocated. If the pipeline fails to complete before the timeout, it will be cancelled and the error code will be set to DEADLINE_EXCEEDED. If unspecified, it will default to 7 days.
210
211
},
212
+
"pubSubTopic": "A String", # The name of an existing Pub/Sub topic. The server will publish messages to this topic whenever the status of the operation changes. The Life Sciences Service Agent account must have publisher permissions to the specified topic or notifications will not be sent.
0 commit comments