nas_trial_details
Creates, updates, deletes, gets or lists a nas_trial_details
resource.
Overview
Name | nas_trial_details |
Type | Resource |
Id | google.aiplatform.nas_trial_details |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. Resource name of the NasTrialDetail. |
parameters | string | The parameters for the NasJob NasTrial. |
searchTrial | object | Represents a uCAIP NasJob trial. |
trainTrial | object | Represents a uCAIP NasJob trial. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | locationsId, nasJobsId, nasTrialDetailsId, projectsId | Gets a NasTrialDetail. |
list | SELECT | locationsId, nasJobsId, projectsId | List top NasTrialDetails of a NasJob. |
SELECT
examples
List top NasTrialDetails of a NasJob.
SELECT
name,
parameters,
searchTrial,
trainTrial
FROM google.aiplatform.nas_trial_details
WHERE locationsId = '{{ locationsId }}'
AND nasJobsId = '{{ nasJobsId }}'
AND projectsId = '{{ projectsId }}';