Skip to content

Commit

Permalink
Add NotImplementedError
Browse files Browse the repository at this point in the history
Signed-off-by: harupy <17039389+harupy@users.noreply.github.com>
  • Loading branch information
harupy committed Nov 17, 2023
1 parent 9bb07e8 commit fc8e303
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions mlflow/deployments/databricks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,28 @@ def predict(self, deployment_name=None, inputs=None, endpoint=None):
raise NotImplementedError("TODO")

def create_endpoint(self, name, config=None):
raise NotImplementedError("TODO")
"""
.. warning::
This method is not implemented for `DatabricksDeploymentClient`.
"""
raise NotImplementedError

def update_endpoint(self, endpoint, config=None):
raise NotImplementedError("TODO")
"""
.. warning::
This method is not implemented for `DatabricksDeploymentClient`.
"""
raise NotImplementedError

def delete_endpoint(self, endpoint):
raise NotImplementedError("TODO")
"""
.. warning::
This method is not implemented for `DatabricksDeploymentClient`.
"""
raise NotImplementedError

def list_endpoints(self):
raise NotImplementedError("TODO")
Expand Down

0 comments on commit fc8e303

Please sign in to comment.