Clones the resource with a new name. Such resource keeps separate state and loads data to `new_name` table by default.
(self, new_name: str, new_section: str = None)
| 233 | return self._pipe.name |
| 234 | |
| 235 | def with_name(self, new_name: str, new_section: str = None) -> Self: |
| 236 | """Clones the resource with a new name. Such resource keeps separate state and loads data to `new_name` table by default.""" |
| 237 | return self._clone(new_name=new_name, new_section=new_section, with_parent=True) |
| 238 | |
| 239 | @property |
| 240 | def is_transformer(self) -> bool: |