in src/commands/registerCommands.ts [55:108]
export function registerCommands(): void {
registerCommand('azureFunctions.addBinding', addBinding);
registerCommand('azureFunctions.appSettings.add', async (context: IActionContext, node?: AzExtParentTreeItem) => await createChildNode(context, AppSettingsTreeItem.contextValue, node));
registerCommand('azureFunctions.appSettings.decrypt', decryptLocalSettings);
registerCommand('azureFunctions.appSettings.delete', async (context: IActionContext, node?: AzExtTreeItem) => await deleteNode(context, AppSettingTreeItem.contextValue, node));
registerCommand('azureFunctions.appSettings.download', downloadAppSettings);
registerCommand('azureFunctions.appSettings.edit', editAppSetting);
registerCommand('azureFunctions.appSettings.encrypt', encryptLocalSettings);
registerCommand('azureFunctions.appSettings.rename', renameAppSetting);
registerCommand('azureFunctions.appSettings.toggleSlotSetting', toggleSlotSetting);
registerCommand('azureFunctions.appSettings.upload', uploadAppSettings);
registerCommand('azureFunctions.browseWebsite', browseWebsite);
registerCommand('azureFunctions.configureDeploymentSource', configureDeploymentSource);
registerCommand('azureFunctions.connectToGitHub', connectToGitHub);
registerCommand('azureFunctions.copyFunctionUrl', copyFunctionUrl);
registerCommand('azureFunctions.createFunction', createFunctionFromCommand);
registerCommand('azureFunctions.createFunctionApp', createFunctionApp);
registerCommand('azureFunctions.createFunctionAppAdvanced', createFunctionAppAdvanced);
registerCommand('azureFunctions.createNewProject', createNewProjectFromCommand);
registerCommand('azureFunctions.createSlot', createSlot);
registerCommand('azureFunctions.deleteFunction', deleteFunction);
registerCommand('azureFunctions.deleteFunctionApp', deleteFunctionApp);
registerCommand('azureFunctions.deleteSlot', async (context: IActionContext, node?: AzExtTreeItem) => await deleteNode(context, SlotTreeItem.contextValue, node));
registerCommand('azureFunctions.disableFunction', disableFunction);
registerSiteCommand('azureFunctions.deploy', deployProductionSlot);
registerSiteCommand('azureFunctions.deploySlot', deploySlot);
registerCommand('azureFunctions.disconnectRepo', disconnectRepo);
registerCommand('azureFunctions.enableFunction', enableFunction);
registerCommand('azureFunctions.executeFunction', executeFunction);
registerCommand('azureFunctions.initProjectForVSCode', initProjectForVSCode);
registerCommand('azureFunctions.installOrUpdateFuncCoreTools', installOrUpdateFuncCoreTools);
registerCommand('azureFunctions.loadMore', async (context: IActionContext, node: AzExtTreeItem) => await ext.tree.loadMore(node, context));
registerCommand('azureFunctions.openFile', openFile);
registerCommand('azureFunctions.openInPortal', openInPortal);
registerCommand('azureFunctions.pickProcess', pickFuncProcess);
registerSiteCommand('azureFunctions.redeploy', redeployDeployment);
registerCommand('azureFunctions.refresh', async (context: IActionContext, node?: AzExtTreeItem) => await ext.tree.refresh(context, node));
registerCommand('azureFunctions.restartFunctionApp', restartFunctionApp);
registerCommand('azureFunctions.selectSubscriptions', () => commands.executeCommand('azure-account.selectSubscriptions'));
registerCommand('azureFunctions.setAzureWebJobsStorage', setAzureWebJobsStorage);
registerCommand('azureFunctions.startFunctionApp', startFunctionApp);
registerCommand('azureFunctions.startJavaRemoteDebug', remoteDebugJavaFunctionApp);
registerCommand('azureFunctions.startRemoteDebug', startRemoteDebug);
registerCommand('azureFunctions.startStreamingLogs', startStreamingLogs);
registerCommand('azureFunctions.stopFunctionApp', stopFunctionApp);
registerCommand('azureFunctions.stopStreamingLogs', stopStreamingLogs);
registerCommand('azureFunctions.swapSlot', swapSlot);
registerCommand('azureFunctions.toggleAppSettingVisibility', async (context: IActionContext, node: AppSettingTreeItem) => { await node.toggleValueVisibility(context); }, 250);
registerCommand('azureFunctions.uninstallFuncCoreTools', uninstallFuncCoreTools);
registerCommand('azureFunctions.viewCommitInGitHub', viewCommitInGitHub);
registerSiteCommand('azureFunctions.viewDeploymentLogs', viewDeploymentLogs);
registerCommand('azureFunctions.viewProperties', viewProperties);
registerCommand('azureFunctions.showOutputChannel', () => { ext.outputChannel.show(); });
}