docs: update docs (#916)
* fix: re-run script
* test: fix noxfile
diff --git a/docs/dyn/genomics_v2alpha1.pipelines.html b/docs/dyn/genomics_v2alpha1.pipelines.html
index 575f4ed..ead12ca 100644
--- a/docs/dyn/genomics_v2alpha1.pipelines.html
+++ b/docs/dyn/genomics_v2alpha1.pipelines.html
@@ -121,10 +121,6 @@
# fails to complete before the timeout, it will be terminated and the exit
# status will be non-zero. The pipeline will continue or terminate based
# on the rules defined by the `ALWAYS_RUN` and `IGNORE_EXIT_STATUS` flags.
- "name": "A String", # An optional name for the container. The container hostname will be set to
- # this name, making it useful for inter-container communication. The name
- # must contain only upper and lowercase alphanumeric characters and hypens
- # and cannot start with a hyphen.
"credentials": { # Holds encrypted information that is only decrypted and stored in RAM # If the specified image is hosted on a private registry other than Google
# Container Registry, the credentials required to pull the image must be
# specified here as an encrypted secret.
@@ -138,6 +134,10 @@
"cipherText": "A String", # The value of the cipherText response from the `encrypt` method. This field
# is intentionally unaudited.
},
+ "name": "A String", # An optional name for the container. The container hostname will be set to
+ # this name, making it useful for inter-container communication. The name
+ # must contain only upper and lowercase alphanumeric characters and hypens
+ # and cannot start with a hyphen.
"imageUri": "A String", # Required. The URI to pull the container image from. Note that all images referenced
# by actions in the pipeline are pulled before the first action runs. If
# multiple actions reference the same image, it is only pulled once,
@@ -161,12 +161,6 @@
"flags": [ # The set of flags to apply to this action.
"A String",
],
- "labels": { # Labels to associate with the action. This field is provided to assist
- # workflow engine authors in identifying actions (for example, to indicate
- # what sort of action they perform, such as localization or debugging).
- # They are returned in the operation metadata, but are otherwise ignored.
- "a_key": "A String",
- },
"portMappings": { # A map of containers to host port mappings for this container. If the
# container already specifies exposed ports, use the
# `PUBLISH_EXPOSED_PORTS` flag instead.
@@ -194,6 +188,12 @@
# authors to determine whether an individual action has succeeded or failed.
"a_key": "A String",
},
+ "labels": { # Labels to associate with the action. This field is provided to assist
+ # workflow engine authors in identifying actions (for example, to indicate
+ # what sort of action they perform, such as localization or debugging).
+ # They are returned in the operation metadata, but are otherwise ignored.
+ "a_key": "A String",
+ },
"entrypoint": "A String", # If specified, overrides the `ENTRYPOINT` specified in the container.
"pidNamespace": "A String", # An optional identifier for a PID namespace to run the action inside.
# Multiple actions should use the same string to share a namespace. If
@@ -247,16 +247,40 @@
"A String",
],
"virtualMachine": { # Carries information about a Compute Engine VM resource. # The virtual machine specification.
+ "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.
+ "accelerators": [ # The list of accelerators to attach to the VM.
+ { # Carries information about an accelerator that can be attached to a VM.
+ "count": "A String", # How many accelerators of this type to attach.
+ "type": "A String", # The accelerator type string (for example, "nvidia-tesla-k80").
+ #
+ # Only NVIDIA GPU accelerators are currently supported. If an NVIDIA GPU is
+ # attached, the required runtime libraries will be made available to all
+ # containers under `/usr/local/nvidia`. The driver version to install must
+ # be specified using the NVIDIA driver version parameter on the virtual
+ # machine specification. Note that attaching a GPU increases the worker VM
+ # startup time by a few minutes.
+ },
+ ],
+ "machineType": "A String", # Required. The machine type of the virtual machine to create. Must be the short name
+ # of a standard machine type (such as "n1-standard-1") or a custom machine
+ # type (such as "custom-1-4096", where "1" indicates the number of vCPUs and
+ # "4096" indicates the memory in MB). See
+ # [Creating an instance with a custom machine
+ # type](https://cloud.google.com/compute/docs/instances/creating-instance-with-custom-machine-type#create)
+ # for more specifications on creating a custom machine type.
"preemptible": True or False, # If true, allocate a preemptible VM.
"disks": [ # The list of disks to create and attach to the VM.
{ # 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.
- "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 hypens and cannot start with a hyphen.
- "type": "A String", # The Compute Engine disk type. If unspecified, `pd-standard` is used.
"sourceImage": "A String", # An optional image to put on the disk before attaching it to the VM.
"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.
@@ -265,6 +289,10 @@
# 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.
+ "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 hypens and cannot start with a hyphen.
+ "type": "A String", # The Compute Engine disk type. If unspecified, `pd-standard` is used.
},
],
"bootImage": "A String", # The host operating system image to use.
@@ -331,34 +359,6 @@
"a_key": "A String",
},
"enableStackdriverMonitoring": True or False, # Whether Stackdriver monitoring should be enabled on the VM.
- "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.
- "accelerators": [ # The list of accelerators to attach to the VM.
- { # Carries information about an accelerator that can be attached to a VM.
- "count": "A String", # How many accelerators of this type to attach.
- "type": "A String", # The accelerator type string (for example, "nvidia-tesla-k80").
- #
- # Only NVIDIA GPU accelerators are currently supported. If an NVIDIA GPU is
- # attached, the required runtime libraries will be made available to all
- # containers under `/usr/local/nvidia`. The driver version to install must
- # be specified using the NVIDIA driver version parameter on the virtual
- # machine specification. Note that attaching a GPU increases the worker VM
- # startup time by a few minutes.
- },
- ],
- "machineType": "A String", # Required. The machine type of the virtual machine to create. Must be the short name
- # of a standard machine type (such as "n1-standard-1") or a custom machine
- # type (such as "custom-1-4096", where "1" indicates the number of vCPUs and
- # "4096" indicates the memory in MB). See
- # [Creating an instance with a custom machine
- # type](https://cloud.google.com/compute/docs/instances/creating-instance-with-custom-machine-type#create)
- # for more specifications on creating a custom machine type.
},
},
},
@@ -374,6 +374,12 @@
{ # This resource represents a long-running operation that is the result of a
# network API call.
+ "metadata": { # An OperationMetadata or Metadata object. This will always be returned with the Operation.
+ "a_key": "", # Properties of the object. Contains field @type with type URL.
+ },
+ "done": True or False, # If the value is `false`, it means the operation is still in progress.
+ # If `true`, the operation is completed, and either `error` or `response` is
+ # available.
"response": { # An Empty object.
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
@@ -396,12 +402,6 @@
},
],
},
- "metadata": { # An OperationMetadata or Metadata object. This will always be returned with the Operation.
- "a_key": "", # Properties of the object. Contains field @type with type URL.
- },
- "done": True or False, # If the value is `false`, it means the operation is still in progress.
- # If `true`, the operation is completed, and either `error` or `response` is
- # available.
}</pre>
</div>