Skip to content

Commit c328faf

Browse files
chore(lifesciences): update the api
#### lifesciences:v2beta The following keys were added: - schemas.Action.properties.blockExternalNetwork (Total Keys: 1) - schemas.Metadata.properties.pubSubTopic (Total Keys: 1) - schemas.RunPipelineRequest.properties.pubSubTopic (Total Keys: 1)
1 parent 520f9ec commit c328faf

File tree

2 files changed

+1148
-1134
lines changed

2 files changed

+1148
-1134
lines changed

docs/dyn/lifesciences_v2beta.projects.locations.pipelines.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ <h3>Method Details</h3>
103103
&quot;actions&quot;: [ # The list of actions to execute, in the order they are specified.
104104
{ # Specifies a single action that runs a Docker container.
105105
&quot;alwaysRun&quot;: 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+
&quot;blockExternalNetwork&quot;: True or False, # Prevents the container from accessing the external network.
106107
&quot;commands&quot;: [ # 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.
107108
&quot;A String&quot;,
108109
],
@@ -156,15 +157,15 @@ <h3>Method Details</h3>
156157
&quot;bootDiskSizeGb&quot;: 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.
157158
&quot;bootImage&quot;: &quot;A String&quot;, # 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`.
158159
&quot;cpuPlatform&quot;: &quot;A String&quot;, # 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 &quot;Intel Skylake&quot;). 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-
&quot;disks&quot;: [ # 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+
&quot;disks&quot;: [ # 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.
161162
&quot;name&quot;: &quot;A String&quot;, # 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.
162163
&quot;sizeGb&quot;: 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.
163164
&quot;sourceImage&quot;: &quot;A String&quot;, # An optional image to put on the disk before attaching it to the VM.
164165
&quot;type&quot;: &quot;A String&quot;, # The Compute Engine disk type. If unspecified, `pd-standard` is used.
165166
},
166167
],
167-
&quot;dockerCacheImages&quot;: [ # 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+
&quot;dockerCacheImages&quot;: [ # 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.
168169
&quot;A String&quot;,
169170
],
170171
&quot;enableStackdriverMonitoring&quot;: True or False, # Whether Stackdriver monitoring should be enabled on the VM.
@@ -185,8 +186,8 @@ <h3>Method Details</h3>
185186
&quot;A String&quot;,
186187
],
187188
},
188-
&quot;volumes&quot;: [ # 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+
&quot;volumes&quot;: [ # 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.
190191
&quot;existingDisk&quot;: { # Configuration for an existing disk to be attached to the VM. # Configuration for a existing disk.
191192
&quot;disk&quot;: &quot;A String&quot;, # 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.
192193
},
@@ -208,6 +209,7 @@ <h3>Method Details</h3>
208209
},
209210
&quot;timeout&quot;: &quot;A String&quot;, # 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.
210211
},
212+
&quot;pubSubTopic&quot;: &quot;A String&quot;, # 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.
211213
}
212214

213215
x__xgafv: string, V1 error format.

0 commit comments

Comments
 (0)