chore: update docs/dyn (#1106)

diff --git a/docs/dyn/ml_v1.projects.locations.studies.html b/docs/dyn/ml_v1.projects.locations.studies.html
index 2beda62..c84658d 100644
--- a/docs/dyn/ml_v1.projects.locations.studies.html
+++ b/docs/dyn/ml_v1.projects.locations.studies.html
@@ -110,8 +110,57 @@
     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.
+    "parameters": [ # Required. The set of parameters to tune.
+      { # Represents a single parameter to optimize.
+        "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,
+          ],
+        },
+        "type": "A String", # Required. The type of the parameter.
+        "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,
+          ],
+        },
+        "categoricalValueSpec": { # The value spec for a 'CATEGORICAL' parameter.
+          "values": [ # Must be specified if type is `CATEGORICAL`. The list of possible categories.
+            "A String",
+          ],
+        },
+        "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",
+          ],
+        },
+        "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.
+          "minValue": 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
+          "maxValue": 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
+        },
+        "scaleType": "A String", # How the parameter should be scaled. Leave unset for categorical parameters.
+        "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",
+          ],
+        },
+        "parameter": "A String", # Required. The parameter name must be unique amongst all ParameterSpecs.
+      },
+    ],
+    "algorithm": "A String", # The search algorithm specified for the study.
+    "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.
+      },
+    ],
     "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,59 +169,10 @@
         "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.
+  "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.
 }
 
@@ -186,8 +186,57 @@
   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.
+      "parameters": [ # Required. The set of parameters to tune.
+        { # Represents a single parameter to optimize.
+          "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,
+            ],
+          },
+          "type": "A String", # Required. The type of the parameter.
+          "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,
+            ],
+          },
+          "categoricalValueSpec": { # The value spec for a 'CATEGORICAL' parameter.
+            "values": [ # Must be specified if type is `CATEGORICAL`. The list of possible categories.
+              "A String",
+            ],
+          },
+          "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",
+            ],
+          },
+          "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.
+            "minValue": 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
+            "maxValue": 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
+          },
+          "scaleType": "A String", # How the parameter should be scaled. Leave unset for categorical parameters.
+          "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",
+            ],
+          },
+          "parameter": "A String", # Required. The parameter name must be unique amongst all ParameterSpecs.
+        },
+      ],
+      "algorithm": "A String", # The search algorithm specified for the study.
+      "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.
+        },
+      ],
       "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.
@@ -196,59 +245,10 @@
           "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.
+    "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.
   }</pre>
 </div>
@@ -286,8 +286,57 @@
   An object of the form:
 
     { # A message representing a Study.
-    &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;parameters&quot;: [ # Required. The set of parameters to tune.
+        { # Represents a single parameter to optimize.
+          &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;type&quot;: &quot;A String&quot;, # Required. The type of the parameter.
+          &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;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;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;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;minValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
+            &quot;maxValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
+          },
+          &quot;scaleType&quot;: &quot;A String&quot;, # How the parameter should be scaled. Leave unset for categorical parameters.
+          &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;parameter&quot;: &quot;A String&quot;, # Required. The parameter name must be unique amongst all ParameterSpecs.
+        },
+      ],
+      &quot;algorithm&quot;: &quot;A String&quot;, # The search algorithm specified for the 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;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.
@@ -296,59 +345,10 @@
           &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;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;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;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.
   }</pre>
 </div>
@@ -370,8 +370,57 @@
     {
     &quot;studies&quot;: [ # The studies associated with the project.
       { # A message representing a Study.
-        &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;parameters&quot;: [ # Required. The set of parameters to tune.
+            { # Represents a single parameter to optimize.
+              &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;type&quot;: &quot;A String&quot;, # Required. The type of the parameter.
+              &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;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;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;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;minValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Minimum value of the parameter.
+                &quot;maxValue&quot;: 3.14, # Must be specified if type is `DOUBLE`. Maximum value of the parameter.
+              },
+              &quot;scaleType&quot;: &quot;A String&quot;, # How the parameter should be scaled. Leave unset for categorical parameters.
+              &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;parameter&quot;: &quot;A String&quot;, # Required. The parameter name must be unique amongst all ParameterSpecs.
+            },
+          ],
+          &quot;algorithm&quot;: &quot;A String&quot;, # The search algorithm specified for the 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;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.
@@ -380,59 +429,10 @@
               &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;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;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;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.
       },
     ],