* $aiplatformService = new Google\Service\Aiplatform(...); * $tuningJobs = $aiplatformService->projects_locations_tuningJobs; * */ class ProjectsLocationsTuningJobs extends \Google\Service\Resource { /** * Cancels a TuningJob. Starts asynchronous cancellation on the TuningJob. The * server makes a best effort to cancel the job, but success is not guaranteed. * Clients can use GenAiTuningService.GetTuningJob or other methods to check * whether the cancellation succeeded or whether the job completed despite * cancellation. On successful cancellation, the TuningJob is not deleted; * instead it becomes a job with a TuningJob.error value with a * google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`, and * TuningJob.state is set to `CANCELLED`. (tuningJobs.cancel) * * @param string $name Required. The name of the TuningJob to cancel. Format: * `projects/{project}/locations/{location}/tuningJobs/{tuning_job}` * @param GoogleCloudAiplatformV1CancelTuningJobRequest $postBody * @param array $optParams Optional parameters. * @return GoogleProtobufEmpty * @throws \Google\Service\Exception */ public function cancel($name, GoogleCloudAiplatformV1CancelTuningJobRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('cancel', [$params], GoogleProtobufEmpty::class); } /** * Creates a TuningJob. A created TuningJob right away will be attempted to be * run. (tuningJobs.create) * * @param string $parent Required. The resource name of the Location to create * the TuningJob in. Format: `projects/{project}/locations/{location}` * @param GoogleCloudAiplatformV1TuningJob $postBody * @param array $optParams Optional parameters. * @return GoogleCloudAiplatformV1TuningJob * @throws \Google\Service\Exception */ public function create($parent, GoogleCloudAiplatformV1TuningJob $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], GoogleCloudAiplatformV1TuningJob::class); } /** * Gets a TuningJob. (tuningJobs.get) * * @param string $name Required. The name of the TuningJob resource. Format: * `projects/{project}/locations/{location}/tuningJobs/{tuning_job}` * @param array $optParams Optional parameters. * @return GoogleCloudAiplatformV1TuningJob * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleCloudAiplatformV1TuningJob::class); } /** * Lists TuningJobs in a Location. (tuningJobs.listProjectsLocationsTuningJobs) * * @param string $parent Required. The resource name of the Location to list the * TuningJobs from. Format: `projects/{project}/locations/{location}` * @param array $optParams Optional parameters. * * @opt_param string filter Optional. The standard list filter. * @opt_param int pageSize Optional. The standard list page size. * @opt_param string pageToken Optional. The standard list page token. Typically * obtained via ListTuningJobsResponse.next_page_token of the previous * GenAiTuningService.ListTuningJob][] call. * @return GoogleCloudAiplatformV1ListTuningJobsResponse * @throws \Google\Service\Exception */ public function listProjectsLocationsTuningJobs($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleCloudAiplatformV1ListTuningJobsResponse::class); } /** * Rebase a TunedModel. (tuningJobs.rebaseTunedModel) * * @param string $parent Required. The resource name of the Location into which * to rebase the Model. Format: `projects/{project}/locations/{location}` * @param GoogleCloudAiplatformV1RebaseTunedModelRequest $postBody * @param array $optParams Optional parameters. * @return GoogleLongrunningOperation * @throws \Google\Service\Exception */ public function rebaseTunedModel($parent, GoogleCloudAiplatformV1RebaseTunedModelRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('rebaseTunedModel', [$params], GoogleLongrunningOperation::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsTuningJobs::class, 'Google_Service_Aiplatform_Resource_ProjectsLocationsTuningJobs');