Deletes a feature service. Args: name: Name of feature service. Raises: FeatureServiceNotFoundException: The feature view could not be found.
(self, name: str)
| 880 | self.registry.apply_feature_view(fv, self.project) |
| 881 | |
| 882 | def delete_feature_service(self, name: str): |
| 883 | """ |
| 884 | Deletes a feature service. |
| 885 | |
| 886 | Args: |
| 887 | name: Name of feature service. |
| 888 | |
| 889 | Raises: |
| 890 | FeatureServiceNotFoundException: The feature view could not be found. |
| 891 | """ |
| 892 | return self.registry.delete_feature_service(name, self.project) |
| 893 | |
| 894 | def _should_use_plan(self): |
| 895 | """Returns True if plan and _apply_diffs should be used, False otherwise.""" |
no outgoing calls
no test coverage detected