docs: update docs/dyn (#1096)

This PR was generated using Autosynth. :rainbow:

Synth log will be available here:
https://source.cloud.google.com/results/invocations/6f0f288a-a1e8-4b2d-a85f-00b1c6150185/targets

- [ ] To automatically regenerate this PR, check this box.

Source-Link: https://github.com/googleapis/synthtool/commit/39b7149da4026765385403632db3c6f63db96b2c
Source-Link: https://github.com/googleapis/synthtool/commit/9a7d9fbb7045c34c9d3d22c1ff766eeae51f04c9
Source-Link: https://github.com/googleapis/synthtool/commit/dc9903a8c30c3662b6098f0e4a97f221d67268b2
Source-Link: https://github.com/googleapis/synthtool/commit/7fcc405a579d5d53a726ff3da1b7c8c08f0f2d58
Source-Link: https://github.com/googleapis/synthtool/commit/d5fc0bcf9ea9789c5b0e3154a9e3b29e5cea6116
Source-Link: https://github.com/googleapis/synthtool/commit/e89175cf074dccc4babb4eca66ae913696e47a71
Source-Link: https://github.com/googleapis/synthtool/commit/7d652819519dfa24da9e14548232e4aaba71a11c
Source-Link: https://github.com/googleapis/synthtool/commit/7db8a6c5ffb12a6e4c2f799c18f00f7f3d60e279
Source-Link: https://github.com/googleapis/synthtool/commit/1f1148d3c7a7a52f0c98077f976bd9b3c948ee2b
Source-Link: https://github.com/googleapis/synthtool/commit/2c8aecedd55b0480fb4e123b6e07fa5b12953862
Source-Link: https://github.com/googleapis/synthtool/commit/3d3e94c4e02370f307a9a200b0c743c3d8d19f29
Source-Link: https://github.com/googleapis/synthtool/commit/c7824ea48ff6d4d42dfae0849aec8a85acd90bd9
Source-Link: https://github.com/googleapis/synthtool/commit/ba9918cd22874245b55734f57470c719b577e591
Source-Link: https://github.com/googleapis/synthtool/commit/b19b401571e77192f8dd38eab5fb2300a0de9324
Source-Link: https://github.com/googleapis/synthtool/commit/6542bd723403513626f61642fc02ddca528409aa
diff --git a/docs/dyn/ml_v1.projects.locations.studies.html b/docs/dyn/ml_v1.projects.locations.studies.html
index 7c2e051..2beda62 100644
--- a/docs/dyn/ml_v1.projects.locations.studies.html
+++ b/docs/dyn/ml_v1.projects.locations.studies.html
@@ -110,8 +110,84 @@
     The object takes the form of:
 
 { # A message representing a Study.
+  "createTime": "A String", # Output only. Time at which the study was created.
+  "studyConfig": { # Represents configuration of a study. # Required. Configuration of the study.
+    "automatedStoppingConfig": { # Configuration for Automated Early Stopping of Trials. If no implementation_config is set, automated early stopping will not be run. # Configuration for automated stopping of unpromising Trials.
+      "decayCurveStoppingConfig": {
+        "useElapsedTime": True or False, # If true, measurement.elapsed_time is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.steps will be used as the x-axis.
+      },
+      "medianAutomatedStoppingConfig": { # The median automated stopping rule stops a pending trial if the trial's best objective_value is strictly below the median 'performance' of all completed trials reported up to the trial's last measurement. Currently, 'performance' refers to the running average of the objective values reported by the trial in each measurement.
+        "useElapsedTime": True or False, # If true, the median automated stopping rule applies to measurement.use_elapsed_time, which means the elapsed_time field of the current trial's latest measurement is used to compute the median objective value for each completed trial.
+      },
+    },
+    "algorithm": "A String", # The search algorithm specified for the study.
+    "parameters": [ # Required. The set of parameters to tune.
+      { # Represents a single parameter to optimize.
+        "parentCategoricalValues": { # Represents the spec to match categorical values from parent parameter.
+          "values": [ # Matches values of the parent parameter with type 'CATEGORICAL'. All values must exist in `categorical_value_spec` of parent parameter.
+            "A String",
+          ],
+        },
+        "categoricalValueSpec": { # The value spec for a 'CATEGORICAL' parameter.
+          "values": [ # Must be specified if type is `CATEGORICAL`. The list of possible categories.
+            "A String",
+          ],
+        },
+        "parentDiscreteValues": { # Represents the spec to match discrete values from parent parameter.
+          "values": [ # Matches values of the parent parameter with type 'DISCRETE'. All values must exist in `discrete_value_spec` of parent parameter.
+            3.14,
+          ],
+        },
+        "scaleType": "A String", # How the parameter should be scaled. Leave unset for categorical parameters.
+        "discreteValueSpec": { # The value spec for a 'DISCRETE' parameter.
+          "values": [ # Must be specified if type is `DISCRETE`. A list of feasible points. The list should be in strictly increasing order. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
+            3.14,
+          ],
+        },
+        "integerValueSpec": { # The value spec for an 'INTEGER' parameter.
+          "maxValue": "A String", # Must be specified if type is `INTEGER`. Maximum value of the parameter.
+          "minValue": "A String", # Must be specified if type is `INTEGER`. Minimum value of the parameter.
+        },
+        "doubleValueSpec": { # The value spec for a 'DOUBLE' parameter.
+          "maxValue": 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
+          "minValue": 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
+        },
+        "type": "A String", # Required. The type of the parameter.
+        "childParameterSpecs": [ # A child node is active if the parameter's value matches the child node's matching_parent_values. If two items in child_parameter_specs have the same name, they must have disjoint matching_parent_values.
+          # Object with schema name: GoogleCloudMlV1_StudyConfig_ParameterSpec
+        ],
+        "parameter": "A String", # Required. The parameter name must be unique amongst all ParameterSpecs.
+        "parentIntValues": { # Represents the spec to match integer values from parent parameter.
+          "values": [ # Matches values of the parent parameter with type 'INTEGER'. All values must lie in `integer_value_spec` of parent parameter.
+            "A String",
+          ],
+        },
+      },
+    ],
+    "metrics": [ # Metric specs for the study.
+      { # Represents a metric to optimize.
+        "goal": "A String", # Required. The optimization goal of the metric.
+        "metric": "A String", # Required. The name of the metric.
+      },
+    ],
+  },
+  "state": "A String", # Output only. The detailed state of a study.
+  "name": "A String", # Output only. The name of a study.
+  "inactiveReason": "A String", # Output only. A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
+}
+
+  studyId: string, Required. The ID to use for the study, which will become the final component of the study's resource name.
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
+
+Returns:
+  An object of the form:
+
+    { # A message representing a Study.
+    "createTime": "A String", # Output only. Time at which the study was created.
     "studyConfig": { # Represents configuration of a study. # Required. Configuration of the study.
-      "algorithm": "A String", # The search algorithm specified for the study.
       "automatedStoppingConfig": { # Configuration for Automated Early Stopping of Trials. If no implementation_config is set, automated early stopping will not be run. # Configuration for automated stopping of unpromising Trials.
         "decayCurveStoppingConfig": {
           "useElapsedTime": True or False, # If true, measurement.elapsed_time is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.steps will be used as the x-axis.
@@ -120,26 +196,12 @@
           "useElapsedTime": True or False, # If true, the median automated stopping rule applies to measurement.use_elapsed_time, which means the elapsed_time field of the current trial's latest measurement is used to compute the median objective value for each completed trial.
         },
       },
-      "metrics": [ # Metric specs for the study.
-        { # Represents a metric to optimize.
-          "goal": "A String", # Required. The optimization goal of the metric.
-          "metric": "A String", # Required. The name of the metric.
-        },
-      ],
+      "algorithm": "A String", # The search algorithm specified for the study.
       "parameters": [ # Required. The set of parameters to tune.
         { # Represents a single parameter to optimize.
-          "scaleType": "A String", # How the parameter should be scaled. Leave unset for categorical parameters.
-          "doubleValueSpec": { # The value spec for a 'DOUBLE' parameter.
-            "maxValue": 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
-            "minValue": 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
-          },
-          "parameter": "A String", # Required. The parameter name must be unique amongst all ParameterSpecs.
-          "childParameterSpecs": [ # A child node is active if the parameter's value matches the child node's matching_parent_values. If two items in child_parameter_specs have the same name, they must have disjoint matching_parent_values.
-            # Object with schema name: GoogleCloudMlV1_StudyConfig_ParameterSpec
-          ],
-          "discreteValueSpec": { # The value spec for a 'DISCRETE' parameter.
-            "values": [ # Must be specified if type is `DISCRETE`. A list of feasible points. The list should be in strictly increasing order. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
-              3.14,
+          "parentCategoricalValues": { # Represents the spec to match categorical values from parent parameter.
+            "values": [ # Matches values of the parent parameter with type 'CATEGORICAL'. All values must exist in `categorical_value_spec` of parent parameter.
+              "A String",
             ],
           },
           "categoricalValueSpec": { # The value spec for a 'CATEGORICAL' parameter.
@@ -152,105 +214,43 @@
               3.14,
             ],
           },
+          "scaleType": "A String", # How the parameter should be scaled. Leave unset for categorical parameters.
+          "discreteValueSpec": { # The value spec for a 'DISCRETE' parameter.
+            "values": [ # Must be specified if type is `DISCRETE`. A list of feasible points. The list should be in strictly increasing order. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
+              3.14,
+            ],
+          },
+          "integerValueSpec": { # The value spec for an 'INTEGER' parameter.
+            "maxValue": "A String", # Must be specified if type is `INTEGER`. Maximum value of the parameter.
+            "minValue": "A String", # Must be specified if type is `INTEGER`. Minimum value of the parameter.
+          },
+          "doubleValueSpec": { # The value spec for a 'DOUBLE' parameter.
+            "maxValue": 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
+            "minValue": 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
+          },
+          "type": "A String", # Required. The type of the parameter.
+          "childParameterSpecs": [ # A child node is active if the parameter's value matches the child node's matching_parent_values. If two items in child_parameter_specs have the same name, they must have disjoint matching_parent_values.
+            # Object with schema name: GoogleCloudMlV1_StudyConfig_ParameterSpec
+          ],
+          "parameter": "A String", # Required. The parameter name must be unique amongst all ParameterSpecs.
           "parentIntValues": { # Represents the spec to match integer values from parent parameter.
             "values": [ # Matches values of the parent parameter with type 'INTEGER'. All values must lie in `integer_value_spec` of parent parameter.
               "A String",
             ],
           },
-          "parentCategoricalValues": { # Represents the spec to match categorical values from parent parameter.
-            "values": [ # Matches values of the parent parameter with type 'CATEGORICAL'. All values must exist in `categorical_value_spec` of parent parameter.
-              "A String",
-            ],
-          },
-          "type": "A String", # Required. The type of the parameter.
-          "integerValueSpec": { # The value spec for an 'INTEGER' parameter.
-            "maxValue": "A String", # Must be specified if type is `INTEGER`. Maximum value of the parameter.
-            "minValue": "A String", # Must be specified if type is `INTEGER`. Minimum value of the parameter.
-          },
+        },
+      ],
+      "metrics": [ # Metric specs for the study.
+        { # Represents a metric to optimize.
+          "goal": "A String", # Required. The optimization goal of the metric.
+          "metric": "A String", # Required. The name of the metric.
         },
       ],
     },
-    "name": "A String", # Output only. The name of a study.
-    "createTime": "A String", # Output only. Time at which the study was created.
-    "inactiveReason": "A String", # Output only. A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
     "state": "A String", # Output only. The detailed state of a study.
-  }
-
-  studyId: string, Required. The ID to use for the study, which will become the final component of the study's resource name.
-  x__xgafv: string, V1 error format.
-    Allowed values
-      1 - v1 error format
-      2 - v2 error format
-
-Returns:
-  An object of the form:
-
-    { # A message representing a Study.
-      "studyConfig": { # Represents configuration of a study. # Required. Configuration of the study.
-        "algorithm": "A String", # The search algorithm specified for the study.
-        "automatedStoppingConfig": { # Configuration for Automated Early Stopping of Trials. If no implementation_config is set, automated early stopping will not be run. # Configuration for automated stopping of unpromising Trials.
-          "decayCurveStoppingConfig": {
-            "useElapsedTime": True or False, # If true, measurement.elapsed_time is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.steps will be used as the x-axis.
-          },
-          "medianAutomatedStoppingConfig": { # The median automated stopping rule stops a pending trial if the trial's best objective_value is strictly below the median 'performance' of all completed trials reported up to the trial's last measurement. Currently, 'performance' refers to the running average of the objective values reported by the trial in each measurement.
-            "useElapsedTime": True or False, # If true, the median automated stopping rule applies to measurement.use_elapsed_time, which means the elapsed_time field of the current trial's latest measurement is used to compute the median objective value for each completed trial.
-          },
-        },
-        "metrics": [ # Metric specs for the study.
-          { # Represents a metric to optimize.
-            "goal": "A String", # Required. The optimization goal of the metric.
-            "metric": "A String", # Required. The name of the metric.
-          },
-        ],
-        "parameters": [ # Required. The set of parameters to tune.
-          { # Represents a single parameter to optimize.
-            "scaleType": "A String", # How the parameter should be scaled. Leave unset for categorical parameters.
-            "doubleValueSpec": { # The value spec for a 'DOUBLE' parameter.
-              "maxValue": 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
-              "minValue": 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
-            },
-            "parameter": "A String", # Required. The parameter name must be unique amongst all ParameterSpecs.
-            "childParameterSpecs": [ # A child node is active if the parameter's value matches the child node's matching_parent_values. If two items in child_parameter_specs have the same name, they must have disjoint matching_parent_values.
-              # Object with schema name: GoogleCloudMlV1_StudyConfig_ParameterSpec
-            ],
-            "discreteValueSpec": { # The value spec for a 'DISCRETE' parameter.
-              "values": [ # Must be specified if type is `DISCRETE`. A list of feasible points. The list should be in strictly increasing order. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
-                3.14,
-              ],
-            },
-            "categoricalValueSpec": { # The value spec for a 'CATEGORICAL' parameter.
-              "values": [ # Must be specified if type is `CATEGORICAL`. The list of possible categories.
-                "A String",
-              ],
-            },
-            "parentDiscreteValues": { # Represents the spec to match discrete values from parent parameter.
-              "values": [ # Matches values of the parent parameter with type 'DISCRETE'. All values must exist in `discrete_value_spec` of parent parameter.
-                3.14,
-              ],
-            },
-            "parentIntValues": { # Represents the spec to match integer values from parent parameter.
-              "values": [ # Matches values of the parent parameter with type 'INTEGER'. All values must lie in `integer_value_spec` of parent parameter.
-                "A String",
-              ],
-            },
-            "parentCategoricalValues": { # Represents the spec to match categorical values from parent parameter.
-              "values": [ # Matches values of the parent parameter with type 'CATEGORICAL'. All values must exist in `categorical_value_spec` of parent parameter.
-                "A String",
-              ],
-            },
-            "type": "A String", # Required. The type of the parameter.
-            "integerValueSpec": { # The value spec for an 'INTEGER' parameter.
-              "maxValue": "A String", # Must be specified if type is `INTEGER`. Maximum value of the parameter.
-              "minValue": "A String", # Must be specified if type is `INTEGER`. Minimum value of the parameter.
-            },
-          },
-        ],
-      },
-      "name": "A String", # Output only. The name of a study.
-      "createTime": "A String", # Output only. Time at which the study was created.
-      "inactiveReason": "A String", # Output only. A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
-      "state": "A String", # Output only. The detailed state of a study.
-    }</pre>
+    &quot;name&quot;: &quot;A String&quot;, # Output only. The name of a study.
+    &quot;inactiveReason&quot;: &quot;A String&quot;, # Output only. A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
+  }</pre>
 </div>
 
 <div class="method">
@@ -286,71 +286,71 @@
   An object of the form:
 
     { # A message representing a Study.
-      &quot;studyConfig&quot;: { # Represents configuration of a study. # Required. Configuration of the study.
-        &quot;algorithm&quot;: &quot;A String&quot;, # The search algorithm specified for the study.
-        &quot;automatedStoppingConfig&quot;: { # Configuration for Automated Early Stopping of Trials. If no implementation_config is set, automated early stopping will not be run. # Configuration for automated stopping of unpromising Trials.
-          &quot;decayCurveStoppingConfig&quot;: {
-            &quot;useElapsedTime&quot;: True or False, # If true, measurement.elapsed_time is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.steps will be used as the x-axis.
+    &quot;createTime&quot;: &quot;A String&quot;, # Output only. Time at which the study was created.
+    &quot;studyConfig&quot;: { # Represents configuration of a study. # Required. Configuration of the study.
+      &quot;automatedStoppingConfig&quot;: { # Configuration for Automated Early Stopping of Trials. If no implementation_config is set, automated early stopping will not be run. # Configuration for automated stopping of unpromising Trials.
+        &quot;decayCurveStoppingConfig&quot;: {
+          &quot;useElapsedTime&quot;: True or False, # If true, measurement.elapsed_time is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.steps will be used as the x-axis.
+        },
+        &quot;medianAutomatedStoppingConfig&quot;: { # The median automated stopping rule stops a pending trial if the trial&#x27;s best objective_value is strictly below the median &#x27;performance&#x27; of all completed trials reported up to the trial&#x27;s last measurement. Currently, &#x27;performance&#x27; refers to the running average of the objective values reported by the trial in each measurement.
+          &quot;useElapsedTime&quot;: True or False, # If true, the median automated stopping rule applies to measurement.use_elapsed_time, which means the elapsed_time field of the current trial&#x27;s latest measurement is used to compute the median objective value for each completed trial.
+        },
+      },
+      &quot;algorithm&quot;: &quot;A String&quot;, # The search algorithm specified for the study.
+      &quot;parameters&quot;: [ # Required. The set of parameters to tune.
+        { # Represents a single parameter to optimize.
+          &quot;parentCategoricalValues&quot;: { # Represents the spec to match categorical values from parent parameter.
+            &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;CATEGORICAL&#x27;. All values must exist in `categorical_value_spec` of parent parameter.
+              &quot;A String&quot;,
+            ],
           },
-          &quot;medianAutomatedStoppingConfig&quot;: { # The median automated stopping rule stops a pending trial if the trial&#x27;s best objective_value is strictly below the median &#x27;performance&#x27; of all completed trials reported up to the trial&#x27;s last measurement. Currently, &#x27;performance&#x27; refers to the running average of the objective values reported by the trial in each measurement.
-            &quot;useElapsedTime&quot;: True or False, # If true, the median automated stopping rule applies to measurement.use_elapsed_time, which means the elapsed_time field of the current trial&#x27;s latest measurement is used to compute the median objective value for each completed trial.
+          &quot;categoricalValueSpec&quot;: { # The value spec for a &#x27;CATEGORICAL&#x27; parameter.
+            &quot;values&quot;: [ # Must be specified if type is `CATEGORICAL`. The list of possible categories.
+              &quot;A String&quot;,
+            ],
+          },
+          &quot;parentDiscreteValues&quot;: { # Represents the spec to match discrete values from parent parameter.
+            &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;DISCRETE&#x27;. All values must exist in `discrete_value_spec` of parent parameter.
+              3.14,
+            ],
+          },
+          &quot;scaleType&quot;: &quot;A String&quot;, # How the parameter should be scaled. Leave unset for categorical parameters.
+          &quot;discreteValueSpec&quot;: { # The value spec for a &#x27;DISCRETE&#x27; parameter.
+            &quot;values&quot;: [ # Must be specified if type is `DISCRETE`. A list of feasible points. The list should be in strictly increasing order. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
+              3.14,
+            ],
+          },
+          &quot;integerValueSpec&quot;: { # The value spec for an &#x27;INTEGER&#x27; parameter.
+            &quot;maxValue&quot;: &quot;A String&quot;, # Must be specified if type is `INTEGER`. Maximum value of the parameter.
+            &quot;minValue&quot;: &quot;A String&quot;, # Must be specified if type is `INTEGER`. Minimum value of the parameter.
+          },
+          &quot;doubleValueSpec&quot;: { # The value spec for a &#x27;DOUBLE&#x27; parameter.
+            &quot;maxValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
+            &quot;minValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
+          },
+          &quot;type&quot;: &quot;A String&quot;, # Required. The type of the parameter.
+          &quot;childParameterSpecs&quot;: [ # A child node is active if the parameter&#x27;s value matches the child node&#x27;s matching_parent_values. If two items in child_parameter_specs have the same name, they must have disjoint matching_parent_values.
+            # Object with schema name: GoogleCloudMlV1_StudyConfig_ParameterSpec
+          ],
+          &quot;parameter&quot;: &quot;A String&quot;, # Required. The parameter name must be unique amongst all ParameterSpecs.
+          &quot;parentIntValues&quot;: { # Represents the spec to match integer values from parent parameter.
+            &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;INTEGER&#x27;. All values must lie in `integer_value_spec` of parent parameter.
+              &quot;A String&quot;,
+            ],
           },
         },
-        &quot;metrics&quot;: [ # Metric specs for the study.
-          { # Represents a metric to optimize.
-            &quot;goal&quot;: &quot;A String&quot;, # Required. The optimization goal of the metric.
-            &quot;metric&quot;: &quot;A String&quot;, # Required. The name of the metric.
-          },
-        ],
-        &quot;parameters&quot;: [ # Required. The set of parameters to tune.
-          { # Represents a single parameter to optimize.
-            &quot;scaleType&quot;: &quot;A String&quot;, # How the parameter should be scaled. Leave unset for categorical parameters.
-            &quot;doubleValueSpec&quot;: { # The value spec for a &#x27;DOUBLE&#x27; parameter.
-              &quot;maxValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
-              &quot;minValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
-            },
-            &quot;parameter&quot;: &quot;A String&quot;, # Required. The parameter name must be unique amongst all ParameterSpecs.
-            &quot;childParameterSpecs&quot;: [ # A child node is active if the parameter&#x27;s value matches the child node&#x27;s matching_parent_values. If two items in child_parameter_specs have the same name, they must have disjoint matching_parent_values.
-              # Object with schema name: GoogleCloudMlV1_StudyConfig_ParameterSpec
-            ],
-            &quot;discreteValueSpec&quot;: { # The value spec for a &#x27;DISCRETE&#x27; parameter.
-              &quot;values&quot;: [ # Must be specified if type is `DISCRETE`. A list of feasible points. The list should be in strictly increasing order. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
-                3.14,
-              ],
-            },
-            &quot;categoricalValueSpec&quot;: { # The value spec for a &#x27;CATEGORICAL&#x27; parameter.
-              &quot;values&quot;: [ # Must be specified if type is `CATEGORICAL`. The list of possible categories.
-                &quot;A String&quot;,
-              ],
-            },
-            &quot;parentDiscreteValues&quot;: { # Represents the spec to match discrete values from parent parameter.
-              &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;DISCRETE&#x27;. All values must exist in `discrete_value_spec` of parent parameter.
-                3.14,
-              ],
-            },
-            &quot;parentIntValues&quot;: { # Represents the spec to match integer values from parent parameter.
-              &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;INTEGER&#x27;. All values must lie in `integer_value_spec` of parent parameter.
-                &quot;A String&quot;,
-              ],
-            },
-            &quot;parentCategoricalValues&quot;: { # Represents the spec to match categorical values from parent parameter.
-              &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;CATEGORICAL&#x27;. All values must exist in `categorical_value_spec` of parent parameter.
-                &quot;A String&quot;,
-              ],
-            },
-            &quot;type&quot;: &quot;A String&quot;, # Required. The type of the parameter.
-            &quot;integerValueSpec&quot;: { # The value spec for an &#x27;INTEGER&#x27; parameter.
-              &quot;maxValue&quot;: &quot;A String&quot;, # Must be specified if type is `INTEGER`. Maximum value of the parameter.
-              &quot;minValue&quot;: &quot;A String&quot;, # Must be specified if type is `INTEGER`. Minimum value of the parameter.
-            },
-          },
-        ],
-      },
-      &quot;name&quot;: &quot;A String&quot;, # Output only. The name of a study.
-      &quot;createTime&quot;: &quot;A String&quot;, # Output only. Time at which the study was created.
-      &quot;inactiveReason&quot;: &quot;A String&quot;, # Output only. A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
-      &quot;state&quot;: &quot;A String&quot;, # Output only. The detailed state of a study.
-    }</pre>
+      ],
+      &quot;metrics&quot;: [ # Metric specs for the study.
+        { # Represents a metric to optimize.
+          &quot;goal&quot;: &quot;A String&quot;, # Required. The optimization goal of the metric.
+          &quot;metric&quot;: &quot;A String&quot;, # Required. The name of the metric.
+        },
+      ],
+    },
+    &quot;state&quot;: &quot;A String&quot;, # Output only. The detailed state of a study.
+    &quot;name&quot;: &quot;A String&quot;, # Output only. The name of a study.
+    &quot;inactiveReason&quot;: &quot;A String&quot;, # Output only. A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
+  }</pre>
 </div>
 
 <div class="method">
