Skip to content

Commit 7778a73

Browse files
committed
Merge branch 'master' into release/5.1
2 parents 403f77f + effe779 commit 7778a73

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dataikuapi/dss/dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_metadata(self):
8989
9090
Returns:
9191
a dict object. For more information on available metadata, please see
92-
https://doc.dataiku.com/dss/api/4.3/rest/
92+
https://doc.dataiku.com/dss/api/5.0/rest/
9393
"""
9494
return self.client._perform_json(
9595
"GET", "/projects/%s/datasets/%s/metadata" % (self.project_key, self.dataset_name))

dataikuapi/dss/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def get_metadata(self):
124124
Get the metadata attached to this project. The metadata contains label, description
125125
checklists, tags and custom metadata of the project.
126126
127-
For more information on available metadata, please see https://doc.dataiku.com/dss/api/4.3/rest/
127+
For more information on available metadata, please see https://doc.dataiku.com/dss/api/5.0/rest/
128128
129129
:returns: a dict object containing the project metadata.
130130
:rtype: dict

dataikuapi/dss/recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def get_metadata(self):
7575
7676
Returns:
7777
a dict object. For more information on available metadata, please see
78-
https://doc.dataiku.com/dss/api/4.3/rest/
78+
https://doc.dataiku.com/dss/api/5.0/rest/
7979
"""
8080
return self.client._perform_json(
8181
"GET", "/projects/%s/recipes/%s/metadata" % (self.project_key, self.recipe_name))

0 commit comments

Comments
 (0)