generated/google/apis/genomics_v2alpha1/classes.rb in google-api-client-0.30.8 vs generated/google/apis/genomics_v2alpha1/classes.rb in google-api-client-0.30.9

- old
+ new

@@ -75,12 +75,12 @@ # Corresponds to the JSON property `entrypoint` # @return [String] attr_accessor :entrypoint # The environment to pass into the container. This environment is merged - # with any values specified in the `Pipeline` message. These values - # overwrite any in the `Pipeline` message. + # with values specified in the google.genomics.v2alpha1.Pipeline + # message, overwriting any duplicate values. # In addition to the values passed here, a few other values are # automatically injected into the environment. These cannot be hidden or # overwritten. # `GOOGLE_PIPELINE_FAILED` will be set to "1" if the pipeline failed # because an action has exited with a non-zero status (and did not have the @@ -96,14 +96,23 @@ # The set of flags to apply to this action. # Corresponds to the JSON property `flags` # @return [Array<String>] attr_accessor :flags - # The URI to pull the container image from. Note that all images referenced + # 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, # ensuring that the same image is used for all actions in a single pipeline. + # The image URI can be either a complete host and image specification (e.g., + # quay.io/biocontainers/samtools), a library and image name (e.g., + # google/cloud-sdk) or a bare image name ('bash') to pull from the default + # library. No schema is required in any of these cases. + # If the specified image is not public, the service account specified for + # the Virtual Machine must have access to pull the images from GCR, or + # appropriate credentials must be specified in the + # google.genomics.v2alpha1.Action.credentials field. # Corresponds to the JSON property `imageUri` # @return [String] attr_accessor :image_uri # Labels to associate with the action. This field is provided to assist @@ -1127,11 +1136,11 @@ # Corresponds to the JSON property `email` # @return [String] attr_accessor :email # List of scopes to be enabled for this service account on the VM, in - # addition to the Cloud Genomics API scope. + # addition to the cloud-platform API scope that will be added by default. # Corresponds to the JSON property `scopes` # @return [Array<String>] attr_accessor :scopes def initialize(**args) @@ -1263,19 +1272,21 @@ # @return [Boolean] attr_accessor :enable_stackdriver_monitoring alias_method :enable_stackdriver_monitoring?, :enable_stackdriver_monitoring # Optional set of labels to apply to the VM and any attached disk resources. - # These labels must adhere to the name and value restrictions on VM labels - # imposed by Compute Engine. + # These labels must adhere to the [name and value + # restrictions](https://cloud.google.com/compute/docs/labeling-resources) on + # VM labels imposed by Compute Engine. # Labels keys with the prefix 'google-' are reserved for use by Google. # Labels applied at creation time to the VM. Applied on a best-effort basis # to attached disk resources shortly after VM creation. # Corresponds to the JSON property `labels` # @return [Hash<String,String>] attr_accessor :labels - # The machine type of the virtual machine to create. Must be the short name + # 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-