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
The following fields are returned by SELECT
queries:
- get
- list
Successful response
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. (id: GoogleCloudAiplatformV1NasTrial) |
trainTrial | object | Represents a uCAIP NasJob trial. (id: GoogleCloudAiplatformV1NasTrial) |
Successful response
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. (id: GoogleCloudAiplatformV1NasTrial) |
trainTrial | object | Represents a uCAIP NasJob trial. (id: GoogleCloudAiplatformV1NasTrial) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | projectsId , locationsId , nasJobsId , nasTrialDetailsId | Gets a NasTrialDetail. | |
list | select | projectsId , locationsId , nasJobsId | pageSize , pageToken | List top NasTrialDetails of a NasJob. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
locationsId | string | |
nasJobsId | string | |
nasTrialDetailsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- get
- list
Gets a NasTrialDetail.
SELECT
name,
parameters,
searchTrial,
trainTrial
FROM google.aiplatform.nas_trial_details
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND nasJobsId = '{{ nasJobsId }}' -- required
AND nasTrialDetailsId = '{{ nasTrialDetailsId }}' -- required;
List top NasTrialDetails of a NasJob.
SELECT
name,
parameters,
searchTrial,
trainTrial
FROM google.aiplatform.nas_trial_details
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND nasJobsId = '{{ nasJobsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';