Returns a renamed copy of this base feature view. This renamed copy should only be used for query operations and will not modify the underlying base feature view. Args: name: The name to assign to the copy.
(self, name: str)
| 215 | ) |
| 216 | |
| 217 | def with_name(self, name: str): |
| 218 | """ |
| 219 | Returns a renamed copy of this base feature view. This renamed copy should only be |
| 220 | used for query operations and will not modify the underlying base feature view. |
| 221 | |
| 222 | Args: |
| 223 | name: The name to assign to the copy. |
| 224 | """ |
| 225 | cp = self.__copy__() |
| 226 | cp.projection.name_alias = name |
| 227 | |
| 228 | return cp |
| 229 | |
| 230 | def set_projection(self, feature_view_projection: FeatureViewProjection) -> None: |
| 231 | """ |