workflows.proto 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.lifesciences.v2beta;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/longrunning/operations.proto";
  20. import "google/protobuf/duration.proto";
  21. import "google/protobuf/timestamp.proto";
  22. import "google/rpc/code.proto";
  23. option csharp_namespace = "Google.Cloud.LifeSciences.V2Beta";
  24. option go_package = "google.golang.org/genproto/googleapis/cloud/lifesciences/v2beta;lifesciences";
  25. option java_multiple_files = true;
  26. option java_outer_classname = "WorkflowsProto";
  27. option java_package = "com.google.cloud.lifesciences.v2beta";
  28. option objc_class_prefix = "CLSW";
  29. option php_namespace = "Google\\Cloud\\LifeSciences\\V2beta";
  30. option ruby_package = "Google::Cloud::LifeSciences::V2beta";
  31. // A service for running workflows, such as pipelines consisting of Docker
  32. // containers.
  33. service WorkflowsServiceV2Beta {
  34. option (google.api.default_host) = "lifesciences.googleapis.com";
  35. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  36. // Runs a pipeline. The returned Operation's [metadata]
  37. // [google.longrunning.Operation.metadata] field will contain a
  38. // [google.cloud.lifesciences.v2beta.Metadata][google.cloud.lifesciences.v2beta.Metadata] object describing the status
  39. // of the pipeline execution. The
  40. // [response][google.longrunning.Operation.response] field will contain a
  41. // [google.cloud.lifesciences.v2beta.RunPipelineResponse][google.cloud.lifesciences.v2beta.RunPipelineResponse] object if the
  42. // pipeline completes successfully.
  43. //
  44. // **Note:** Before you can use this method, the *Life Sciences Service Agent*
  45. // must have access to your project. This is done automatically when the
  46. // Cloud Life Sciences API is first enabled, but if you delete this permission
  47. // you must disable and re-enable the API to grant the Life Sciences
  48. // Service Agent the required permissions.
  49. // Authorization requires the following [Google
  50. // IAM](https://cloud.google.com/iam/) permission:
  51. //
  52. // * `lifesciences.workflows.run`
  53. rpc RunPipeline(RunPipelineRequest) returns (google.longrunning.Operation) {
  54. option (google.api.http) = {
  55. post: "/v2beta/{parent=projects/*/locations/*}/pipelines:run"
  56. body: "*"
  57. };
  58. option (google.longrunning.operation_info) = {
  59. response_type: "RunPipelineResponse"
  60. metadata_type: "Metadata"
  61. };
  62. }
  63. }
  64. // The arguments to the `RunPipeline` method. The requesting user must have
  65. // the `iam.serviceAccounts.actAs` permission for the Cloud Life Sciences
  66. // service account or the request will fail.
  67. message RunPipelineRequest {
  68. // The project and location that this request should be executed against.
  69. string parent = 4;
  70. // Required. The description of the pipeline to run.
  71. Pipeline pipeline = 1 [(google.api.field_behavior) = REQUIRED];
  72. // User-defined labels to associate with the returned operation. These
  73. // labels are not propagated to any Google Cloud Platform resources used by
  74. // the operation, and can be modified at any time.
  75. //
  76. // To associate labels with resources created while executing the operation,
  77. // see the appropriate resource message (for example, `VirtualMachine`).
  78. map<string, string> labels = 2;
  79. // The name of an existing Pub/Sub topic. The server will publish
  80. // messages to this topic whenever the status of the operation changes.
  81. // The Life Sciences Service Agent account must have publisher permissions to
  82. // the specified topic or notifications will not be sent.
  83. string pub_sub_topic = 3;
  84. }
  85. // The response to the RunPipeline method, returned in the operation's result
  86. // field on success.
  87. message RunPipelineResponse {
  88. }
  89. // Specifies a series of actions to execute, expressed as Docker containers.
  90. message Pipeline {
  91. // The list of actions to execute, in the order they are specified.
  92. repeated Action actions = 1;
  93. // The resources required for execution.
  94. Resources resources = 2;
  95. // The environment to pass into every action. Each action can also specify
  96. // additional environment variables but cannot delete an entry from this map
  97. // (though they can overwrite it with a different value).
  98. map<string, string> environment = 3;
  99. // The encrypted environment to pass into every action. Each action can also
  100. // specify its own encrypted environment.
  101. //
  102. // The secret must decrypt to a JSON-encoded dictionary where key-value pairs
  103. // serve as environment variable names and their values. The decoded
  104. // environment variables can overwrite the values specified by the
  105. // `environment` field.
  106. Secret encrypted_environment = 5;
  107. // The maximum amount of time to give the pipeline to complete. This includes
  108. // the time spent waiting for a worker to be allocated. If the pipeline fails
  109. // to complete before the timeout, it will be cancelled and the error code
  110. // will be set to DEADLINE_EXCEEDED.
  111. //
  112. // If unspecified, it will default to 7 days.
  113. google.protobuf.Duration timeout = 4;
  114. }
  115. // Specifies a single action that runs a Docker container.
  116. message Action {
  117. // An optional name for the container. The container hostname will be set to
  118. // this name, making it useful for inter-container communication. The name
  119. // must contain only upper and lowercase alphanumeric characters and hyphens
  120. // and cannot start with a hyphen.
  121. string container_name = 1;
  122. // Required. The URI to pull the container image from. Note that all images referenced
  123. // by actions in the pipeline are pulled before the first action runs. If
  124. // multiple actions reference the same image, it is only pulled once,
  125. // ensuring that the same image is used for all actions in a single pipeline.
  126. //
  127. // The image URI can be either a complete host and image specification (e.g.,
  128. // quay.io/biocontainers/samtools), a library and image name (e.g.,
  129. // google/cloud-sdk) or a bare image name ('bash') to pull from the default
  130. // library. No schema is required in any of these cases.
  131. //
  132. // If the specified image is not public, the service account specified for
  133. // the Virtual Machine must have access to pull the images from GCR, or
  134. // appropriate credentials must be specified in the
  135. // [google.cloud.lifesciences.v2beta.Action.credentials][google.cloud.lifesciences.v2beta.Action.credentials] field.
  136. string image_uri = 2 [(google.api.field_behavior) = REQUIRED];
  137. // If specified, overrides the `CMD` specified in the container. If the
  138. // container also has an `ENTRYPOINT` the values are used as entrypoint
  139. // arguments. Otherwise, they are used as a command and arguments to run
  140. // inside the container.
  141. repeated string commands = 3;
  142. // If specified, overrides the `ENTRYPOINT` specified in the container.
  143. string entrypoint = 4;
  144. // The environment to pass into the container. This environment is merged
  145. // with values specified in the [google.cloud.lifesciences.v2beta.Pipeline][google.cloud.lifesciences.v2beta.Pipeline]
  146. // message, overwriting any duplicate values.
  147. //
  148. // In addition to the values passed here, a few other values are
  149. // automatically injected into the environment. These cannot be hidden or
  150. // overwritten.
  151. //
  152. // `GOOGLE_PIPELINE_FAILED` will be set to "1" if the pipeline failed
  153. // because an action has exited with a non-zero status (and did not have the
  154. // `IGNORE_EXIT_STATUS` flag set). This can be used to determine if additional
  155. // debug or logging actions should execute.
  156. //
  157. // `GOOGLE_LAST_EXIT_STATUS` will be set to the exit status of the last
  158. // non-background action that executed. This can be used by workflow engine
  159. // authors to determine whether an individual action has succeeded or failed.
  160. map<string, string> environment = 5;
  161. // The encrypted environment to pass into the container. This environment is
  162. // merged with values specified in the
  163. // [google.cloud.lifesciences.v2beta.Pipeline][google.cloud.lifesciences.v2beta.Pipeline] message, overwriting any
  164. // duplicate values.
  165. //
  166. // The secret must decrypt to a JSON-encoded dictionary where key-value pairs
  167. // serve as environment variable names and their values. The decoded
  168. // environment variables can overwrite the values specified by the
  169. // `environment` field.
  170. Secret encrypted_environment = 21;
  171. // An optional identifier for a PID namespace to run the action inside.
  172. // Multiple actions should use the same string to share a namespace. If
  173. // unspecified, a separate isolated namespace is used.
  174. string pid_namespace = 6;
  175. // A map of containers to host port mappings for this container. If the
  176. // container already specifies exposed ports, use the
  177. // `PUBLISH_EXPOSED_PORTS` flag instead.
  178. //
  179. // The host port number must be less than 65536. If it is zero, an unused
  180. // random port is assigned. To determine the resulting port number, consult
  181. // the `ContainerStartedEvent` in the operation metadata.
  182. map<int32, int32> port_mappings = 8;
  183. // A list of mounts to make available to the action.
  184. //
  185. // In addition to the values specified here, every action has a special
  186. // virtual disk mounted under `/google` that contains log files and other
  187. // operational components.
  188. //
  189. // <ul>
  190. // <li><code>/google/logs</code> All logs written during the pipeline
  191. // execution.</li>
  192. // <li><code>/google/logs/output</code> The combined standard output and
  193. // standard error of all actions run as part of the pipeline
  194. // execution.</li>
  195. // <li><code>/google/logs/action/*/stdout</code> The complete contents of
  196. // each individual action's standard output.</li>
  197. // <li><code>/google/logs/action/*/stderr</code> The complete contents of
  198. // each individual action's standard error output.</li>
  199. // </ul>
  200. repeated Mount mounts = 9;
  201. // Labels to associate with the action. This field is provided to assist
  202. // workflow engine authors in identifying actions (for example, to indicate
  203. // what sort of action they perform, such as localization or debugging).
  204. // They are returned in the operation metadata, but are otherwise ignored.
  205. map<string, string> labels = 10;
  206. // If the specified image is hosted on a private registry other than Google
  207. // Container Registry, the credentials required to pull the image must be
  208. // specified here as an encrypted secret.
  209. //
  210. // The secret must decrypt to a JSON-encoded dictionary containing both
  211. // `username` and `password` keys.
  212. Secret credentials = 11;
  213. // The maximum amount of time to give the action to complete. If the action
  214. // fails to complete before the timeout, it will be terminated and the exit
  215. // status will be non-zero. The pipeline will continue or terminate based
  216. // on the rules defined by the `ALWAYS_RUN` and `IGNORE_EXIT_STATUS` flags.
  217. google.protobuf.Duration timeout = 12;
  218. // Normally, a non-zero exit status causes the pipeline to fail. This flag
  219. // allows execution of other actions to continue instead.
  220. bool ignore_exit_status = 13;
  221. // This flag allows an action to continue running in the background while
  222. // executing subsequent actions. This is useful to provide services to
  223. // other actions (or to provide debugging support tools like SSH servers).
  224. bool run_in_background = 14;
  225. // By default, after an action fails, no further actions are run. This flag
  226. // indicates that this action must be run even if the pipeline has already
  227. // failed. This is useful for actions that copy output files off of the VM
  228. // or for debugging. Note that no actions will be run if image prefetching
  229. // fails.
  230. bool always_run = 15;
  231. // Enable access to the FUSE device for this action. Filesystems can then
  232. // be mounted into disks shared with other actions. The other actions do
  233. // not need the `enable_fuse` flag to access the mounted filesystem.
  234. //
  235. // This has the effect of causing the container to be executed with
  236. // `CAP_SYS_ADMIN` and exposes `/dev/fuse` to the container, so use it only
  237. // for containers you trust.
  238. bool enable_fuse = 16;
  239. // Exposes all ports specified by `EXPOSE` statements in the container. To
  240. // discover the host side port numbers, consult the `ACTION_STARTED` event
  241. // in the operation metadata.
  242. bool publish_exposed_ports = 17;
  243. // All container images are typically downloaded before any actions are
  244. // executed. This helps prevent typos in URIs or issues like lack of disk
  245. // space from wasting large amounts of compute resources.
  246. //
  247. // If set, this flag prevents the worker from downloading the image until
  248. // just before the action is executed.
  249. bool disable_image_prefetch = 18;
  250. // A small portion of the container's standard error stream is typically
  251. // captured and returned inside the `ContainerStoppedEvent`. Setting this
  252. // flag disables this functionality.
  253. bool disable_standard_error_capture = 19;
  254. // Prevents the container from accessing the external network.
  255. bool block_external_network = 20;
  256. }
  257. // Holds encrypted information that is only decrypted and stored in RAM
  258. // by the worker VM when running the pipeline.
  259. message Secret {
  260. // The name of the Cloud KMS key that will be used to decrypt the secret
  261. // value. The VM service account must have the required permissions and
  262. // authentication scopes to invoke the `decrypt` method on the specified key.
  263. string key_name = 1;
  264. // The value of the cipherText response from the `encrypt` method. This field
  265. // is intentionally unaudited.
  266. string cipher_text = 2;
  267. }
  268. // Carries information about a particular disk mount inside a container.
  269. message Mount {
  270. // The name of the disk to mount, as specified in the resources section.
  271. string disk = 1;
  272. // The path to mount the disk inside the container.
  273. string path = 2;
  274. // If true, the disk is mounted read-only inside the container.
  275. bool read_only = 3;
  276. }
  277. // The system resources for the pipeline run.
  278. //
  279. // At least one zone or region must be specified or the pipeline run will fail.
  280. message Resources {
  281. // The list of regions allowed for VM allocation. If set, the `zones` field
  282. // must not be set.
  283. repeated string regions = 2;
  284. // The list of zones allowed for VM allocation. If set, the `regions` field
  285. // must not be set.
  286. repeated string zones = 3;
  287. // The virtual machine specification.
  288. VirtualMachine virtual_machine = 4;
  289. }
  290. // Carries information about a Compute Engine VM resource.
  291. message VirtualMachine {
  292. // Required. The machine type of the virtual machine to create. Must be the short name
  293. // of a standard machine type (such as "n1-standard-1") or a custom machine
  294. // type (such as "custom-1-4096", where "1" indicates the number of vCPUs and
  295. // "4096" indicates the memory in MB). See
  296. // [Creating an instance with a custom machine
  297. // type](https://cloud.google.com/compute/docs/instances/creating-instance-with-custom-machine-type#create)
  298. // for more specifications on creating a custom machine type.
  299. string machine_type = 1 [(google.api.field_behavior) = REQUIRED];
  300. // If true, allocate a preemptible VM.
  301. bool preemptible = 2;
  302. // Optional set of labels to apply to the VM and any attached disk resources.
  303. // These labels must adhere to the [name and value
  304. // restrictions](https://cloud.google.com/compute/docs/labeling-resources) on
  305. // VM labels imposed by Compute Engine.
  306. //
  307. // Labels keys with the prefix 'google-' are reserved for use by Google.
  308. //
  309. // Labels applied at creation time to the VM. Applied on a best-effort basis
  310. // to attached disk resources shortly after VM creation.
  311. map<string, string> labels = 3;
  312. // The list of disks to create and attach to the VM.
  313. //
  314. // Specify either the `volumes[]` field or the `disks[]` field, but not both.
  315. repeated Disk disks = 4;
  316. // The VM network configuration.
  317. Network network = 5;
  318. // The list of accelerators to attach to the VM.
  319. repeated Accelerator accelerators = 6;
  320. // The service account to install on the VM. This account does not need
  321. // any permissions other than those required by the pipeline.
  322. ServiceAccount service_account = 7;
  323. // The size of the boot disk, in GB. The boot disk must be large
  324. // enough to accommodate all of the Docker images from each action in the
  325. // pipeline at the same time. If not specified, a small but reasonable
  326. // default value is used.
  327. int32 boot_disk_size_gb = 8;
  328. // The CPU platform to request. An instance based on a newer platform can be
  329. // allocated, but never one with fewer capabilities. The value of this
  330. // parameter must be a valid Compute Engine CPU platform name (such as "Intel
  331. // Skylake"). This parameter is only useful for carefully optimized work
  332. // loads where the CPU platform has a significant impact.
  333. //
  334. // For more information about the effect of this parameter, see
  335. // https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform.
  336. string cpu_platform = 9;
  337. // The host operating system image to use.
  338. //
  339. // Currently, only Container-Optimized OS images can be used.
  340. //
  341. // The default value is `projects/cos-cloud/global/images/family/cos-stable`,
  342. // which selects the latest stable release of Container-Optimized OS.
  343. //
  344. // This option is provided to allow testing against the beta release of the
  345. // operating system to ensure that the new version does not interact
  346. // negatively with production pipelines.
  347. //
  348. // To test a pipeline against the beta release of Container-Optimized OS,
  349. // use the value `projects/cos-cloud/global/images/family/cos-beta`.
  350. string boot_image = 10;
  351. // The NVIDIA driver version to use when attaching an NVIDIA GPU accelerator.
  352. // The version specified here must be compatible with the GPU libraries
  353. // contained in the container being executed, and must be one of the drivers
  354. // hosted in the `nvidia-drivers-us-public` bucket on Google Cloud Storage.
  355. string nvidia_driver_version = 11 [deprecated = true];
  356. // Whether Stackdriver monitoring should be enabled on the VM.
  357. bool enable_stackdriver_monitoring = 12;
  358. // The Compute Engine Disk Images to use as a Docker cache. The disks will be
  359. // mounted into the Docker folder in a way that the images present in the
  360. // cache will not need to be pulled. The digests of the cached images must
  361. // match those of the tags used or the latest version will still be pulled.
  362. // The root directory of the ext4 image must contain `image` and `overlay2`
  363. // directories copied from the Docker directory of a VM where the desired
  364. // Docker images have already been pulled. Any images pulled that are not
  365. // cached will be stored on the first cache disk instead of the boot disk.
  366. // Only a single image is supported.
  367. repeated string docker_cache_images = 13;
  368. // The list of disks and other storage to create or attach to the VM.
  369. //
  370. // Specify either the `volumes[]` field or the `disks[]` field, but not both.
  371. repeated Volume volumes = 14;
  372. // If specified, the VM will only be allocated inside the matching
  373. // reservation. It will fail if the VM parameters don't match the reservation.
  374. string reservation = 15;
  375. }
  376. // Carries information about a Google Cloud service account.
  377. message ServiceAccount {
  378. // Email address of the service account. If not specified, the default
  379. // Compute Engine service account for the project will be used.
  380. string email = 1;
  381. // List of scopes to be enabled for this service account on the VM, in
  382. // addition to the cloud-platform API scope that will be added by default.
  383. repeated string scopes = 2;
  384. }
  385. // Carries information about an accelerator that can be attached to a VM.
  386. message Accelerator {
  387. // The accelerator type string (for example, "nvidia-tesla-k80").
  388. //
  389. // Only NVIDIA GPU accelerators are currently supported. If an NVIDIA GPU is
  390. // attached, the required runtime libraries will be made available to all
  391. // containers under `/usr/local/nvidia`. The driver version to install must
  392. // be specified using the NVIDIA driver version parameter on the virtual
  393. // machine specification. Note that attaching a GPU increases the worker VM
  394. // startup time by a few minutes.
  395. string type = 1;
  396. // How many accelerators of this type to attach.
  397. int64 count = 2;
  398. }
  399. // VM networking options.
  400. message Network {
  401. // The network name to attach the VM's network interface to. The value will
  402. // be prefixed with `global/networks/` unless it contains a `/`, in which
  403. // case it is assumed to be a fully specified network resource URL.
  404. //
  405. // If unspecified, the global default network is used.
  406. string network = 1;
  407. // If set to true, do not attach a public IP address to the VM. Note that
  408. // without a public IP address, additional configuration is required to
  409. // allow the VM to access Google services.
  410. //
  411. // See https://cloud.google.com/vpc/docs/configure-private-google-access
  412. // for more information.
  413. bool use_private_address = 2;
  414. // If the specified network is configured for custom subnet creation, the
  415. // name of the subnetwork to attach the instance to must be specified here.
  416. //
  417. // The value is prefixed with `regions/*/subnetworks/` unless it contains a
  418. // `/`, in which case it is assumed to be a fully specified subnetwork
  419. // resource URL.
  420. //
  421. // If the `*` character appears in the value, it is replaced with the region
  422. // that the virtual machine has been allocated in.
  423. string subnetwork = 3;
  424. }
  425. // Carries information about a disk that can be attached to a VM.
  426. //
  427. // See https://cloud.google.com/compute/docs/disks/performance for more
  428. // information about disk type, size, and performance considerations.
  429. //
  430. // Specify either [`Volume`][google.cloud.lifesciences.v2beta.Volume] or
  431. // [`Disk`][google.cloud.lifesciences.v2beta.Disk], but not both.
  432. message Disk {
  433. // A user-supplied name for the disk. Used when mounting the disk into
  434. // actions. The name must contain only upper and lowercase alphanumeric
  435. // characters and hyphens and cannot start with a hyphen.
  436. string name = 1;
  437. // The size, in GB, of the disk to attach. If the size is not
  438. // specified, a default is chosen to ensure reasonable I/O performance.
  439. //
  440. // If the disk type is specified as `local-ssd`, multiple local drives are
  441. // automatically combined to provide the requested size. Note, however, that
  442. // each physical SSD is 375GB in size, and no more than 8 drives can be
  443. // attached to a single instance.
  444. int32 size_gb = 2;
  445. // The Compute Engine disk type. If unspecified, `pd-standard` is used.
  446. string type = 3;
  447. // An optional image to put on the disk before attaching it to the VM.
  448. string source_image = 4;
  449. }
  450. // Carries information about storage that can be attached to a VM.
  451. //
  452. // Specify either [`Volume`][google.cloud.lifesciences.v2beta.Volume] or
  453. // [`Disk`][google.cloud.lifesciences.v2beta.Disk], but not both.
  454. message Volume {
  455. // A user-supplied name for the volume. Used when mounting the volume into
  456. // [`Actions`][google.cloud.lifesciences.v2beta.Action]. The name must contain
  457. // only upper and lowercase alphanumeric characters and hyphens and cannot
  458. // start with a hyphen.
  459. string volume = 1;
  460. oneof storage {
  461. // Configuration for a persistent disk.
  462. PersistentDisk persistent_disk = 2;
  463. // Configuration for a existing disk.
  464. ExistingDisk existing_disk = 3;
  465. // Configuration for an NFS mount.
  466. NFSMount nfs_mount = 4;
  467. }
  468. }
  469. // Configuration for a persistent disk to be attached to the VM.
  470. //
  471. // See https://cloud.google.com/compute/docs/disks/performance for more
  472. // information about disk type, size, and performance considerations.
  473. message PersistentDisk {
  474. // The size, in GB, of the disk to attach. If the size is not
  475. // specified, a default is chosen to ensure reasonable I/O performance.
  476. //
  477. // If the disk type is specified as `local-ssd`, multiple local drives are
  478. // automatically combined to provide the requested size. Note, however, that
  479. // each physical SSD is 375GB in size, and no more than 8 drives can be
  480. // attached to a single instance.
  481. int32 size_gb = 1;
  482. // The Compute Engine disk type. If unspecified, `pd-standard` is used.
  483. string type = 2;
  484. // An image to put on the disk before attaching it to the VM.
  485. string source_image = 3;
  486. }
  487. // Configuration for an existing disk to be attached to the VM.
  488. message ExistingDisk {
  489. // If `disk` contains slashes, the Cloud Life Sciences API assumes that it is
  490. // a complete URL for the disk. If `disk` does not contain slashes, the Cloud
  491. // Life Sciences API assumes that the disk is a zonal disk and a URL will be
  492. // generated of the form `zones/<zone>/disks/<disk>`, where `<zone>` is the
  493. // zone in which the instance is allocated. The disk must be ext4 formatted.
  494. //
  495. // If all `Mount` references to this disk have the `read_only` flag set to
  496. // true, the disk will be attached in `read-only` mode and can be shared with
  497. // other instances. Otherwise, the disk will be available for writing but
  498. // cannot be shared.
  499. string disk = 1;
  500. }
  501. // Configuration for an `NFSMount` to be attached to the VM.
  502. message NFSMount {
  503. // A target NFS mount. The target must be specified as `address:/mount".
  504. string target = 1;
  505. }
  506. // Carries information about the pipeline execution that is returned
  507. // in the long running operation's metadata field.
  508. message Metadata {
  509. // The pipeline this operation represents.
  510. Pipeline pipeline = 1;
  511. // The user-defined labels associated with this operation.
  512. map<string, string> labels = 2;
  513. // The list of events that have happened so far during the execution of this
  514. // operation.
  515. repeated Event events = 3;
  516. // The time at which the operation was created by the API.
  517. google.protobuf.Timestamp create_time = 4;
  518. // The first time at which resources were allocated to execute the pipeline.
  519. google.protobuf.Timestamp start_time = 5;
  520. // The time at which execution was completed and resources were cleaned up.
  521. google.protobuf.Timestamp end_time = 6;
  522. // The name of the Cloud Pub/Sub topic where notifications of operation status
  523. // changes are sent.
  524. string pub_sub_topic = 7;
  525. }
  526. // Carries information about events that occur during pipeline execution.
  527. message Event {
  528. // The time at which the event occurred.
  529. google.protobuf.Timestamp timestamp = 1;
  530. // A human-readable description of the event. Note that these strings can
  531. // change at any time without notice. Any application logic must use the
  532. // information in the `details` field.
  533. string description = 2;
  534. // Machine-readable details about the event.
  535. oneof details {
  536. // See [google.cloud.lifesciences.v2beta.DelayedEvent][google.cloud.lifesciences.v2beta.DelayedEvent].
  537. DelayedEvent delayed = 17;
  538. // See [google.cloud.lifesciences.v2beta.WorkerAssignedEvent][google.cloud.lifesciences.v2beta.WorkerAssignedEvent].
  539. WorkerAssignedEvent worker_assigned = 18;
  540. // See [google.cloud.lifesciences.v2beta.WorkerReleasedEvent][google.cloud.lifesciences.v2beta.WorkerReleasedEvent].
  541. WorkerReleasedEvent worker_released = 19;
  542. // See [google.cloud.lifesciences.v2beta.PullStartedEvent][google.cloud.lifesciences.v2beta.PullStartedEvent].
  543. PullStartedEvent pull_started = 20;
  544. // See [google.cloud.lifesciences.v2beta.PullStoppedEvent][google.cloud.lifesciences.v2beta.PullStoppedEvent].
  545. PullStoppedEvent pull_stopped = 21;
  546. // See [google.cloud.lifesciences.v2beta.ContainerStartedEvent][google.cloud.lifesciences.v2beta.ContainerStartedEvent].
  547. ContainerStartedEvent container_started = 22;
  548. // See [google.cloud.lifesciences.v2beta.ContainerStoppedEvent][google.cloud.lifesciences.v2beta.ContainerStoppedEvent].
  549. ContainerStoppedEvent container_stopped = 23;
  550. // See [google.cloud.lifesciences.v2beta.ContainerKilledEvent][google.cloud.lifesciences.v2beta.ContainerKilledEvent].
  551. ContainerKilledEvent container_killed = 24;
  552. // See [google.cloud.lifesciences.v2beta.UnexpectedExitStatusEvent][google.cloud.lifesciences.v2beta.UnexpectedExitStatusEvent].
  553. UnexpectedExitStatusEvent unexpected_exit_status = 25;
  554. // See [google.cloud.lifesciences.v2beta.FailedEvent][google.cloud.lifesciences.v2beta.FailedEvent].
  555. FailedEvent failed = 26;
  556. }
  557. }
  558. // An event generated whenever a resource limitation or transient error
  559. // delays execution of a pipeline that was otherwise ready to run.
  560. message DelayedEvent {
  561. // A textual description of the cause of the delay. The string can change
  562. // without notice because it is often generated by another service (such as
  563. // Compute Engine).
  564. string cause = 1;
  565. // If the delay was caused by a resource shortage, this field lists the
  566. // Compute Engine metrics that are preventing this operation from running
  567. // (for example, `CPUS` or `INSTANCES`). If the particular metric is not
  568. // known, a single `UNKNOWN` metric will be present.
  569. repeated string metrics = 2;
  570. }
  571. // An event generated after a worker VM has been assigned to run the
  572. // pipeline.
  573. message WorkerAssignedEvent {
  574. // The zone the worker is running in.
  575. string zone = 1;
  576. // The worker's instance name.
  577. string instance = 2;
  578. // The machine type that was assigned for the worker.
  579. string machine_type = 3;
  580. }
  581. // An event generated when the worker VM that was assigned to the pipeline
  582. // has been released (deleted).
  583. message WorkerReleasedEvent {
  584. // The zone the worker was running in.
  585. string zone = 1;
  586. // The worker's instance name.
  587. string instance = 2;
  588. }
  589. // An event generated when the worker starts pulling an image.
  590. message PullStartedEvent {
  591. // The URI of the image that was pulled.
  592. string image_uri = 1;
  593. }
  594. // An event generated when the worker stops pulling an image.
  595. message PullStoppedEvent {
  596. // The URI of the image that was pulled.
  597. string image_uri = 1;
  598. }
  599. // An event generated when a container starts.
  600. message ContainerStartedEvent {
  601. // The numeric ID of the action that started this container.
  602. int32 action_id = 1;
  603. // The container-to-host port mappings installed for this container. This
  604. // set will contain any ports exposed using the `PUBLISH_EXPOSED_PORTS` flag
  605. // as well as any specified in the `Action` definition.
  606. map<int32, int32> port_mappings = 2;
  607. // The public IP address that can be used to connect to the container. This
  608. // field is only populated when at least one port mapping is present. If the
  609. // instance was created with a private address, this field will be empty even
  610. // if port mappings exist.
  611. string ip_address = 3;
  612. }
  613. // An event generated when a container exits.
  614. message ContainerStoppedEvent {
  615. // The numeric ID of the action that started this container.
  616. int32 action_id = 1;
  617. // The exit status of the container.
  618. int32 exit_status = 2;
  619. // The tail end of any content written to standard error by the container.
  620. // If the content emits large amounts of debugging noise or contains
  621. // sensitive information, you can prevent the content from being printed by
  622. // setting the `DISABLE_STANDARD_ERROR_CAPTURE` flag.
  623. //
  624. // Note that only a small amount of the end of the stream is captured here.
  625. // The entire stream is stored in the `/google/logs` directory mounted into
  626. // each action, and can be copied off the machine as described elsewhere.
  627. string stderr = 3;
  628. }
  629. // An event generated when the execution of a container results in a
  630. // non-zero exit status that was not otherwise ignored. Execution will
  631. // continue, but only actions that are flagged as `ALWAYS_RUN` will be
  632. // executed. Other actions will be skipped.
  633. message UnexpectedExitStatusEvent {
  634. // The numeric ID of the action that started the container.
  635. int32 action_id = 1;
  636. // The exit status of the container.
  637. int32 exit_status = 2;
  638. }
  639. // An event generated when a container is forcibly terminated by the
  640. // worker. Currently, this only occurs when the container outlives the
  641. // timeout specified by the user.
  642. message ContainerKilledEvent {
  643. // The numeric ID of the action that started the container.
  644. int32 action_id = 1;
  645. }
  646. // An event generated when the execution of a pipeline has failed. Note
  647. // that other events can continue to occur after this event.
  648. message FailedEvent {
  649. // The Google standard error code that best describes this failure.
  650. google.rpc.Code code = 1;
  651. // The human-readable description of the cause of the failure.
  652. string cause = 2;
  653. }