Skip to main content

nas_trial_details

Creates, updates, deletes, gets or lists a nas_trial_details resource.

Overview

Namenas_trial_details
TypeResource
Idgoogle.aiplatform.nas_trial_details

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringOutput only. Resource name of the NasTrialDetail.
parametersstringThe parameters for the NasJob NasTrial.
searchTrialobjectRepresents a uCAIP NasJob trial. (id: GoogleCloudAiplatformV1NasTrial)
trainTrialobjectRepresents a uCAIP NasJob trial. (id: GoogleCloudAiplatformV1NasTrial)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectsId, locationsId, nasJobsId, nasTrialDetailsIdGets a NasTrialDetail.
listselectprojectsId, locationsId, nasJobsIdpageSize, pageTokenList 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.

NameDatatypeDescription
locationsIdstring
nasJobsIdstring
nasTrialDetailsIdstring
projectsIdstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

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;