snapshotUuid = $snapshotUuid; } /** * @return string */ public function getSnapshotUuid() { return $this->snapshotUuid; } /** * Required. Name of the storage pool. This must be specified for creating * backups for ONTAP mode volumes. Format: `projects/{projects_id}/locations/{ * location}/storagePools/{storage_pool_id}` * * @param string $storagePool */ public function setStoragePool($storagePool) { $this->storagePool = $storagePool; } /** * @return string */ public function getStoragePool() { return $this->storagePool; } /** * Required. The UUID of the ONTAP source volume. * * @param string $volumeUuid */ public function setVolumeUuid($volumeUuid) { $this->volumeUuid = $volumeUuid; } /** * @return string */ public function getVolumeUuid() { return $this->volumeUuid; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OntapSource::class, 'Google_Service_NetAppFiles_OntapSource');