dimas-b commented on code in PR #2341: URL: https://github.com/apache/polaris/pull/2341#discussion_r2289668153
########## polaris-core/src/main/java/org/apache/polaris/core/rest/PolarisResourcePaths.java: ########## @@ -57,6 +57,17 @@ public String genericTables(Namespace ns) { "polaris", "v1", prefix, "namespaces", RESTUtil.encodeNamespace(ns), "generic-tables"); } + public String credentialsPath(TableIdentifier ident) { + return SLASH.join( + "v1", + prefix, + "namespaces", + RESTUtil.encodeNamespace(ident.namespace()), + "tables", + RESTUtil.encodeString(ident.name()), + "credentials"); Review Comment: Just to confirm: relative URIs are correct in this case, right? -- 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: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org