checkpointId = $checkpointId; } /** * @return string */ public function getCheckpointId() { return $this->checkpointId; } /** * The Endpoint resource name that the checkpoint is deployed to. Format: * `projects/{project}/locations/{location}/endpoints/{endpoint}`. * * @param string $endpoint */ public function setEndpoint($endpoint) { $this->endpoint = $endpoint; } /** * @return string */ public function getEndpoint() { return $this->endpoint; } /** * The epoch of the checkpoint. * * @param string $epoch */ public function setEpoch($epoch) { $this->epoch = $epoch; } /** * @return string */ public function getEpoch() { return $this->epoch; } /** * The step of the checkpoint. * * @param string $step */ public function setStep($step) { $this->step = $step; } /** * @return string */ public function getStep() { return $this->step; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1TunedModelCheckpoint::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1TunedModelCheckpoint');