jerryshao commented on code in PR #7386:
URL: https://github.com/apache/gravitino/pull/7386#discussion_r2160674970


##########
clients/client-python/gravitino/client/generic_model_catalog.py:
##########
@@ -465,6 +465,72 @@ def link_model_version(
         base_resp = BaseResponse.from_json(resp.body, infer_missing=True)
         base_resp.validate()
 
+    def link_model_version_with_multiple_uris(
+        self,
+        model_ident: NameIdentifier,
+        uris: Dict[str, str],
+        aliases: List[str],
+        comment: str,
+        properties: Dict[str, str],
+    ) -> None:
+        """Link a new model version to the registered model object. The new 
model version will be
+        added to the model object. If the model object does not exist, it will 
throw an
+        exception. If the version alias already exists in the model, it will 
throw an exception.
+
+        Args:
+            model_ident: The identifier of the model.
+            uris: The URIs and their names of the model version.
+            aliases: The aliases of the model version. The aliases of the 
model version. The
+            aliases should be unique in this model, otherwise the
+            ModelVersionAliasesAlreadyExistException will be thrown. The 
aliases are optional and
+            can be empty.
+            comment: The comment of the model version.
+            properties: The properties of the model version.
+
+        Raises:
+            NoSuchModelException: If the model does not exist.
+            ModelVersionAliasesAlreadyExistException: If the aliases of the 
model version already exist.
+        """
+        raise NotImplementedError("Not supported yet")
+
+    def get_model_uri(

Review Comment:
   `get_model_version_uri`?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to