cbornet commented on code in PR #16822: URL: https://github.com/apache/pulsar/pull/16822#discussion_r949916285
########## pulsar-client-tools/src/main/java/org/apache/pulsar/admin/cli/CmdFunctions.java: ########## @@ -1310,4 +1312,17 @@ private void parseFullyQualifiedFunctionName(String fqfn, FunctionConfig functio } } + @Parameters(commandDescription = "Get the list of Pulsar Functions supported by Pulsar cluster") + public class ListBuiltInFunctions extends BaseCommand { + @Override + void runCmd() throws Exception { + getAdmin().functions().getBuiltInFunctions() + .forEach(function -> { + System.out.println(function.getName()); Review Comment: Between source and sink maybe. But between Function and Connectors, we handle distinct classes that are unrelated (FunctionDefinition and ConnectorDefinition) so I don't think we can factorize. -- 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: commits-unsubscr...@pulsar.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org