yuqi1129 commented on code in PR #6009:
URL: https://github.com/apache/gravitino/pull/6009#discussion_r1898522221
##########
clients/client-python/gravitino/namespace.py:
##########
@@ -34,13 +33,13 @@ def __init__(self, levels: List[str]):
self._levels = levels
def to_json(self):
- return json.dumps(self._levels)
+ return self._levels
Review Comment:
Why do we do this changes?
##########
clients/client-python/gravitino/dto/requests/model_version_link_request.py:
##########
@@ -0,0 +1,58 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+from dataclasses import field, dataclass
+from typing import Optional, List, Dict
+
+from dataclasses_json import config
+
+from gravitino.exceptions.base import IllegalArgumentException
+from gravitino.rest.rest_message import RESTRequest
+
+
+@dataclass
+class ModelVersionLinkRequest(RESTRequest):
+ """Represents a request to link a model version to a model."""
+
+ _uri: str = field(metadata=config(field_name="uri"))
+ _comment: Optional[str] = field(metadata=config(field_name="comment"))
+ _aliases: Optional[List[str]] =
field(metadata=config(field_name="aliases"))
+ _properties: Optional[Dict[str, str]] = field(
+ metadata=config(field_name="properties")
+ )
+
+ def __init__(
+ self,
+ uri: str,
+ comment: Optional[str] = None,
+ aliases: Optional[List[str]] = None,
+ properties: Optional[Dict[str, str]] = None,
+ ):
+ self._uri = uri
+ self._comment = comment
+ self._aliases = aliases
+ self._properties = properties
+
+ def validate(self):
+ """Validates the request.
+
+ Raises:
+ IllegalArgumentException if the request is invalid
+ """
+ if not self._uri:
Review Comment:
I remember we have checked the validness of alias, it seems that the same
logic is missing.
--
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]