@@ -370,71 +370,71 @@
     {
     &quot;studies&quot;: [ # The studies associated with the project.
       { # A message representing a Study.
-          &quot;studyConfig&quot;: { # Represents configuration of a study. # Required. Configuration of the study.
-            &quot;algorithm&quot;: &quot;A String&quot;, # The search algorithm specified for the study.
-            &quot;automatedStoppingConfig&quot;: { # Configuration for Automated Early Stopping of Trials. If no implementation_config is set, automated early stopping will not be run. # Configuration for automated stopping of unpromising Trials.
-              &quot;decayCurveStoppingConfig&quot;: {
-                &quot;useElapsedTime&quot;: True or False, # If true, measurement.elapsed_time is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.steps will be used as the x-axis.
+        &quot;createTime&quot;: &quot;A String&quot;, # Output only. Time at which the study was created.
+        &quot;studyConfig&quot;: { # Represents configuration of a study. # Required. Configuration of the study.
+          &quot;automatedStoppingConfig&quot;: { # Configuration for Automated Early Stopping of Trials. If no implementation_config is set, automated early stopping will not be run. # Configuration for automated stopping of unpromising Trials.
+            &quot;decayCurveStoppingConfig&quot;: {
+              &quot;useElapsedTime&quot;: True or False, # If true, measurement.elapsed_time is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.steps will be used as the x-axis.
+            },
+            &quot;medianAutomatedStoppingConfig&quot;: { # The median automated stopping rule stops a pending trial if the trial&#x27;s best objective_value is strictly below the median &#x27;performance&#x27; of all completed trials reported up to the trial&#x27;s last measurement. Currently, &#x27;performance&#x27; refers to the running average of the objective values reported by the trial in each measurement.
+              &quot;useElapsedTime&quot;: True or False, # If true, the median automated stopping rule applies to measurement.use_elapsed_time, which means the elapsed_time field of the current trial&#x27;s latest measurement is used to compute the median objective value for each completed trial.
+            },
+          },
+          &quot;algorithm&quot;: &quot;A String&quot;, # The search algorithm specified for the study.
+          &quot;parameters&quot;: [ # Required. The set of parameters to tune.
+            { # Represents a single parameter to optimize.
+              &quot;parentCategoricalValues&quot;: { # Represents the spec to match categorical values from parent parameter.
+                &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;CATEGORICAL&#x27;. All values must exist in `categorical_value_spec` of parent parameter.
+                  &quot;A String&quot;,
+                ],
               },
-              &quot;medianAutomatedStoppingConfig&quot;: { # The median automated stopping rule stops a pending trial if the trial&#x27;s best objective_value is strictly below the median &#x27;performance&#x27; of all completed trials reported up to the trial&#x27;s last measurement. Currently, &#x27;performance&#x27; refers to the running average of the objective values reported by the trial in each measurement.
-                &quot;useElapsedTime&quot;: True or False, # If true, the median automated stopping rule applies to measurement.use_elapsed_time, which means the elapsed_time field of the current trial&#x27;s latest measurement is used to compute the median objective value for each completed trial.
+              &quot;categoricalValueSpec&quot;: { # The value spec for a &#x27;CATEGORICAL&#x27; parameter.
+                &quot;values&quot;: [ # Must be specified if type is `CATEGORICAL`. The list of possible categories.
+                  &quot;A String&quot;,
+                ],
+              },
+              &quot;parentDiscreteValues&quot;: { # Represents the spec to match discrete values from parent parameter.
+                &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;DISCRETE&#x27;. All values must exist in `discrete_value_spec` of parent parameter.
+                  3.14,
+                ],
+              },
+              &quot;scaleType&quot;: &quot;A String&quot;, # How the parameter should be scaled. Leave unset for categorical parameters.
+              &quot;discreteValueSpec&quot;: { # The value spec for a &#x27;DISCRETE&#x27; parameter.
+                &quot;values&quot;: [ # Must be specified if type is `DISCRETE`. A list of feasible points. The list should be in strictly increasing order. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
+                  3.14,
+                ],
+              },
+              &quot;integerValueSpec&quot;: { # The value spec for an &#x27;INTEGER&#x27; parameter.
+                &quot;maxValue&quot;: &quot;A String&quot;, # Must be specified if type is `INTEGER`. Maximum value of the parameter.
+                &quot;minValue&quot;: &quot;A String&quot;, # Must be specified if type is `INTEGER`. Minimum value of the parameter.
+              },
+              &quot;doubleValueSpec&quot;: { # The value spec for a &#x27;DOUBLE&#x27; parameter.
+                &quot;maxValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
+                &quot;minValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
+              },
+              &quot;type&quot;: &quot;A String&quot;, # Required. The type of the parameter.
+              &quot;childParameterSpecs&quot;: [ # A child node is active if the parameter&#x27;s value matches the child node&#x27;s matching_parent_values. If two items in child_parameter_specs have the same name, they must have disjoint matching_parent_values.
+                # Object with schema name: GoogleCloudMlV1_StudyConfig_ParameterSpec
+              ],
+              &quot;parameter&quot;: &quot;A String&quot;, # Required. The parameter name must be unique amongst all ParameterSpecs.
+              &quot;parentIntValues&quot;: { # Represents the spec to match integer values from parent parameter.
+                &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;INTEGER&#x27;. All values must lie in `integer_value_spec` of parent parameter.
+                  &quot;A String&quot;,
+                ],
               },
             },
-            &quot;metrics&quot;: [ # Metric specs for the study.
-              { # Represents a metric to optimize.
-                &quot;goal&quot;: &quot;A String&quot;, # Required. The optimization goal of the metric.
-                &quot;metric&quot;: &quot;A String&quot;, # Required. The name of the metric.
-              },
-            ],
-            &quot;parameters&quot;: [ # Required. The set of parameters to tune.
-              { # Represents a single parameter to optimize.
-                &quot;scaleType&quot;: &quot;A String&quot;, # How the parameter should be scaled. Leave unset for categorical parameters.
-                &quot;doubleValueSpec&quot;: { # The value spec for a &#x27;DOUBLE&#x27; parameter.
-                  &quot;maxValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
-                  &quot;minValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
-                },
-                &quot;parameter&quot;: &quot;A String&quot;, # Required. The parameter name must be unique amongst all ParameterSpecs.
-                &quot;childParameterSpecs&quot;: [ # A child node is active if the parameter&#x27;s value matches the child node&#x27;s matching_parent_values. If two items in child_parameter_specs have the same name, they must have disjoint matching_parent_values.
-                  # Object with schema name: GoogleCloudMlV1_StudyConfig_ParameterSpec
-                ],
-                &quot;discreteValueSpec&quot;: { # The value spec for a &#x27;DISCRETE&#x27; parameter.
-                  &quot;values&quot;: [ # Must be specified if type is `DISCRETE`. A list of feasible points. The list should be in strictly increasing order. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
-                    3.14,
-                  ],
-                },
-                &quot;categoricalValueSpec&quot;: { # The value spec for a &#x27;CATEGORICAL&#x27; parameter.
-                  &quot;values&quot;: [ # Must be specified if type is `CATEGORICAL`. The list of possible categories.
-                    &quot;A String&quot;,
-                  ],
-                },
-                &quot;parentDiscreteValues&quot;: { # Represents the spec to match discrete values from parent parameter.
-                  &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;DISCRETE&#x27;. All values must exist in `discrete_value_spec` of parent parameter.
-                    3.14,
-                  ],
-                },
-                &quot;parentIntValues&quot;: { # Represents the spec to match integer values from parent parameter.
-                  &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;INTEGER&#x27;. All values must lie in `integer_value_spec` of parent parameter.
-                    &quot;A String&quot;,
-                  ],
-                },
-                &quot;parentCategoricalValues&quot;: { # Represents the spec to match categorical values from parent parameter.
-                  &quot;values&quot;: [ # Matches values of the parent parameter with type &#x27;CATEGORICAL&#x27;. All values must exist in `categorical_value_spec` of parent parameter.
-                    &quot;A String&quot;,
-                  ],
-                },
-                &quot;type&quot;: &quot;A String&quot;, # Required. The type of the parameter.
-                &quot;integerValueSpec&quot;: { # The value spec for an &#x27;INTEGER&#x27; parameter.
-                  &quot;maxValue&quot;: &quot;A String&quot;, # Must be specified if type is `INTEGER`. Maximum value of the parameter.
-                  &quot;minValue&quot;: &quot;A String&quot;, # Must be specified if type is `INTEGER`. Minimum value of the parameter.
-                },
-              },
-            ],
-          },
-          &quot;name&quot;: &quot;A String&quot;, # Output only. The name of a study.
-          &quot;createTime&quot;: &quot;A String&quot;, # Output only. Time at which the study was created.
-          &quot;inactiveReason&quot;: &quot;A String&quot;, # Output only. A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
-          &quot;state&quot;: &quot;A String&quot;, # Output only. The detailed state of a study.
+          ],
+          &quot;metrics&quot;: [ # Metric specs for the study.
+            { # Represents a metric to optimize.
+              &quot;goal&quot;: &quot;A String&quot;, # Required. The optimization goal of the metric.
+              &quot;metric&quot;: &quot;A String&quot;, # Required. The name of the metric.
+            },
+          ],
         },
+        &quot;state&quot;: &quot;A String&quot;, # Output only. The detailed state of a study.
+        &quot;name&quot;: &quot;A String&quot;, # Output only. The name of a study.
+        &quot;inactiveReason&quot;: &quot;A String&quot;, # Output only. A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
+      },
     ],
   }</pre>
 </div>