Extensibility API for Zowe Explorer is a collection of APIs that can be used to extend the Zowe Explorer VS Code extension with alternative z/OS interaction protocols and new capabilities.
The current state of this API is experimental, but the goal is provide a stabilized version that can be used for Zowe Conformance certifications in the future. See this issue for more details: https://github.com/zowe/zowe-explorer-vscode/issues/837.
However, the current API is being used by other extensions already, such as for Zowe Explorer with the Zowe Explorer FTP Extension that you can find in this same Git repository, as well as for commercial extensions maintained by Zowe's contributors and available on their company websites.
Currently, the API is organized into two modules, which both are rolled up into the top-level index.ts
file for convenient access.
-
/profiles
: Provides access to common Zowe CLI profile management APIs, as well as abstractions for providing alternative z/OS interactions that use protocols other than z/OSMF, based on alternative Zowe CLI profile types. -
/tree
: Provides abstractions for accessing and extending the Zowe Explorer VS Code tree views. -
/logger
: Logs messages in a standard format, which is used by Zowe Explorer and will be consistent across Zowe components.
The /profiles
module has no dependency to VS Code and could be used in Zowe CLI extensions as well as VS Code extensions. If you want to use it without pulling in dependencies to VS Code that are needed by the /tree
module, you can import it like this:
import { ZoweExplorerApi } from "@zowe/zowe-explorer-api/lib/profiles";
The main API provided by the /profiles
module is called ZoweExplorerApi
. It defines a namespace for interfaces for implementing access to z/OS MVS, USS, and JES. You can see that the Zowe Explorer FTP Extension provides such an alternative implementation for USS using the FTP protocol in packages/zowe-explorer-ftp-extension/src/ZoweExplorerFtpApi.ts. The /profiles
module itself contains Zowe Explorer's default implementation using z/OSMF in packages/zowe-explorer-api/src/profiles/ZoweExplorerZosmfApi.ts
Zowe Explorer itself exports a IApiRegisterClient
object that can be used for an alternative implementation to be registered with Zowe Explorer. You can find an example for doing this in packages/zowe-explorer-ftp-extension/src/extension.ts. To be able to do this, your VS Code extension must define a dependency to Zowe Explorer to ensure that VS Code extension activation is performed in the correct order. Therefore, your VS Code extension's package.json
must contain
"extensionDependencies": [
"Zowe.vscode-extension-for-zowe"
]
Importing from the /tree
module requires that your NPM package has a dependency to VS Code as it performs
import * as vscode from "vscode";
imports.
See this documentation on Extending Zowe Explorer to learn more about the Tree APIs available.
See this special extension document for more information about using the Logger API.
Extensibility API for Zowe Explorer is part of the Zowe Explorer monorepo on Github. You find the sources there in the /packages/zowe-explorer-api
sub-folder.
To file issues, use the Zowe Explorer issue list after reviewing the API Roadmap item.