allocatedStorageBytes = $allocatedStorageBytes; } /** * @return string */ public function getAllocatedStorageBytes() { return $this->allocatedStorageBytes; } /** * @param string */ public function setDatabaseName($databaseName) { $this->databaseName = $databaseName; } /** * @return string */ public function getDatabaseName() { return $this->databaseName; } /** * @param DatabaseDetailsParentDatabaseDeployment */ public function setParentDatabaseDeployment(DatabaseDetailsParentDatabaseDeployment $parentDatabaseDeployment) { $this->parentDatabaseDeployment = $parentDatabaseDeployment; } /** * @return DatabaseDetailsParentDatabaseDeployment */ public function getParentDatabaseDeployment() { return $this->parentDatabaseDeployment; } /** * @param DatabaseSchema[] */ public function setSchemas($schemas) { $this->schemas = $schemas; } /** * @return DatabaseSchema[] */ public function getSchemas() { return $this->schemas; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DatabaseDetails::class, 'Google_Service_MigrationCenterAPI_DatabaseDetails');