diff --git a/docs/extend/extend-apiml/api-mediation-security.md b/docs/extend/extend-apiml/api-mediation-security.md index b09083624e..f3a0c682e7 100644 --- a/docs/extend/extend-apiml/api-mediation-security.md +++ b/docs/extend/extend-apiml/api-mediation-security.md @@ -8,12 +8,16 @@ + [Zowe API ML TLS requirements](#zowe-api-ml-tls-requirements) + [Authentication for API ML services](#authentication-for-api-ml-services) - [Authentication endpoints](#authentication-endpoints) + - [Supported authentication methods](#supported-authentication-methods) + * [Username/Password](#usernamepassword) + * [Client certificate](#client-certificate) - [Authentication providers](#authentication-providers) - * [z/OSMF Authentication Provider](#z-osmf-authentication-provider) + * [z/OSMF Authentication Provider](#zosmf-authentication-provider) + * [SAF Authentication Provider](#saf-authentication-provider) * [Dummy Authentication Provider](#dummy-authentication-provider) + [Authorization](#authorization) - + [JWT Token](#jwt-token) - + [z/OSMF JSON Web Tokens Support](#z-osmf-json-web-tokens-support) + + [JWT or JSON Web Token](#jwt-or-json-web-token) + + [z/OSMF JSON Web Tokens Support](#zosmf-json-web-tokens-support) + [API ML truststore and keystore](#api-ml-truststore-and-keystore) + [API ML SAF Keyring](#api-ml-saf-keyring) + [Discovery Service authentication](#discovery-service-authentication) @@ -21,11 +25,11 @@ * [ZAAS Client](#zaas-client) + [Pre-requisites](#pre-requisites) + [API Documentation](#api-documentation) - - [Obtain a JWT token (`login`)](#obtain-a-jwt-token---login--) - - [Validate and get details from the token (`query`)](#validate-and-get-details-from-the-token---query--) - - [Invalidate a JWT token (`logout`)](#invalidate-a-jwt-token---logout--) - - [Obtain a PassTicket (`passTicket`)](#obtain-a-passticket---passticket--) - + [Getting Started (Step by Step Instructions)](#getting-started--step-by-step-instructions-) + - [Obtain a JWT token (`login`)](#obtain-a-jwt-token-login)) + - [Validate and get details from the token (`query`)](#validate-and-get-details-from-the-token-query) + - [Invalidate a JWT token (`logout`)](#invalidate-a-jwt-token-logout) + - [Obtain a PassTicket (`passTicket`)](#obtain-a-passticket-passticket) + + [Getting Started (Step by Step Instructions)](#getting-started-step-by-step-instructions) * [Certificate management in Zowe API Mediation Layer](#certificate-management-in-zowe-api-mediation-layer) + [Running on localhost](#running-on-localhost) - [How to start API ML on localhost with full HTTPS](#how-to-start-api-ml-on-localhost-with-full-https) @@ -36,8 +40,8 @@ - [Service registration to Discovery Service on localhost](#service-registration-to-discovery-service-on-localhost) + [Zowe runtime on z/OS](#zowe-runtime-on-zos) - [Import the local CA certificate to your browser](#import-the-local-ca-certificate-to-your-browser) - - [Generate a keystore and truststore for a new service on z/OS](#generate-a-keystore-and-truststore-for-a-new-service-on-z-os) - - [Add a service with an existing certificate to API ML on z/OS](#add-a-service-with-an-existing-certificate-to-api-ml-on-z-os) + - [Generate a keystore and truststore for a new service on z/OS](#generate-a-keystore-and-truststore-for-a-new-service-on-zos) + - [Add a service with an existing certificate to API ML on z/OS](#add-a-service-with-an-existing-certificate-to-api-ml-on-zos) - [Procedure if the service is not trusted](#procedure-if-the-service-is-not-trusted) ## How API ML transport security works @@ -226,8 +230,7 @@ with each authentication provider. ##### Username/Password -The client can authenticate via Username and password. There are multiple methods which can be used to deliver -credentials. For more details, see the ZAAS Client documentation. +The client can authenticate via Username and password. There are multiple methods which can be used to deliver credentials. For more details, see the ZAAS Client documentation. ##### Client certificate @@ -243,7 +246,7 @@ When providing credentials in any form together with client certificate on the s * The client calls the API ML Gateway login endpoint with the client certificate. * The client certificate and private key are checked as a valid TLS client certificate against the Gateway's trusted CAs. * The public part of the provided client certificate is checked against SAF, and SAF subsequently returns a user ID that owns this certificate. ZSS provides this API for the Mediation Layer. -* The Gateway performs the login of the mapped user and returns a valid JWT token. +* Information about the user is extracted from the received certificate and then passed in specific headers to the southbound service. The Gateway authenticates itself to the service via the certificate to guarantee validity of the information. ![Zowe client certificate authentication diagram](../../images/api-mediation/zowe-client-cert-auth.png) @@ -263,12 +266,6 @@ When providing credentials in any form together with client certificate on the s * PassTicket generation must be enabled for the Zowe runtime user. The user has to be able to generate PassTicket for itself and for the APPLID of z/OSMF. For more information, see [Configure Passticket](api-mediation-passtickets.md). * The Zowe runtime user has to be enabled to perform identity mapping in SAF. For more information, see [Additional security rights that need to be granted](../../user-guide/configure-zos-system.md#configure-main-Zowe-server-use-identity-mapping). * ZSS has to be configured to participate in Zowe SSO. For more information, see [Using web tokens for sso on Zlux and ZSS](../../user-guide/configure-certificates-keystore.md#using-web-tokens-for-sso-on-zlux-and-zss). -* -##### JWT Token - -When the client authenticates with the API ML, the client receives the JWT token in exchange. This token can be used for further -authentication. If z/OSMF is configured as the authentication provider and the client already received a JWT token produced -by z/OSMF, it is possible to reuse this token within API ML for authentication. #### Authentication providers @@ -312,11 +309,9 @@ Authorization is a method used to determine access rights of an entity. In the API ML, authorization is performed by the z/OS security manager ([ACF2](https://www.broadcom.com/products/mainframe/identity-access/acf2), [IBM RACF](https://www.ibm.com/support/knowledgecenter/zosbasics/com.ibm.zos.zsecurity/zsecc_042.htm), [Top Secret](https://www.broadcom.com/products/mainframe/identity-access/top-secret)). An authentication token is used as proof of valid authentication. The authorization checks, however, are always performed by the z/OS security manager. -### JWT Token - -The JWT secret that signs the JWT Token is an asymmetric private key that is generated during Zowe keystore configuration. The JWT token is signed with the RS256 signature algorithm. +### JWT or JSON Web Token -You can find the JWT secret, alias `localhost`, in the PKCS12 keystore that is stored in `${KEYSTORE_DIRECTORY}/localhost/localhost.keystore.p12`. The public key necessary to validate the JWT signature is read from the keystore. +API Mediation layer can issue a JSON Web Token (JWT) if needed. This is useful when specified authentication provider is not providing its own token. Each token can be validated against API Mediation Layer using `query` [authentication endpoint](#authentication-endpoints). You can also use the endpoint `/gateway/api/v1/auth/keys/public/all` (preferred option) and `/api/v1/gateway/auth/keys/public/all` to obtain all public keys that can be used to verify JWT tokens signature in standard [JWK format](https://openid.net/specs/). diff --git a/docs/extend/extend-apiml/onboard-direct-eureka-call.md b/docs/extend/extend-apiml/onboard-direct-eureka-call.md index 3940073710..dbf51688a2 100644 --- a/docs/extend/extend-apiml/onboard-direct-eureka-call.md +++ b/docs/extend/extend-apiml/onboard-direct-eureka-call.md @@ -319,24 +319,57 @@ The following parameters define the service authentication method: **Note:** This is the default scheme when no authentication parameters are specified. - * **zoweJwt** + * **zoweJwt** This value specifies that a service accepts the Zowe JWT token. No additional processing is done by the API Gateway. - * **httpBasicPassTicket** + * **httpBasicPassTicket** This value specifies that a service accepts PassTickets in the Authorization header of the HTTP requests using the basic authentication scheme. It is necessary to provide a service APPLID in the `apiml.authentication.applid` parameter. **Tip:** For more information, see [Enabling PassTicket creation for API Services that Accept PassTickets](api-mediation-passtickets). - * **zosmf** + * **zosmf** This value specifies that a service accepts z/OSMF LTPA (Lightweight Third-Party Authentication). This scheme should only be used for a z/OSMF service used by the API Gateway Authentication Service, and other z/OSMF services that are using the same LTPA key. **Tip:** For more information about z/OSMF Single Sign-on, see [Establishing a single sign-on environment](https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zosmfcore.multisysplex.help.doc/izuG00hpManageSecurityCredentials.html). + * **safIdt** + + This value specifies that the application recognizes the SAF IDT scheme and fills the `X-SAF-Token` header with the token produced by the Saf IDT provider implementation. + + For more information, see [SAF IDT provider](implement-new-saf-provider.md) + + * **x509** + + This value specifies that a service accepts client certificates forwarded in the HTTP header. The Gateway service extracts information from a valid client certificate. For validation, the certificate needs to be trusted by API Mediation Layer, and needs to contain a Client Authentication (1.3.6.1.5.5.7.3.2) entry in Extended Key Usage. To use this scheme, it is also necessary to specify which headers to include. Specify these parameters in `headers`. + + * **zosmf** + + This value specifies that a service accepts z/OSMF LTPA (Lightweight Third-Party Authentication). + This scheme should only be used for a z/OSMF service used by the API Gateway Authentication Service, and other z/OSMF services that are using the same LTPA key. + + **Tip:** For more information about z/OSMF Single Sign-on, see [Establishing a single sign-on environment](https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zosmfcore.multisysplex.help.doc/izuG00hpManageSecurityCredentials.html). + +* **authentication.headers** + + When the `x509` scheme is specified, use the `headers` parameter to select which values to send to a service. Use one of the following values: + + * `X-Certificate-Public` + + The public part of the client certificate base64 encoded + + * `X-Certificate-DistinguishedName` + + The distinguished name the from client certificate + + * `X-Certificate-CommonName` + + The common name from the client certificate + * **apiml.authentication.applid** This parameter specifies a service APPLID. diff --git a/docs/extend/extend-apiml/onboard-plain-java-enabler.md b/docs/extend/extend-apiml/onboard-plain-java-enabler.md index 61927b81bf..ed907cc3ab 100644 --- a/docs/extend/extend-apiml/onboard-plain-java-enabler.md +++ b/docs/extend/extend-apiml/onboard-plain-java-enabler.md @@ -569,21 +569,21 @@ where: This value specifies that a service accepts client certificates forwarded in the HTTP header. The Gateway service extracts information from a valid client certificate. For validation, the certificate needs to be trusted by API Mediation Layer, and needs to contain a Client Authentication (1.3.6.1.5.5.7.3.2) entry in Extended Key Usage. To use this scheme, it is also necessary to specify which headers to include. Specify these parameters in `headers`. - * **headers** +* **authentication.headers** - When the `x509` scheme is specified, use the `headers` parameter to select which values to send to a service. Use one of the following values: - - * `X-Certificate-Public` - - The public part of client certificate base64 encoded + When the `x509` scheme is specified, use the `headers` parameter to select which values to send to a service. Use one of the following values: + + * `X-Certificate-Public` + + The public part of client certificate base64 encoded - * `X-Certificate-DistinguishedName` - - The distinguished name from client certificate + * `X-Certificate-DistinguishedName` + + The distinguished name from client certificate - * `X-Certificate-CommonName` - - The common name from the client certificate + * `X-Certificate-CommonName` + + The common name from the client certificate * **authentication.applid** diff --git a/docs/extend/extend-apiml/onboard-static-definition.md b/docs/extend/extend-apiml/onboard-static-definition.md index 5a1f232099..f09c483216 100644 --- a/docs/extend/extend-apiml/onboard-static-definition.md +++ b/docs/extend/extend-apiml/onboard-static-definition.md @@ -358,7 +358,23 @@ additionalServiceMetadata: This scheme should only be used for a z/OSMF service used by the API Gateway Authentication Service, and other z/OSMF services that are using the same LTPA key. **Tip:** For more information about z/OSMF Single Sign-on, see [Establishing a single sign-on environment](https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zosmfcore.multisysplex.help.doc/izuG00hpManageSecurityCredentials.html). - + + * **authentication.headers** + + When the `x509` scheme is specified, use the `headers` parameter to select which values to send to a service. Use one of the following values: + + * `X-Certificate-Public` + + The public part of client certificate base64 encoded + + * `X-Certificate-DistinguishedName` + + The distinguished name from client certificate + + * `X-Certificate-CommonName` + + The common name from the client certificate + * **authentication.applid** This parameter specifies a service APPLID. diff --git a/docs/extend/extend-apiml/websocket.md b/docs/extend/extend-apiml/websocket.md index 6c9863774e..1ab5776d39 100644 --- a/docs/extend/extend-apiml/websocket.md +++ b/docs/extend/extend-apiml/websocket.md @@ -1,6 +1,6 @@ # WebSocket support in API Gateway -The API Gateway includes a basic WebSocket proxy which enables the Gateway access to applications that use the WebSocket protocol together with a web UI and REST API. +The API Gateway includes a basic WebSocket proxy which enables the Gateway to access applications that use the WebSocket protocol together with a web UI and REST API. The service can define what WebSocket services are exposed using Eureka metadata. @@ -18,22 +18,31 @@ The service can define what WebSocket services are exposed using Eureka metadata These metadata make it possible for requests from `wss://gatewayHost:port/ws/v1/serviceId/path` to map to `ws://serviceHost:port/discoverableclient/ws/path`, where: -* **`serviceId`** +* **`serviceId`** is the service ID of the service -* **`path`** +* **`path`** is the remaining path segment in the URL. ## Security and Authentication -The API Gateway is usually using TLS with the `wss` protocol. Services that use TLS enable the API Gateway to use `wss` to access these services. Services that do not use TLS require the API Gateway to use the `ws` protocol without TLS. +The API Gateway usually uses TLS with the `wss` protocol. Services that use TLS enable the API Gateway to use `wss` to access these services. Services that do not use TLS require the API Gateway to use the `ws` protocol without TLS. The API Gateway also supports basic authentication via WebSocket. +## Subprotocols + +In addition to plain WebSocket support, API Mediation Layer also supports WebSocket subprotocols. Currently, only STOMP v1.2 and STOMP v1.1 are supported and tested. + +**Note:** It is possible to update the list of currently supported WebSocket subprotocols. Update the API Gateway configuration using the environment variable `SERVER_WEBSOCKET_SUPPORTEDPROTOCOLS` with the value of comma-separated subprotocol names. Support for additional subprotocols is not guaranteed as these subprotocols are not being tested. + + **Example:** +``` +SERVER_WEBSOCKET_SUPPORTEDPROTOCOLS=v12.stomp,v11.stomp,wamp,soap +``` ## High availability -In the high availability scenario, the API Gateway makes it possible to open a new Websocket session by leveraging the load balancing mechanism. -As such, even if an instance of the service which implements WebSocket is taken off, -the communication between the client and the server can be handled by the API Gateway by propagating the session to the alive instance. +In the high availability scenario, the API Gateway makes it possible to open a new Websocket session by utilizing the load balancing mechanism. +Communication between the client and the server is handled by the API Gateway by propagating the session to a live instance. ## Diagnostics diff --git a/docs/getting-started/release-notes/v1_27_3.md b/docs/getting-started/release-notes/v1_27_3.md new file mode 100644 index 0000000000..1a094d170b --- /dev/null +++ b/docs/getting-started/release-notes/v1_27_3.md @@ -0,0 +1,41 @@ +# Version 1.27.3 (April 2022) + +Welcome to the Version 1.27.3 release of Zowe! + +## New features and enhancements + +### Imperative CLI Framework + +Imperative CLI Framework contains the following enhancements: + +- Enhancement: Sorted output of `plugins list` command in alphabetical order to make it easier to read. ([#489](https://github.com/zowe/imperative/issues/489)) +- Enhancement: Added `--short option` to `plugins list` command to abbreviate its output. ([#743](https://github.com/zowe/imperative/issues/743)) + +## Bug fixes + +### Zowe CLI + +The following bugs were fixed in core Zowe CLI: + +- BugFix: Fixed inconsistent capitalization with z/OS console command. ([#961](https://github.com/zowe/zowe-cli/issues/961)) +- BugFix: Updated dependencies for improved security +- Documentation: Updated help text for the `zowe jobs submit stdin` command. ([#1284](https://github.com/zowe/zowe-cli/issues/1284)) + +### Imperative CLI Framework + +The following bugs were fixed in Imperative CLI Framework: + +- BugFix: Fixed single character options rendered in help with double dash instead of single dash. ([#638](https://github.com/zowe/imperative/issues/638)) +- BugFix: Updated dependencies for improved security + +### DB2 Plug-in for Zowe CLI + +The following bug was fixed in the plug-in: + +- BugFix: Updated dependencies for improved security + +### Secure Credential Store Plug-in for Zowe CLI + +The following bug was fixed in the plug-in: + +- BugFix: Updated dependencies for improved security diff --git a/docs/user-guide/api-mediation-api-catalog.md b/docs/user-guide/api-mediation-api-catalog.md index 299ee6c33c..6c9a9fb825 100644 --- a/docs/user-guide/api-mediation-api-catalog.md +++ b/docs/user-guide/api-mediation-api-catalog.md @@ -159,3 +159,7 @@ Successful requests return a pop-up notification that displays the message, `The **Note:** The manual **Refresh Static APIs** option applies only to static service APIs. Changes to the status of services that are onboarded to allow for dynamic discovery require a restart of the specific services where changes are applied. It is not necessary to restart the API Catalog or the Discovery Service. +## Change password via API Catalog + +In case of expiration of the mainframe password, API Catalog offers the possibility to set a new password, using either the SAF or the z/OSMF provider. +For more information about the password change functionality, see [Advanced Gateway features configuration](../user-guide/api-mediation/api-gateway-configuration.md). \ No newline at end of file diff --git a/docs/user-guide/api-mediation/api-gateway-configuration.md b/docs/user-guide/api-mediation/api-gateway-configuration.md index 4acdf53a3a..34773249b8 100644 --- a/docs/user-guide/api-mediation/api-gateway-configuration.md +++ b/docs/user-guide/api-mediation/api-gateway-configuration.md @@ -75,7 +75,9 @@ Enable the `/gateway/api/v1/auth/refresh` endpoint to exchange a valid JWT token ### Change password with SAF provider -Update the user password using the SAF Authentication provider. To use this functionality, add the parameter `newPassword` on the login endpoint `/gateway/api/v1/auth/login`. The Gateway service returns a valid JWT with the response code `204` as a result of successful password change. The user is then authenticated and can consume APIs through the Gateway. If it is not possible to change the password for any reason, the response code is `401`. +Update the user password using the SAF Authentication provider. To use this functionality, add the parameter `newPassword` on the login endpoint `/gateway/api/v1/auth/login`. The Gateway service returns a valid JWT with the response code `204` as a result of successful password change. The user is then authenticated and can consume APIs through the Gateway. If it is not possible to change the password for any reason, the response code is `401`. + +This feature is also available in the API Catalog. Use a `POST` REST call against the URL `/gateway/api/v1/auth/login`: @@ -99,6 +101,26 @@ where: * **`120`** Specifies the number of days before the password can be reset + +### Change password with z/OSMF provider + +Update the user password using the z/OSMF Authentication provider. To use this functionality, add the parameter `newPassword` on the login endpoint `/gateway/api/v1/auth/login`. The Gateway service returns a valid JWT with the response code `204` as a result of successful password change. The user is then authenticated and can consume APIs through the Gateway. If it is not possible to change the password for any reason, the response code is `401`. + +This feature is also available in the API Catalog. + +Use a `POST` REST call against the URL `/gateway/api/v1/auth/login`: + + ``` + { + "username" : "", + "password" : "", + "newPassword" : "" +} +``` + +**Note:** +In order to use the password change functionality via z/OSMF, it is necessary to install the PTF for APAR PH34912. + ## Gateway retry policy To change the Gateway retry policy, edit properties in the `/components/gateway/bin/start.sh` file: diff --git a/sidebars.js b/sidebars.js index fe04251672..5aabfd07b6 100644 --- a/sidebars.js +++ b/sidebars.js @@ -15,6 +15,7 @@ module.exports = { type: "category", label: "Release notes", items: [ + "getting-started/release-notes/v1_27_3", "getting-started/release-notes/v1_27_2", "getting-started/release-notes/v1_27_1", "getting-started/release-notes/v1_27", @@ -297,6 +298,7 @@ module.exports = { "extend/extend-apiml/api-mediation-routing", "extend/extend-apiml/api-mediation-passtickets", "extend/extend-apiml/custom-metadata", + "extend/extend-apiml/websocket", { type: "category", label: "Caching service", diff --git a/static/stable/CLIReference_Zowe.pdf b/static/stable/CLIReference_Zowe.pdf index c5dad5609a..9dad23889d 100644 Binary files a/static/stable/CLIReference_Zowe.pdf and b/static/stable/CLIReference_Zowe.pdf differ diff --git a/static/stable/web_help/docs/all.html b/static/stable/web_help/docs/all.html index 637c2f5bd0..4487d97e17 100644 --- a/static/stable/web_help/docs/all.html +++ b/static/stable/web_help/docs/all.html @@ -2985,7 +2985,7 @@

Positional Arguments

Options

  • -

    --q (string)

    +

    -q (string)

    • Q={REQ|RDY}

      @@ -35248,6 +35248,15 @@

      Examples

      List all plug-ins installed.

      Usage

      zowe plugins list [options]

      +

      Options

      +
        +
      • +

        --short | -s (boolean)

        +
          +
        • Show output in abbreviated format
        • +
        +
      • +

      zowepluginsuninstall

      Uninstall plug-ins.

      Usage

      @@ -60369,6 +60378,12 @@

      Options

  • +

    --record | -r (boolean)

    +
      +
    • Download the file content in record mode, which means that no data conversion is performed and the record length is prepended to the data. The data transfer process returns each line as-is, without translation. No delimiters are added between records. Conflicts with binary.
    • +
    +
  • +
  • --volume-serial | --vs (string)

    • The volume serial (VOLSER) where the data set resides. You can use this option at any time. However, the VOLSER is required only when the data set is not cataloged on the system. A VOLSER is analogous to a drive name on a PC.
    • @@ -60542,6 +60557,12 @@

      Options

  • +

    --record | -r (boolean)

    +
      +
    • Download the file content in record mode, which means that no data conversion is performed and the record length is prepended to the data. The data transfer process returns each line as-is, without translation. No delimiters are added between records. Conflicts with binary.
    • +
    +
  • +
  • --volume-serial | --vs (string)

    • The volume serial (VOLSER) where the data set resides. You can use this option at any time. However, the VOLSER is required only when the data set is not cataloged on the system. A VOLSER is analogous to a drive name on a PC.
    • @@ -62659,6 +62680,12 @@

      Options

  • +

    --record | -r (boolean)

    +
      +
    • Data content in record mode, which means that no data conversion is performed and the record length is prepended to the data. The data transfer process returns each line as-is, without translation. No delimiters are added between records. Conflicts with binary.
    • +
    +
  • +
  • --volume-serial | --vs (string)

    • The volume serial (VOLSER) where the data set resides. You can use this option at any time. However, the VOLSER is required only when the data set is not cataloged on the system. A VOLSER is analogous to a drive name on a PC.
    • @@ -63040,6 +63067,12 @@

      Options

  • +

    --record | -r (boolean)

    +
      +
    • Data content in record mode, which means that no data conversion is performed and the record length is prepended to the data. The data transfer process returns each line as-is, without translation. No delimiters are added between records. Conflicts with binary.
    • +
    +
  • +
  • --volume-serial | --vs (string)

    • The volume serial (VOLSER) where the data set resides. You can use this option at any time. However, the VOLSER is required only when the data set is not cataloged on the system. A VOLSER is analogous to a drive name on a PC.
    • @@ -63347,6 +63380,12 @@

      Options

  • +

    --record | -r (boolean)

    +
      +
    • Data content in record mode, which means that no data conversion is performed and the record length is prepended to the data. The data transfer process returns each line as-is, without translation. No delimiters are added between records. Conflicts with binary.
    • +
    +
  • +
  • --volume-serial | --vs (string)

    • The volume serial (VOLSER) where the data set resides. You can use this option at any time. However, the VOLSER is required only when the data set is not cataloged on the system. A VOLSER is analogous to a drive name on a PC.
    • @@ -67553,7 +67592,7 @@

      Positional Arguments

      Options

      • -

        --modifyVersion (string)

        +

        --modify-version (string)

        • Using this option to set X-IBM-Job-Modify-Version to "2.0" will make the cancel job API synchronous. Otherwise, it will be asynchronous by default.

          @@ -67692,7 +67731,7 @@

          Positional Arguments

          Options

          • -

            --modifyVersion (string)

            +

            --modify-version (string)

            • Using this option to set X-IBM-Job-Modify-Version to "2.0" will make the delete job API synchronous. Otherwise, it will be asynchronous by default.

              @@ -68823,6 +68862,21 @@

              Response Format Options

          +

          Examples

          +
            +
          • +

            Submit the JCL in the file "iefbr14.txt" via standard in:

            +
              +
            • zowe zos-jobs submit stdin < iefbr14.txt
            • +
            +
          • +
          • +

            Submit the JCL in the file "iefbr14.txt" via standard in from the output of another command:

            +
              +
            • cat iefbr14.txt | zowe zos-jobs submit stdin
            • +
            +
          • +

          zowezos-jobsview

          View details of z/OS jobs on spool/JES queues.

          zowezos-jobsviewjob-status-by-jobid

          diff --git a/static/stable/web_help/docs/zowe_ca7_release_jobnumber.html b/static/stable/web_help/docs/zowe_ca7_release_jobnumber.html index cefd1f8c1f..82d3acdc11 100644 --- a/static/stable/web_help/docs/zowe_ca7_release_jobnumber.html +++ b/static/stable/web_help/docs/zowe_ca7_release_jobnumber.html @@ -26,7 +26,7 @@

          Positional Arguments

          Options

          • -

            --q (string)

            +

            -q (string)

            • Q={REQ|RDY}

              diff --git a/static/stable/web_help/docs/zowe_plugins_list.html b/static/stable/web_help/docs/zowe_plugins_list.html index 23b1f137ae..4354bfdd63 100644 --- a/static/stable/web_help/docs/zowe_plugins_list.html +++ b/static/stable/web_help/docs/zowe_plugins_list.html @@ -10,6 +10,15 @@

              zoweplugins

              List all plug-ins installed.

              Usage

              zowe plugins list [options]

              +

              Options

              +
                +
              • +

                --short | -s (boolean)

                +
                  +
                • Show output in abbreviated format
                • +
                +
              • +
              diff --git a/static/stable/web_help/docs/zowe_zos-console.html b/static/stable/web_help/docs/zowe_zos-console.html index 74349f95b1..8fa0016714 100644 --- a/static/stable/web_help/docs/zowe_zos-console.html +++ b/static/stable/web_help/docs/zowe_zos-console.html @@ -15,7 +15,7 @@

              Usage

              Groups

              • collect - Collect z/OS console command responses
              • -
              • issue - Issue z/OS Console Commands
              • +
              • issue - Issue z/OS console commands
              diff --git a/static/stable/web_help/docs/zowe_zos-files_download_all-members.html b/static/stable/web_help/docs/zowe_zos-files_download_all-members.html index 78da4c6ee9..912d9ca195 100644 --- a/static/stable/web_help/docs/zowe_zos-files_download_all-members.html +++ b/static/stable/web_help/docs/zowe_zos-files_download_all-members.html @@ -74,6 +74,12 @@

              Options

          • +

            --record | -r (boolean)

            +
              +
            • Download the file content in record mode, which means that no data conversion is performed and the record length is prepended to the data. The data transfer process returns each line as-is, without translation. No delimiters are added between records. Conflicts with binary.
            • +
            +
          • +
          • --volume-serial | --vs (string)

            • The volume serial (VOLSER) where the data set resides. You can use this option at any time. However, the VOLSER is required only when the data set is not cataloged on the system. A VOLSER is analogous to a drive name on a PC.
            • diff --git a/static/stable/web_help/docs/zowe_zos-files_download_data-set.html b/static/stable/web_help/docs/zowe_zos-files_download_data-set.html index 7d3712b05f..185c18be3f 100644 --- a/static/stable/web_help/docs/zowe_zos-files_download_data-set.html +++ b/static/stable/web_help/docs/zowe_zos-files_download_data-set.html @@ -55,6 +55,12 @@

              Options

          • +

            --record | -r (boolean)

            +
              +
            • Download the file content in record mode, which means that no data conversion is performed and the record length is prepended to the data. The data transfer process returns each line as-is, without translation. No delimiters are added between records. Conflicts with binary.
            • +
            +
          • +
          • --volume-serial | --vs (string)

            • The volume serial (VOLSER) where the data set resides. You can use this option at any time. However, the VOLSER is required only when the data set is not cataloged on the system. A VOLSER is analogous to a drive name on a PC.
            • diff --git a/static/stable/web_help/docs/zowe_zos-files_upload_dir-to-pds.html b/static/stable/web_help/docs/zowe_zos-files_upload_dir-to-pds.html index b1fd251de5..dce785afd9 100644 --- a/static/stable/web_help/docs/zowe_zos-files_upload_dir-to-pds.html +++ b/static/stable/web_help/docs/zowe_zos-files_upload_dir-to-pds.html @@ -49,6 +49,12 @@

              Options

          • +

            --record | -r (boolean)

            +
              +
            • Data content in record mode, which means that no data conversion is performed and the record length is prepended to the data. The data transfer process returns each line as-is, without translation. No delimiters are added between records. Conflicts with binary.
            • +
            +
          • +
          • --volume-serial | --vs (string)

            • The volume serial (VOLSER) where the data set resides. You can use this option at any time. However, the VOLSER is required only when the data set is not cataloged on the system. A VOLSER is analogous to a drive name on a PC.
            • diff --git a/static/stable/web_help/docs/zowe_zos-files_upload_file-to-data-set.html b/static/stable/web_help/docs/zowe_zos-files_upload_file-to-data-set.html index 1e46edd35b..12bed5801d 100644 --- a/static/stable/web_help/docs/zowe_zos-files_upload_file-to-data-set.html +++ b/static/stable/web_help/docs/zowe_zos-files_upload_file-to-data-set.html @@ -49,6 +49,12 @@

              Options

          • +

            --record | -r (boolean)

            +
              +
            • Data content in record mode, which means that no data conversion is performed and the record length is prepended to the data. The data transfer process returns each line as-is, without translation. No delimiters are added between records. Conflicts with binary.
            • +
            +
          • +
          • --volume-serial | --vs (string)

            • The volume serial (VOLSER) where the data set resides. You can use this option at any time. However, the VOLSER is required only when the data set is not cataloged on the system. A VOLSER is analogous to a drive name on a PC.
            • diff --git a/static/stable/web_help/docs/zowe_zos-files_upload_stdin-to-data-set.html b/static/stable/web_help/docs/zowe_zos-files_upload_stdin-to-data-set.html index 80d06b11a2..8578ce4193 100644 --- a/static/stable/web_help/docs/zowe_zos-files_upload_stdin-to-data-set.html +++ b/static/stable/web_help/docs/zowe_zos-files_upload_stdin-to-data-set.html @@ -37,6 +37,12 @@

              Options

          • +

            --record | -r (boolean)

            +
              +
            • Data content in record mode, which means that no data conversion is performed and the record length is prepended to the data. The data transfer process returns each line as-is, without translation. No delimiters are added between records. Conflicts with binary.
            • +
            +
          • +
          • --volume-serial | --vs (string)

            • The volume serial (VOLSER) where the data set resides. You can use this option at any time. However, the VOLSER is required only when the data set is not cataloged on the system. A VOLSER is analogous to a drive name on a PC.
            • diff --git a/static/stable/web_help/docs/zowe_zos-jobs_cancel_job.html b/static/stable/web_help/docs/zowe_zos-jobs_cancel_job.html index d23b899178..de1b0a1eea 100644 --- a/static/stable/web_help/docs/zowe_zos-jobs_cancel_job.html +++ b/static/stable/web_help/docs/zowe_zos-jobs_cancel_job.html @@ -22,7 +22,7 @@

              Positional Arguments

              Options

              • -

                --modifyVersion (string)

                +

                --modify-version (string)

                • Using this option to set X-IBM-Job-Modify-Version to "2.0" will make the cancel job API synchronous. Otherwise, it will be asynchronous by default.

                  diff --git a/static/stable/web_help/docs/zowe_zos-jobs_delete_job.html b/static/stable/web_help/docs/zowe_zos-jobs_delete_job.html index 3c3c9b3909..a3e5e626cf 100644 --- a/static/stable/web_help/docs/zowe_zos-jobs_delete_job.html +++ b/static/stable/web_help/docs/zowe_zos-jobs_delete_job.html @@ -22,7 +22,7 @@

                  Positional Arguments

                  Options

                  • -

                    --modifyVersion (string)

                    +

                    --modify-version (string)

                    • Using this option to set X-IBM-Job-Modify-Version to "2.0" will make the delete job API synchronous. Otherwise, it will be asynchronous by default.

                      diff --git a/static/stable/web_help/docs/zowe_zos-jobs_submit_stdin.html b/static/stable/web_help/docs/zowe_zos-jobs_submit_stdin.html index cb0ce6f860..5d839541f4 100644 --- a/static/stable/web_help/docs/zowe_zos-jobs_submit_stdin.html +++ b/static/stable/web_help/docs/zowe_zos-jobs_submit_stdin.html @@ -174,6 +174,21 @@

                      Response Format Options

                  +

                  Examples

                  +
                    +
                  • +

                    Submit the JCL in the file "iefbr14.txt" via standard in:

                    +
                      +
                    • zowe zos-jobs submit stdin < iefbr14.txt
                    • +
                    +
                  • +
                  • +

                    Submit the JCL in the file "iefbr14.txt" via standard in from the output of another command:

                    +
                      +
                    • cat iefbr14.txt | zowe zos-jobs submit stdin
                    • +
                    +
                  • +
                  diff --git a/static/stable/web_help/tree-data.js b/static/stable/web_help/tree-data.js index bbc72126a4..f515bab5eb 100644 --- a/static/stable/web_help/tree-data.js +++ b/static/stable/web_help/tree-data.js @@ -1,5 +1,5 @@ /* This file is automatically generated, do not edit manually! */ const headerStr = "Zowe CLI"; -const footerStr = "Release: Zowe v1.27.2"; +const footerStr = "Release: Zowe v1.27.3"; const treeNodes = [{"id":"zowe.html","text":"zowe","children":[{"id":"zowe_auth.html","text":"auth","children":[{"id":"zowe_auth_login.html","text":"login | li","children":[{"id":"zowe_auth_login_apiml.html","text":"apiml"}]},{"id":"zowe_auth_logout.html","text":"logout | lo","children":[{"id":"zowe_auth_logout_apiml.html","text":"apiml"}]}]},{"id":"zowe_ca7.html","text":"ca7 | 7","children":[{"id":"zowe_ca7_cancel.html","text":"cancel | c","children":[{"id":"zowe_ca7_cancel_jobnumber.html","text":"jobnumber | jn"}]},{"id":"zowe_ca7_demand.html","text":"demand | d","children":[{"id":"zowe_ca7_demand_job.html","text":"job | j"},{"id":"zowe_ca7_demand_jobl.html","text":"jobl | jl"}]},{"id":"zowe_ca7_demandh.html","text":"demandh | dh","children":[{"id":"zowe_ca7_demandh_job.html","text":"job | j"},{"id":"zowe_ca7_demandh_jobl.html","text":"jobl | jl"}]},{"id":"zowe_ca7_jobstatus.html","text":"jobstatus | js","children":[{"id":"zowe_ca7_jobstatus_jobnumber.html","text":"jobnumber | jn"}]},{"id":"zowe_ca7_release.html","text":"release | rl","children":[{"id":"zowe_ca7_release_jobnumber.html","text":"jobnumber | jn"}]},{"id":"zowe_ca7_restart.html","text":"restart | rs","children":[{"id":"zowe_ca7_restart_jobnumber.html","text":"jobnumber | jn"}]},{"id":"zowe_ca7_run.html","text":"run | r","children":[{"id":"zowe_ca7_run_job.html","text":"job | j"},{"id":"zowe_ca7_run_jobl.html","text":"jobl | jl"}]},{"id":"zowe_ca7_runh.html","text":"runh | rh","children":[{"id":"zowe_ca7_runh_job.html","text":"job | j"},{"id":"zowe_ca7_runh_jobl.html","text":"jobl | jl"}]}]},{"id":"zowe_caspool.html","text":"caspool | esf","children":[{"id":"zowe_caspool_issue.html","text":"issue | is","children":[{"id":"zowe_caspool_issue_command.html","text":"command | cmd"}]}]},{"id":"zowe_caview.html","text":"caview | cv","children":[{"id":"zowe_caview_download.html","text":"download | dl","children":[{"id":"zowe_caview_download_report.html","text":"report | r"}]},{"id":"zowe_caview_export.html","text":"export | exp","children":[{"id":"zowe_caview_export_report.html","text":"report | r"}]},{"id":"zowe_caview_get.html","text":"get","children":[{"id":"zowe_caview_get_user.html","text":"user","children":[{"id":"zowe_caview_get_user_settings.html","text":"settings"}]}]},{"id":"zowe_caview_list.html","text":"list | ls","children":[{"id":"zowe_caview_list_export-rules.html","text":"export-rules | rules"},{"id":"zowe_caview_list_report.html","text":"report | repo","children":[{"id":"zowe_caview_list_report_index-names.html","text":"index-names | indexes"},{"id":"zowe_caview_list_report_index-values.html","text":"index-values"},{"id":"zowe_caview_list_report_logical-views.html","text":"logical-views | views"}]},{"id":"zowe_caview_list_reports.html","text":"reports"},{"id":"zowe_caview_list_repositories.html","text":"repositories | repos"}]},{"id":"zowe_caview_search.html","text":"search | find","children":[{"id":"zowe_caview_search_index.html","text":"index","children":[{"id":"zowe_caview_search_index_names.html","text":"names"},{"id":"zowe_caview_search_index_reports.html","text":"reports"},{"id":"zowe_caview_search_index_values.html","text":"values"}]}]},{"id":"zowe_caview_set.html","text":"set","children":[{"id":"zowe_caview_set_user.html","text":"user","children":[{"id":"zowe_caview_set_user_distribution.html","text":"distribution"},{"id":"zowe_caview_set_user_mode.html","text":"mode"}]}]}]},{"id":"zowe_cics.html","text":"cics","children":[{"id":"zowe_cics_add-to-list.html","text":"add-to-list | atl","children":[{"id":"zowe_cics_add-to-list_csdGroup.html","text":"csdGroup | csdg"}]},{"id":"zowe_cics_define.html","text":"define | def","children":[{"id":"zowe_cics_define_program.html","text":"program | prog"},{"id":"zowe_cics_define_transaction.html","text":"transaction | tran"},{"id":"zowe_cics_define_urimap-client.html","text":"urimap-client | uc"},{"id":"zowe_cics_define_urimap-pipeline.html","text":"urimap-pipeline | up"},{"id":"zowe_cics_define_urimap-server.html","text":"urimap-server | us"},{"id":"zowe_cics_define_webservice.html","text":"webservice | web"}]},{"id":"zowe_cics_delete.html","text":"delete | del","children":[{"id":"zowe_cics_delete_program.html","text":"program | prog"},{"id":"zowe_cics_delete_transaction.html","text":"transaction | tran"},{"id":"zowe_cics_delete_urimap.html","text":"urimap"},{"id":"zowe_cics_delete_webservice.html","text":"webservice | web"}]},{"id":"zowe_cics_disable.html","text":"disable","children":[{"id":"zowe_cics_disable_urimap.html","text":"urimap"}]},{"id":"zowe_cics_discard.html","text":"discard | dis","children":[{"id":"zowe_cics_discard_program.html","text":"program | prog"},{"id":"zowe_cics_discard_transaction.html","text":"transaction | tran"},{"id":"zowe_cics_discard_urimap.html","text":"urimap"}]},{"id":"zowe_cics_enable.html","text":"enable | en","children":[{"id":"zowe_cics_enable_urimap.html","text":"urimap"}]},{"id":"zowe_cics_get.html","text":"get","children":[{"id":"zowe_cics_get_resource.html","text":"resource | res"}]},{"id":"zowe_cics_install.html","text":"install | ins","children":[{"id":"zowe_cics_install_program.html","text":"program | prog"},{"id":"zowe_cics_install_transaction.html","text":"transaction | tran"},{"id":"zowe_cics_install_urimap.html","text":"urimap"}]},{"id":"zowe_cics_refresh.html","text":"refresh | ref","children":[{"id":"zowe_cics_refresh_program.html","text":"program | prog"}]},{"id":"zowe_cics_remove-from-list.html","text":"remove-from-list | rfl","children":[{"id":"zowe_cics_remove-from-list_csdGroup.html","text":"csdGroup | csdg"}]}]},{"id":"zowe_cics-deploy.html","text":"cics-deploy | cdep","children":[{"id":"zowe_cics-deploy_deploy.html","text":"deploy | d | dep","children":[{"id":"zowe_cics-deploy_deploy_bundle.html","text":"bundle | b | bun | bund"}]},{"id":"zowe_cics-deploy_generate.html","text":"generate | g | gen","children":[{"id":"zowe_cics-deploy_generate_bundle.html","text":"bundle | b | bun | bund"}]},{"id":"zowe_cics-deploy_push.html","text":"push | p","children":[{"id":"zowe_cics-deploy_push_bundle.html","text":"bundle | b | bun | bund"}]},{"id":"zowe_cics-deploy_undeploy.html","text":"undeploy | u | udep","children":[{"id":"zowe_cics-deploy_undeploy_bundle.html","text":"bundle | b | bun | bund"}]}]},{"id":"zowe_config.html","text":"config","children":[{"id":"zowe_config_get.html","text":"get | ge"},{"id":"zowe_config_list.html","text":"list | li"},{"id":"zowe_config_reset.html","text":"reset | re"},{"id":"zowe_config_set.html","text":"set | se"}]},{"id":"zowe_db2.html","text":"db2","children":[{"id":"zowe_db2_call.html","text":"call","children":[{"id":"zowe_db2_call_procedure.html","text":"procedure | proc | sp"}]},{"id":"zowe_db2_execute.html","text":"execute","children":[{"id":"zowe_db2_execute_sql.html","text":"sql"}]},{"id":"zowe_db2_export.html","text":"export","children":[{"id":"zowe_db2_export_table.html","text":"table"}]}]},{"id":"zowe_endevor.html","text":"endevor","children":[{"id":"zowe_endevor_add.html","text":"add","children":[{"id":"zowe_endevor_add_element.html","text":"element | elem | ele"}]},{"id":"zowe_endevor_approve.html","text":"approve | aprv","children":[{"id":"zowe_endevor_approve_package.html","text":"package | pkg"}]},{"id":"zowe_endevor_backin.html","text":"backin","children":[{"id":"zowe_endevor_backin_package.html","text":"package | pkg"}]},{"id":"zowe_endevor_backout.html","text":"backout","children":[{"id":"zowe_endevor_backout_package.html","text":"package | pkg"}]},{"id":"zowe_endevor_cast.html","text":"cast","children":[{"id":"zowe_endevor_cast_package.html","text":"package | pkg"}]},{"id":"zowe_endevor_commit.html","text":"commit","children":[{"id":"zowe_endevor_commit_package.html","text":"package | pkg"}]},{"id":"zowe_endevor_create.html","text":"create","children":[{"id":"zowe_endevor_create_package.html","text":"package | pkg"}]},{"id":"zowe_endevor_delete.html","text":"delete | del","children":[{"id":"zowe_endevor_delete_element.html","text":"element | elem | ele"},{"id":"zowe_endevor_delete_package.html","text":"package | pkg"}]},{"id":"zowe_endevor_deny.html","text":"deny","children":[{"id":"zowe_endevor_deny_package.html","text":"package | pkg"}]},{"id":"zowe_endevor_execute.html","text":"execute","children":[{"id":"zowe_endevor_execute_package.html","text":"package | pkg"}]},{"id":"zowe_endevor_generate.html","text":"generate | gen","children":[{"id":"zowe_endevor_generate_element.html","text":"element | elem | ele"}]},{"id":"zowe_endevor_list.html","text":"list","children":[{"id":"zowe_endevor_list_elements.html","text":"elements | elem | ele"},{"id":"zowe_endevor_list_environments.html","text":"environments | environment | env"},{"id":"zowe_endevor_list_instances.html","text":"instances | instance | inst | i"},{"id":"zowe_endevor_list_packages.html","text":"packages | package | pkg | p"},{"id":"zowe_endevor_list_stages.html","text":"stages | stage | stg"},{"id":"zowe_endevor_list_subsystems.html","text":"subsystems | subsystem | subsys | sbs"},{"id":"zowe_endevor_list_systems.html","text":"systems | system | sys | s"},{"id":"zowe_endevor_list_types.html","text":"types | type | t"}]},{"id":"zowe_endevor_move.html","text":"move | mv","children":[{"id":"zowe_endevor_move_element.html","text":"element | elem | ele"}]},{"id":"zowe_endevor_print.html","text":"print | p","children":[{"id":"zowe_endevor_print_components.html","text":"components | comp"},{"id":"zowe_endevor_print_element.html","text":"element | elem | ele"}]},{"id":"zowe_endevor_queryacm.html","text":"queryacm","children":[{"id":"zowe_endevor_queryacm_components.html","text":"components | comp"}]},{"id":"zowe_endevor_reset.html","text":"reset","children":[{"id":"zowe_endevor_reset_package.html","text":"package | pkg"}]},{"id":"zowe_endevor_retrieve.html","text":"retrieve | ret","children":[{"id":"zowe_endevor_retrieve_element.html","text":"element | elem | ele"}]},{"id":"zowe_endevor_signin.html","text":"signin | si","children":[{"id":"zowe_endevor_signin_element.html","text":"element | elem | ele"}]},{"id":"zowe_endevor_submit.html","text":"submit","children":[{"id":"zowe_endevor_submit_package.html","text":"package | pkg"},{"id":"zowe_endevor_submit_scl.html","text":"scl"}]},{"id":"zowe_endevor_transfer.html","text":"transfer | tr","children":[{"id":"zowe_endevor_transfer_element.html","text":"element | elem | ele"}]},{"id":"zowe_endevor_update.html","text":"update","children":[{"id":"zowe_endevor_update_element.html","text":"element | elem | ele"},{"id":"zowe_endevor_update_package.html","text":"package | pkg"}]},{"id":"zowe_endevor_view.html","text":"view","children":[{"id":"zowe_endevor_view_element.html","text":"element | elem | ele"},{"id":"zowe_endevor_view_pkgscl.html","text":"pkgscl | packagescl"}]}]},{"id":"zowe_endevor-bridge-for-git.html","text":"endevor-bridge-for-git | ebg","children":[{"id":"zowe_endevor-bridge-for-git_build.html","text":"build | b","children":[{"id":"zowe_endevor-bridge-for-git_build_execute.html","text":"execute | exec"},{"id":"zowe_endevor-bridge-for-git_build_job-report.html","text":"job-report | jr"},{"id":"zowe_endevor-bridge-for-git_build_job-submit.html","text":"job-submit | js"}]},{"id":"zowe_endevor-bridge-for-git_endevor-connection.html","text":"endevor-connection | co","children":[{"id":"zowe_endevor-bridge-for-git_endevor-connection_create.html","text":"create | c"},{"id":"zowe_endevor-bridge-for-git_endevor-connection_delete.html","text":"delete | del"},{"id":"zowe_endevor-bridge-for-git_endevor-connection_list.html","text":"list | ls"},{"id":"zowe_endevor-bridge-for-git_endevor-connection_rename.html","text":"rename | ren"},{"id":"zowe_endevor-bridge-for-git_endevor-connection_update-credentials.html","text":"update-credentials | uc"}]},{"id":"zowe_endevor-bridge-for-git_endevor-credentials.html","text":"endevor-credentials | ec","children":[{"id":"zowe_endevor-bridge-for-git_endevor-credentials_update.html","text":"update | u"}]},{"id":"zowe_endevor-bridge-for-git_mapping.html","text":"mapping | m","children":[{"id":"zowe_endevor-bridge-for-git_mapping_add-element.html","text":"add-element | add"},{"id":"zowe_endevor-bridge-for-git_mapping_create.html","text":"create | c"},{"id":"zowe_endevor-bridge-for-git_mapping_delete.html","text":"delete | del"},{"id":"zowe_endevor-bridge-for-git_mapping_list.html","text":"list | ls"}]},{"id":"zowe_endevor-bridge-for-git_processor-group.html","text":"processor-group | proc-group | pg","children":[{"id":"zowe_endevor-bridge-for-git_processor-group_list.html","text":"list | ls"},{"id":"zowe_endevor-bridge-for-git_processor-group_update.html","text":"update | u"},{"id":"zowe_endevor-bridge-for-git_processor-group_update-all.html","text":"update-all | ua"}]},{"id":"zowe_endevor-bridge-for-git_work-area.html","text":"work-area | wa","children":[{"id":"zowe_endevor-bridge-for-git_work-area_list.html","text":"list | ls"},{"id":"zowe_endevor-bridge-for-git_work-area_reserve.html","text":"reserve | r"},{"id":"zowe_endevor-bridge-for-git_work-area_unreserve.html","text":"unreserve | unr"}]}]},{"id":"zowe_file-master-plus.html","text":"file-master-plus | fmp","children":[{"id":"zowe_file-master-plus_copy.html","text":"copy | c","children":[{"id":"zowe_file-master-plus_copy_data-set.html","text":"data-set | ds"}]},{"id":"zowe_file-master-plus_create.html","text":"create | cre","children":[{"id":"zowe_file-master-plus_create_large-format-sequential.html","text":"large-format-sequential | large"},{"id":"zowe_file-master-plus_create_like-model.html","text":"like-model | model | lm"},{"id":"zowe_file-master-plus_create_partitioned-data-set.html","text":"partitioned-data-set | pds"},{"id":"zowe_file-master-plus_create_partitioned-data-set-extended.html","text":"partitioned-data-set-extended | pdse"},{"id":"zowe_file-master-plus_create_physical-sequential.html","text":"physical-sequential | ps"},{"id":"zowe_file-master-plus_create_vsam-esds.html","text":"vsam-esds | esds"},{"id":"zowe_file-master-plus_create_vsam-ksds.html","text":"vsam-ksds | ksds"},{"id":"zowe_file-master-plus_create_vsam-lds.html","text":"vsam-lds | lds"},{"id":"zowe_file-master-plus_create_vsam-rrds.html","text":"vsam-rrds | rrds"},{"id":"zowe_file-master-plus_create_vsam-vrrds.html","text":"vsam-vrrds | vrrds"}]},{"id":"zowe_file-master-plus_delete.html","text":"delete | del","children":[{"id":"zowe_file-master-plus_delete_data-set.html","text":"data-set | ds"}]},{"id":"zowe_file-master-plus_populate.html","text":"populate | pop","children":[{"id":"zowe_file-master-plus_populate_data-set.html","text":"data-set | ds"}]},{"id":"zowe_file-master-plus_rename.html","text":"rename | ren","children":[{"id":"zowe_file-master-plus_rename_data-set.html","text":"data-set | ds"}]}]},{"id":"zowe_idms.html","text":"idms","children":[{"id":"zowe_idms_issue.html","text":"issue | iss","children":[{"id":"zowe_idms_issue_dcmt-display.html","text":"dcmt-display | dd"},{"id":"zowe_idms_issue_dcmt-help.html","text":"dcmt-help | dh"},{"id":"zowe_idms_issue_dcmt-quiesce.html","text":"dcmt-quiesce | dq"},{"id":"zowe_idms_issue_dcmt-shutdown.html","text":"dcmt-shutdown | shutdown"},{"id":"zowe_idms_issue_dcmt-statistics.html","text":"dcmt-statistics | ds"},{"id":"zowe_idms_issue_dcmt-test.html","text":"dcmt-test | dt"},{"id":"zowe_idms_issue_dcmt-vary.html","text":"dcmt-vary | dv"},{"id":"zowe_idms_issue_dcuf-help.html","text":"dcuf-help | dfh"},{"id":"zowe_idms_issue_dcuf-show.html","text":"dcuf-show | dfs"}]},{"id":"zowe_idms_list.html","text":"list | ls","children":[{"id":"zowe_idms_list_log.html","text":"log"},{"id":"zowe_idms_list_systems.html","text":"systems | sys"},{"id":"zowe_idms_list_transactions.html","text":"transactions | ts"},{"id":"zowe_idms_list_user-tasks.html","text":"user-tasks | ut"}]}]},{"id":"zowe_ims.html","text":"ims","children":[{"id":"zowe_ims_query.html","text":"query | qry","children":[{"id":"zowe_ims_query_program.html","text":"program | pgm"},{"id":"zowe_ims_query_region.html","text":"region | reg"},{"id":"zowe_ims_query_transaction.html","text":"transaction | tran"}]},{"id":"zowe_ims_start.html","text":"start | sta","children":[{"id":"zowe_ims_start_program.html","text":"program | pgm"},{"id":"zowe_ims_start_region.html","text":"region | reg"},{"id":"zowe_ims_start_transaction.html","text":"transaction | tran"}]},{"id":"zowe_ims_stop.html","text":"stop | sto","children":[{"id":"zowe_ims_stop_program.html","text":"program | pgm"},{"id":"zowe_ims_stop_region.html","text":"region | reg"},{"id":"zowe_ims_stop_transaction.html","text":"transaction | tran"}]},{"id":"zowe_ims_update.html","text":"update | upd","children":[{"id":"zowe_ims_update_program.html","text":"program | pgm"},{"id":"zowe_ims_update_transaction.html","text":"transaction | tran"}]}]},{"id":"zowe_jclcheck.html","text":"jclcheck | jck","children":[{"id":"zowe_jclcheck_check.html","text":"check | ck","children":[{"id":"zowe_jclcheck_check_data-set.html","text":"data-set | ds"},{"id":"zowe_jclcheck_check_local-file.html","text":"local-file | lf"}]}]},{"id":"zowe_mat.html","text":"mat | mat","children":[{"id":"zowe_mat_monitor.html","text":"monitor","children":[{"id":"zowe_mat_monitor_codeview.html","text":"codeview","children":[{"id":"zowe_mat_monitor_codeview_callerid.html","text":"callerid | cil"},{"id":"zowe_mat_monitor_codeview_csect.html","text":"csect | cs"},{"id":"zowe_mat_monitor_codeview_histogram.html","text":"histogram | hsg"},{"id":"zowe_mat_monitor_codeview_module.html","text":"module | cm"}]},{"id":"zowe_mat_monitor_db2.html","text":"db2","children":[{"id":"zowe_mat_monitor_db2_db2view.html","text":"db2view | db2v"},{"id":"zowe_mat_monitor_db2_sqlstmt.html","text":"sqlstmt | sql"}]},{"id":"zowe_mat_monitor_delayview.html","text":"delayview","children":[{"id":"zowe_mat_monitor_delayview_address.html","text":"address | ad"},{"id":"zowe_mat_monitor_delayview_delay.html","text":"delay | de"}]},{"id":"zowe_mat_monitor_history.html","text":"history | hs"},{"id":"zowe_mat_monitor_overview.html","text":"overview | ov"}]},{"id":"zowe_mat_profile.html","text":"profile","children":[{"id":"zowe_mat_profile_create.html","text":"create | cr"},{"id":"zowe_mat_profile_invoke.html","text":"invoke | ivk"},{"id":"zowe_mat_profile_list.html","text":"list | lip"}]}]},{"id":"zowe_mat-pma-util.html","text":"mat-pma-util | pma","children":[{"id":"zowe_mat-pma-util_get.html","text":"get | gt","children":[{"id":"zowe_mat-pma-util_get_alert.html","text":"alert | at"},{"id":"zowe_mat-pma-util_get_alert-by-job.html","text":"alert-by-job | abyj"},{"id":"zowe_mat-pma-util_get_perf.html","text":"perf | pf"}]},{"id":"zowe_mat-pma-util_scope.html","text":"scope | scp","children":[{"id":"zowe_mat-pma-util_scope_del-job.html","text":"del-job | delj"},{"id":"zowe_mat-pma-util_scope_del-pgm.html","text":"del-pgm | delp"},{"id":"zowe_mat-pma-util_scope_exl-pgm.html","text":"exl-pgm | exlp"},{"id":"zowe_mat-pma-util_scope_get-listj.html","text":"get-listj | getlj"},{"id":"zowe_mat-pma-util_scope_get-listp.html","text":"get-listp | getlp"},{"id":"zowe_mat-pma-util_scope_inc-job.html","text":"inc-job | incj"}]}]},{"id":"zowe_mq.html","text":"mq","children":[{"id":"zowe_mq_run.html","text":"run","children":[{"id":"zowe_mq_run_mqsc.html","text":"mqsc"}]}]},{"id":"zowe_ops.html","text":"ops","children":[{"id":"zowe_ops_disable.html","text":"disable","children":[{"id":"zowe_ops_disable_rule.html","text":"rule"}]},{"id":"zowe_ops_enable.html","text":"enable","children":[{"id":"zowe_ops_enable_rule.html","text":"rule"}]},{"id":"zowe_ops_show.html","text":"show","children":[{"id":"zowe_ops_show_resource.html","text":"resource"},{"id":"zowe_ops_show_rule.html","text":"rule"}]},{"id":"zowe_ops_start.html","text":"start","children":[{"id":"zowe_ops_start_resource.html","text":"resource"}]},{"id":"zowe_ops_stop.html","text":"stop","children":[{"id":"zowe_ops_stop_resource.html","text":"resource"}]}]},{"id":"zowe_plugins.html","text":"plugins","children":[{"id":"zowe_plugins_install.html","text":"install"},{"id":"zowe_plugins_list.html","text":"list"},{"id":"zowe_plugins_uninstall.html","text":"uninstall"},{"id":"zowe_plugins_update.html","text":"update"},{"id":"zowe_plugins_validate.html","text":"validate"}]},{"id":"zowe_profiles.html","text":"profiles","children":[{"id":"zowe_profiles_create.html","text":"create | cre","children":[{"id":"zowe_profiles_create_base-profile.html","text":"base-profile | base"},{"id":"zowe_profiles_create_ca7-profile.html","text":"ca7-profile | ca7"},{"id":"zowe_profiles_create_caspool-profile.html","text":"caspool-profile | caspool"},{"id":"zowe_profiles_create_caview-profile.html","text":"caview-profile | caview"},{"id":"zowe_profiles_create_cics-deploy-profile.html","text":"cics-deploy-profile | cics-deploy"},{"id":"zowe_profiles_create_cics-profile.html","text":"cics-profile | cics"},{"id":"zowe_profiles_create_db2-profile.html","text":"db2-profile | db2"},{"id":"zowe_profiles_create_ebg-profile.html","text":"ebg-profile | ebg"},{"id":"zowe_profiles_create_endevor-location-profile.html","text":"endevor-location-profile | endevor-location"},{"id":"zowe_profiles_create_endevor-profile.html","text":"endevor-profile | endevor"},{"id":"zowe_profiles_create_fmp-profile.html","text":"fmp-profile | fmp"},{"id":"zowe_profiles_create_idms-profile.html","text":"idms-profile | idms"},{"id":"zowe_profiles_create_ims-profile.html","text":"ims-profile | ims"},{"id":"zowe_profiles_create_jclcheck-profile.html","text":"jclcheck-profile | jclcheck"},{"id":"zowe_profiles_create_mat-profile.html","text":"mat-profile | mat"},{"id":"zowe_profiles_create_mq-profile.html","text":"mq-profile | mq"},{"id":"zowe_profiles_create_ops-profile.html","text":"ops-profile | ops"},{"id":"zowe_profiles_create_pma-profile.html","text":"pma-profile | pma"},{"id":"zowe_profiles_create_rse-profile.html","text":"rse-profile | rse"},{"id":"zowe_profiles_create_sa-profile.html","text":"sa-profile | sa"},{"id":"zowe_profiles_create_ssh-profile.html","text":"ssh-profile | ssh"},{"id":"zowe_profiles_create_sysview-format-profile.html","text":"sysview-format-profile | sysview-format"},{"id":"zowe_profiles_create_sysview-profile.html","text":"sysview-profile | sysview"},{"id":"zowe_profiles_create_tso-profile.html","text":"tso-profile | tso"},{"id":"zowe_profiles_create_wa-profile.html","text":"wa-profile | wa"},{"id":"zowe_profiles_create_zftp-profile.html","text":"zftp-profile | zftp"},{"id":"zowe_profiles_create_znetview-profile.html","text":"znetview-profile | znetview"},{"id":"zowe_profiles_create_zosconnect-profile.html","text":"zosconnect-profile | zosconnect"},{"id":"zowe_profiles_create_zosmf-profile.html","text":"zosmf-profile | zosmf"}]},{"id":"zowe_profiles_delete.html","text":"delete | rm","children":[{"id":"zowe_profiles_delete_base-profile.html","text":"base-profile | base"},{"id":"zowe_profiles_delete_ca7-profile.html","text":"ca7-profile | ca7"},{"id":"zowe_profiles_delete_caspool-profile.html","text":"caspool-profile | caspool"},{"id":"zowe_profiles_delete_caview-profile.html","text":"caview-profile | caview"},{"id":"zowe_profiles_delete_cics-deploy-profile.html","text":"cics-deploy-profile | cics-deploy"},{"id":"zowe_profiles_delete_cics-profile.html","text":"cics-profile | cics"},{"id":"zowe_profiles_delete_db2-profile.html","text":"db2-profile | db2"},{"id":"zowe_profiles_delete_ebg-profile.html","text":"ebg-profile | ebg"},{"id":"zowe_profiles_delete_endevor-location-profile.html","text":"endevor-location-profile | endevor-location"},{"id":"zowe_profiles_delete_endevor-profile.html","text":"endevor-profile | endevor"},{"id":"zowe_profiles_delete_fmp-profile.html","text":"fmp-profile | fmp"},{"id":"zowe_profiles_delete_idms-profile.html","text":"idms-profile | idms"},{"id":"zowe_profiles_delete_ims-profile.html","text":"ims-profile | ims"},{"id":"zowe_profiles_delete_jclcheck-profile.html","text":"jclcheck-profile | jclcheck"},{"id":"zowe_profiles_delete_mat-profile.html","text":"mat-profile | mat"},{"id":"zowe_profiles_delete_mq-profile.html","text":"mq-profile | mq"},{"id":"zowe_profiles_delete_ops-profile.html","text":"ops-profile | ops"},{"id":"zowe_profiles_delete_pma-profile.html","text":"pma-profile | pma"},{"id":"zowe_profiles_delete_rse-profile.html","text":"rse-profile | rse"},{"id":"zowe_profiles_delete_sa-profile.html","text":"sa-profile | sa"},{"id":"zowe_profiles_delete_ssh-profile.html","text":"ssh-profile | ssh"},{"id":"zowe_profiles_delete_sysview-format-profile.html","text":"sysview-format-profile | sysview-format"},{"id":"zowe_profiles_delete_sysview-profile.html","text":"sysview-profile | sysview"},{"id":"zowe_profiles_delete_tso-profile.html","text":"tso-profile | tso"},{"id":"zowe_profiles_delete_wa-profile.html","text":"wa-profile | wa"},{"id":"zowe_profiles_delete_zftp-profile.html","text":"zftp-profile | zftp"},{"id":"zowe_profiles_delete_znetview-profile.html","text":"znetview-profile | znetview"},{"id":"zowe_profiles_delete_zosconnect-profile.html","text":"zosconnect-profile | zosconnect"},{"id":"zowe_profiles_delete_zosmf-profile.html","text":"zosmf-profile | zosmf"}]},{"id":"zowe_profiles_list.html","text":"list | ls","children":[{"id":"zowe_profiles_list_base-profiles.html","text":"base-profiles | base"},{"id":"zowe_profiles_list_ca7-profiles.html","text":"ca7-profiles | ca7"},{"id":"zowe_profiles_list_caspool-profiles.html","text":"caspool-profiles | caspool"},{"id":"zowe_profiles_list_caview-profiles.html","text":"caview-profiles | caview"},{"id":"zowe_profiles_list_cics-deploy-profiles.html","text":"cics-deploy-profiles | cics-deploy"},{"id":"zowe_profiles_list_cics-profiles.html","text":"cics-profiles | cics"},{"id":"zowe_profiles_list_db2-profiles.html","text":"db2-profiles | db2"},{"id":"zowe_profiles_list_ebg-profiles.html","text":"ebg-profiles | ebg"},{"id":"zowe_profiles_list_endevor-location-profiles.html","text":"endevor-location-profiles | endevor-location"},{"id":"zowe_profiles_list_endevor-profiles.html","text":"endevor-profiles | endevor"},{"id":"zowe_profiles_list_fmp-profiles.html","text":"fmp-profiles | fmp"},{"id":"zowe_profiles_list_idms-profiles.html","text":"idms-profiles | idms"},{"id":"zowe_profiles_list_ims-profiles.html","text":"ims-profiles | ims"},{"id":"zowe_profiles_list_jclcheck-profiles.html","text":"jclcheck-profiles | jclcheck"},{"id":"zowe_profiles_list_mat-profiles.html","text":"mat-profiles | mat"},{"id":"zowe_profiles_list_mq-profiles.html","text":"mq-profiles | mq"},{"id":"zowe_profiles_list_ops-profiles.html","text":"ops-profiles | ops"},{"id":"zowe_profiles_list_pma-profiles.html","text":"pma-profiles | pma"},{"id":"zowe_profiles_list_rse-profiles.html","text":"rse-profiles | rse"},{"id":"zowe_profiles_list_sa-profiles.html","text":"sa-profiles | sa"},{"id":"zowe_profiles_list_ssh-profiles.html","text":"ssh-profiles | ssh"},{"id":"zowe_profiles_list_sysview-format-profiles.html","text":"sysview-format-profiles | sysview-format"},{"id":"zowe_profiles_list_sysview-profiles.html","text":"sysview-profiles | sysview"},{"id":"zowe_profiles_list_tso-profiles.html","text":"tso-profiles | tso"},{"id":"zowe_profiles_list_wa-profiles.html","text":"wa-profiles | wa"},{"id":"zowe_profiles_list_zftp-profiles.html","text":"zftp-profiles | zftp"},{"id":"zowe_profiles_list_znetview-profiles.html","text":"znetview-profiles | znetview"},{"id":"zowe_profiles_list_zosconnect-profiles.html","text":"zosconnect-profiles | zosconnect"},{"id":"zowe_profiles_list_zosmf-profiles.html","text":"zosmf-profiles | zosmf"}]},{"id":"zowe_profiles_set-default.html","text":"set-default | set","children":[{"id":"zowe_profiles_set-default_base-profile.html","text":"base-profile | base"},{"id":"zowe_profiles_set-default_ca7-profile.html","text":"ca7-profile | ca7"},{"id":"zowe_profiles_set-default_caspool-profile.html","text":"caspool-profile | caspool"},{"id":"zowe_profiles_set-default_caview-profile.html","text":"caview-profile | caview"},{"id":"zowe_profiles_set-default_cics-deploy-profile.html","text":"cics-deploy-profile | cics-deploy"},{"id":"zowe_profiles_set-default_cics-profile.html","text":"cics-profile | cics"},{"id":"zowe_profiles_set-default_db2-profile.html","text":"db2-profile | db2"},{"id":"zowe_profiles_set-default_ebg-profile.html","text":"ebg-profile | ebg"},{"id":"zowe_profiles_set-default_endevor-location-profile.html","text":"endevor-location-profile | endevor-location"},{"id":"zowe_profiles_set-default_endevor-profile.html","text":"endevor-profile | endevor"},{"id":"zowe_profiles_set-default_fmp-profile.html","text":"fmp-profile | fmp"},{"id":"zowe_profiles_set-default_idms-profile.html","text":"idms-profile | idms"},{"id":"zowe_profiles_set-default_ims-profile.html","text":"ims-profile | ims"},{"id":"zowe_profiles_set-default_jclcheck-profile.html","text":"jclcheck-profile | jclcheck"},{"id":"zowe_profiles_set-default_mat-profile.html","text":"mat-profile | mat"},{"id":"zowe_profiles_set-default_mq-profile.html","text":"mq-profile | mq"},{"id":"zowe_profiles_set-default_ops-profile.html","text":"ops-profile | ops"},{"id":"zowe_profiles_set-default_pma-profile.html","text":"pma-profile | pma"},{"id":"zowe_profiles_set-default_rse-profile.html","text":"rse-profile | rse"},{"id":"zowe_profiles_set-default_sa-profile.html","text":"sa-profile | sa"},{"id":"zowe_profiles_set-default_ssh-profile.html","text":"ssh-profile | ssh"},{"id":"zowe_profiles_set-default_sysview-format-profile.html","text":"sysview-format-profile | sysview-format"},{"id":"zowe_profiles_set-default_sysview-profile.html","text":"sysview-profile | sysview"},{"id":"zowe_profiles_set-default_tso-profile.html","text":"tso-profile | tso"},{"id":"zowe_profiles_set-default_wa-profile.html","text":"wa-profile | wa"},{"id":"zowe_profiles_set-default_zftp-profile.html","text":"zftp-profile | zftp"},{"id":"zowe_profiles_set-default_znetview-profile.html","text":"znetview-profile | znetview"},{"id":"zowe_profiles_set-default_zosconnect-profile.html","text":"zosconnect-profile | zosconnect"},{"id":"zowe_profiles_set-default_zosmf-profile.html","text":"zosmf-profile | zosmf"}]},{"id":"zowe_profiles_update.html","text":"update | upd","children":[{"id":"zowe_profiles_update_base-profile.html","text":"base-profile | base"},{"id":"zowe_profiles_update_ca7-profile.html","text":"ca7-profile | ca7"},{"id":"zowe_profiles_update_caspool-profile.html","text":"caspool-profile | caspool"},{"id":"zowe_profiles_update_caview-profile.html","text":"caview-profile | caview"},{"id":"zowe_profiles_update_cics-deploy-profile.html","text":"cics-deploy-profile | cics-deploy"},{"id":"zowe_profiles_update_cics-profile.html","text":"cics-profile | cics"},{"id":"zowe_profiles_update_db2-profile.html","text":"db2-profile | db2"},{"id":"zowe_profiles_update_ebg-profile.html","text":"ebg-profile | ebg"},{"id":"zowe_profiles_update_endevor-location-profile.html","text":"endevor-location-profile | endevor-location"},{"id":"zowe_profiles_update_endevor-profile.html","text":"endevor-profile | endevor"},{"id":"zowe_profiles_update_fmp-profile.html","text":"fmp-profile | fmp"},{"id":"zowe_profiles_update_idms-profile.html","text":"idms-profile | idms"},{"id":"zowe_profiles_update_ims-profile.html","text":"ims-profile | ims"},{"id":"zowe_profiles_update_jclcheck-profile.html","text":"jclcheck-profile | jclcheck"},{"id":"zowe_profiles_update_mat-profile.html","text":"mat-profile | mat"},{"id":"zowe_profiles_update_mq-profile.html","text":"mq-profile | mq"},{"id":"zowe_profiles_update_ops-profile.html","text":"ops-profile | ops"},{"id":"zowe_profiles_update_pma-profile.html","text":"pma-profile | pma"},{"id":"zowe_profiles_update_rse-profile.html","text":"rse-profile | rse"},{"id":"zowe_profiles_update_sa-profile.html","text":"sa-profile | sa"},{"id":"zowe_profiles_update_ssh-profile.html","text":"ssh-profile | ssh"},{"id":"zowe_profiles_update_sysview-format-profile.html","text":"sysview-format-profile | sysview-format"},{"id":"zowe_profiles_update_sysview-profile.html","text":"sysview-profile | sysview"},{"id":"zowe_profiles_update_tso-profile.html","text":"tso-profile | tso"},{"id":"zowe_profiles_update_wa-profile.html","text":"wa-profile | wa"},{"id":"zowe_profiles_update_zftp-profile.html","text":"zftp-profile | zftp"},{"id":"zowe_profiles_update_znetview-profile.html","text":"znetview-profile | znetview"},{"id":"zowe_profiles_update_zosconnect-profile.html","text":"zosconnect-profile | zosconnect"},{"id":"zowe_profiles_update_zosmf-profile.html","text":"zosmf-profile | zosmf"}]}]},{"id":"zowe_provisioning.html","text":"provisioning | pv","children":[{"id":"zowe_provisioning_delete.html","text":"delete | del","children":[{"id":"zowe_provisioning_delete_instance.html","text":"instance | i"}]},{"id":"zowe_provisioning_list.html","text":"list | ls","children":[{"id":"zowe_provisioning_list_catalog-templates.html","text":"catalog-templates | ct"},{"id":"zowe_provisioning_list_instance-info.html","text":"instance-info | ii"},{"id":"zowe_provisioning_list_instance-variables.html","text":"instance-variables | iv"},{"id":"zowe_provisioning_list_registry-instances.html","text":"registry-instances | ri"},{"id":"zowe_provisioning_list_template-info.html","text":"template-info | ti"}]},{"id":"zowe_provisioning_perform.html","text":"perform | perf","children":[{"id":"zowe_provisioning_perform_action.html","text":"action | act"}]},{"id":"zowe_provisioning_provision.html","text":"provision | prov","children":[{"id":"zowe_provisioning_provision_template.html","text":"template | tem"}]}]},{"id":"zowe_rse-api-for-zowe-cli.html","text":"rse-api-for-zowe-cli | rse","children":[{"id":"zowe_rse-api-for-zowe-cli_auth.html","text":"auth","children":[{"id":"zowe_rse-api-for-zowe-cli_auth_login.html","text":"login | li"},{"id":"zowe_rse-api-for-zowe-cli_auth_logout.html","text":"logout | lo"},{"id":"zowe_rse-api-for-zowe-cli_auth_query.html","text":"query | q"}]},{"id":"zowe_rse-api-for-zowe-cli_cancel.html","text":"cancel | can","children":[{"id":"zowe_rse-api-for-zowe-cli_cancel_job.html","text":"job"}]},{"id":"zowe_rse-api-for-zowe-cli_change.html","text":"change","children":[{"id":"zowe_rse-api-for-zowe-cli_change_password.html","text":"password | pass"}]},{"id":"zowe_rse-api-for-zowe-cli_check.html","text":"check","children":[{"id":"zowe_rse-api-for-zowe-cli_check_conversion-mappings.html","text":"conversion-mappings | maps"},{"id":"zowe_rse-api-for-zowe-cli_check_job-address-space.html","text":"job-address-space | jobs"},{"id":"zowe_rse-api-for-zowe-cli_check_status.html","text":"status"},{"id":"zowe_rse-api-for-zowe-cli_check_system-address-space.html","text":"system-address-space | sys"}]},{"id":"zowe_rse-api-for-zowe-cli_copy.html","text":"copy","children":[{"id":"zowe_rse-api-for-zowe-cli_copy_data-set.html","text":"data-set | ds"}]},{"id":"zowe_rse-api-for-zowe-cli_create.html","text":"create | cre","children":[{"id":"zowe_rse-api-for-zowe-cli_create_data-set.html","text":"data-set | ds"},{"id":"zowe_rse-api-for-zowe-cli_create_data-set-member.html","text":"data-set-member | member"},{"id":"zowe_rse-api-for-zowe-cli_create_data-set-partitioned.html","text":"data-set-partitioned | pds"},{"id":"zowe_rse-api-for-zowe-cli_create_data-set-sequential.html","text":"data-set-sequential | ps"},{"id":"zowe_rse-api-for-zowe-cli_create_uss-directory.html","text":"uss-directory | dir"},{"id":"zowe_rse-api-for-zowe-cli_create_uss-file.html","text":"uss-file | file"}]},{"id":"zowe_rse-api-for-zowe-cli_delete.html","text":"delete | del","children":[{"id":"zowe_rse-api-for-zowe-cli_delete_data-set.html","text":"data-set | ds"},{"id":"zowe_rse-api-for-zowe-cli_delete_job.html","text":"job | js"},{"id":"zowe_rse-api-for-zowe-cli_delete_uss-file.html","text":"uss-file | uss"}]},{"id":"zowe_rse-api-for-zowe-cli_download.html","text":"download | dl","children":[{"id":"zowe_rse-api-for-zowe-cli_download_all-members.html","text":"all-members | am"},{"id":"zowe_rse-api-for-zowe-cli_download_data-set.html","text":"data-set | ds"},{"id":"zowe_rse-api-for-zowe-cli_download_output.html","text":"output | o"},{"id":"zowe_rse-api-for-zowe-cli_download_uss-file.html","text":"uss-file | uf"}]},{"id":"zowe_rse-api-for-zowe-cli_issue.html","text":"issue","children":[{"id":"zowe_rse-api-for-zowe-cli_issue_command.html","text":"command | cmd | tso"},{"id":"zowe_rse-api-for-zowe-cli_issue_unix.html","text":"unix | uss"}]},{"id":"zowe_rse-api-for-zowe-cli_list.html","text":"list | ls","children":[{"id":"zowe_rse-api-for-zowe-cli_list_all-members.html","text":"all-members | am"},{"id":"zowe_rse-api-for-zowe-cli_list_data-set.html","text":"data-set | ds"},{"id":"zowe_rse-api-for-zowe-cli_list_jobs.html","text":"jobs | js"},{"id":"zowe_rse-api-for-zowe-cli_list_spool-files-by-jobid.html","text":"spool-files-by-jobid | sfbj"},{"id":"zowe_rse-api-for-zowe-cli_list_uss-files.html","text":"uss-files | uss"}]},{"id":"zowe_rse-api-for-zowe-cli_migrate.html","text":"migrate | hmigr | hMigrate","children":[{"id":"zowe_rse-api-for-zowe-cli_migrate_data-set.html","text":"data-set | ds"}]},{"id":"zowe_rse-api-for-zowe-cli_recall.html","text":"recall | hrec | hRecall","children":[{"id":"zowe_rse-api-for-zowe-cli_recall_data-set.html","text":"data-set | ds"}]},{"id":"zowe_rse-api-for-zowe-cli_rename.html","text":"rename | rn","children":[{"id":"zowe_rse-api-for-zowe-cli_rename_data-set.html","text":"data-set | ds"},{"id":"zowe_rse-api-for-zowe-cli_rename_data-set-member.html","text":"data-set-member | member"},{"id":"zowe_rse-api-for-zowe-cli_rename_uss-file.html","text":"uss-file | uss"}]},{"id":"zowe_rse-api-for-zowe-cli_submit.html","text":"submit | sub","children":[{"id":"zowe_rse-api-for-zowe-cli_submit_data-set.html","text":"data-set | ds"},{"id":"zowe_rse-api-for-zowe-cli_submit_local-file.html","text":"local-file | lf"},{"id":"zowe_rse-api-for-zowe-cli_submit_stdin.html","text":"stdin | in"}]},{"id":"zowe_rse-api-for-zowe-cli_upload.html","text":"upload | ul","children":[{"id":"zowe_rse-api-for-zowe-cli_upload_dir-to-pds.html","text":"dir-to-pds | dtp"},{"id":"zowe_rse-api-for-zowe-cli_upload_dir-to-uss.html","text":"dir-to-uss | dtu"},{"id":"zowe_rse-api-for-zowe-cli_upload_file-to-data-set.html","text":"file-to-data-set | ftds"},{"id":"zowe_rse-api-for-zowe-cli_upload_file-to-uss.html","text":"file-to-uss | ftu"}]},{"id":"zowe_rse-api-for-zowe-cli_view.html","text":"view | vw","children":[{"id":"zowe_rse-api-for-zowe-cli_view_job-status-by-jobid.html","text":"job-status-by-jobid | jsbj"},{"id":"zowe_rse-api-for-zowe-cli_view_spool-file-by-id.html","text":"spool-file-by-id | sfbi"}]}]},{"id":"zowe_secure-credential-store.html","text":"secure-credential-store | scs","children":[{"id":"zowe_secure-credential-store_revert.html","text":"revert | r"},{"id":"zowe_secure-credential-store_update.html","text":"update | u"}]},{"id":"zowe_system-automation.html","text":"system-automation | sa","children":[{"id":"zowe_system-automation_activate.html","text":"activate | act","children":[{"id":"zowe_system-automation_activate_policy.html","text":"policy | pol"}]},{"id":"zowe_system-automation_create.html","text":"create","children":[{"id":"zowe_system-automation_create_resource.html","text":"resource | res"}]},{"id":"zowe_system-automation_delete.html","text":"delete | del","children":[{"id":"zowe_system-automation_delete_request.html","text":"request | req"},{"id":"zowe_system-automation_delete_resource.html","text":"resource | res"}]},{"id":"zowe_system-automation_disable.html","text":"disable","children":[{"id":"zowe_system-automation_disable_recording.html","text":"recording | rec"},{"id":"zowe_system-automation_disable_takeoverfile.html","text":"takeoverfile | tko"}]},{"id":"zowe_system-automation_enable.html","text":"enable","children":[{"id":"zowe_system-automation_enable_recording.html","text":"recording | rec"},{"id":"zowe_system-automation_enable_takeoverfile.html","text":"takeoverfile | tko"}]},{"id":"zowe_system-automation_list.html","text":"list | ls","children":[{"id":"zowe_system-automation_list_members.html","text":"members | mem"},{"id":"zowe_system-automation_list_policies.html","text":"policies | pol"},{"id":"zowe_system-automation_list_requests.html","text":"requests | req"},{"id":"zowe_system-automation_list_resources.html","text":"resources | res"},{"id":"zowe_system-automation_list_templates.html","text":"templates | tmp"}]},{"id":"zowe_system-automation_resume.html","text":"resume","children":[{"id":"zowe_system-automation_resume_member.html","text":"member | mem"},{"id":"zowe_system-automation_resume_resource.html","text":"resource | res"}]},{"id":"zowe_system-automation_set.html","text":"set","children":[{"id":"zowe_system-automation_set_PrimaryManager.html","text":"PrimaryManager | PAM"}]},{"id":"zowe_system-automation_start.html","text":"start","children":[{"id":"zowe_system-automation_start_resource.html","text":"resource | res"}]},{"id":"zowe_system-automation_stop.html","text":"stop","children":[{"id":"zowe_system-automation_stop_resource.html","text":"resource | res"}]},{"id":"zowe_system-automation_suspend.html","text":"suspend","children":[{"id":"zowe_system-automation_suspend_member.html","text":"member | mem"},{"id":"zowe_system-automation_suspend_resource.html","text":"resource | res"}]},{"id":"zowe_system-automation_view.html","text":"view | v","children":[{"id":"zowe_system-automation_view_connection.html","text":"connection | con"},{"id":"zowe_system-automation_view_member.html","text":"member | mem"},{"id":"zowe_system-automation_view_request.html","text":"request | req"},{"id":"zowe_system-automation_view_resource.html","text":"resource | res"},{"id":"zowe_system-automation_view_version.html","text":"version | ver"}]}]},{"id":"zowe_sysview.html","text":"sysview | sv","children":[{"id":"zowe_sysview_capture.html","text":"capture | cap"},{"id":"zowe_sysview_check.html","text":"check","children":[{"id":"zowe_sysview_check_status.html","text":"status"}]},{"id":"zowe_sysview_display.html","text":"display | dsp"},{"id":"zowe_sysview_execute.html","text":"execute | exe"}]},{"id":"zowe_workload-automation.html","text":"workload-automation | wa","children":[{"id":"zowe_workload-automation_execute.html","text":"execute | exec","children":[{"id":"zowe_workload-automation_execute_wapl.html","text":"wapl"}]},{"id":"zowe_workload-automation_get.html","text":"get","children":[{"id":"zowe_workload-automation_get_jobinplan.html","text":"jobinplan | jip | jp"},{"id":"zowe_workload-automation_get_resourceinplan.html","text":"resourceinplan | resp | rp"}]},{"id":"zowe_workload-automation_list.html","text":"list | ls","children":[{"id":"zowe_workload-automation_list_jobinplan.html","text":"jobinplan | jip | jp"},{"id":"zowe_workload-automation_list_jobstreaminmodel.html","text":"jobstreaminmodel | jsim | jsm"},{"id":"zowe_workload-automation_list_jobstreaminplan.html","text":"jobstreaminplan | jsip | jsp"},{"id":"zowe_workload-automation_list_resourceinplan.html","text":"resourceinplan | resp | rp"}]},{"id":"zowe_workload-automation_set-status.html","text":"set-status | sets","children":[{"id":"zowe_workload-automation_set-status_jobinplan.html","text":"jobinplan | jip | jp"}]},{"id":"zowe_workload-automation_submit.html","text":"submit | sub","children":[{"id":"zowe_workload-automation_submit_jobstreaminplan.html","text":"jobstreaminplan | jsip | jsp"}]},{"id":"zowe_workload-automation_update.html","text":"update | upd","children":[{"id":"zowe_workload-automation_update_jobinplan.html","text":"jobinplan | jip | jp"},{"id":"zowe_workload-automation_update_resourceinplan.html","text":"resourceinplan | resp | rp"}]}]},{"id":"zowe_znetview-automation.html","text":"znetview-automation | nvauto","children":[{"id":"zowe_znetview-automation_activate.html","text":"activate | act","children":[{"id":"zowe_znetview-automation_activate_automation-table.html","text":"automation-table | at"}]},{"id":"zowe_znetview-automation_download.html","text":"download | dl","children":[{"id":"zowe_znetview-automation_download_automation-table.html","text":"automation-table | at"}]},{"id":"zowe_znetview-automation_list.html","text":"list | ls","children":[{"id":"zowe_znetview-automation_list_automation-table-statistics.html","text":"automation-table-statistics | ats"}]},{"id":"zowe_znetview-automation_test.html","text":"test","children":[{"id":"zowe_znetview-automation_test_automation-table.html","text":"automation-table | at"}]},{"id":"zowe_znetview-automation_upload.html","text":"upload | ul","children":[{"id":"zowe_znetview-automation_upload_automation-table.html","text":"automation-table | at"}]},{"id":"zowe_znetview-automation_validate.html","text":"validate | val","children":[{"id":"zowe_znetview-automation_validate_automation-table.html","text":"automation-table | at"}]}]},{"id":"zowe_znetview-base.html","text":"znetview-base | nvbase","children":[{"id":"zowe_znetview-base_auth.html","text":"auth","children":[{"id":"zowe_znetview-base_auth_login.html","text":"login | li"},{"id":"zowe_znetview-base_auth_logout.html","text":"logout | lo"}]},{"id":"zowe_znetview-base_issue.html","text":"issue","children":[{"id":"zowe_znetview-base_issue_command.html","text":"command | cmd"}]},{"id":"zowe_znetview-base_list.html","text":"list | ls","children":[{"id":"zowe_znetview-base_list_canzlog.html","text":"canzlog | cz"},{"id":"zowe_znetview-base_list_domains.html","text":"domains | doms"},{"id":"zowe_znetview-base_list_task-info.html","text":"task-info | task"}]},{"id":"zowe_znetview-base_record.html","text":"record | rc","children":[{"id":"zowe_znetview-base_record_canzlog.html","text":"canzlog | cz"}]}]},{"id":"zowe_znetview-network.html","text":"znetview-network | nvnet","children":[{"id":"zowe_znetview-network_list.html","text":"list | ls","children":[{"id":"zowe_znetview-network_list_ddvipa-health.html","text":"ddvipa-health | ddh"},{"id":"zowe_znetview-network_list_ddvipa-stats.html","text":"ddvipa-stats | dds"}]}]},{"id":"zowe_zos-console.html","text":"zos-console | console","children":[{"id":"zowe_zos-console_collect.html","text":"collect","children":[{"id":"zowe_zos-console_collect_sync-responses.html","text":"sync-responses | sr"}]},{"id":"zowe_zos-console_issue.html","text":"issue","children":[{"id":"zowe_zos-console_issue_command.html","text":"command | cmd"}]}]},{"id":"zowe_zos-files.html","text":"zos-files | files","children":[{"id":"zowe_zos-files_copy.html","text":"copy | cp","children":[{"id":"zowe_zos-files_copy_data-set.html","text":"data-set | ds"}]},{"id":"zowe_zos-files_create.html","text":"create | cre","children":[{"id":"zowe_zos-files_create_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-files_create_data-set-binary.html","text":"data-set-binary | bin"},{"id":"zowe_zos-files_create_data-set-c.html","text":"data-set-c | dsc"},{"id":"zowe_zos-files_create_data-set-classic.html","text":"data-set-classic | classic"},{"id":"zowe_zos-files_create_data-set-partitioned.html","text":"data-set-partitioned | pds"},{"id":"zowe_zos-files_create_data-set-sequential.html","text":"data-set-sequential | ps"},{"id":"zowe_zos-files_create_data-set-vsam.html","text":"data-set-vsam | vsam"},{"id":"zowe_zos-files_create_uss-directory.html","text":"uss-directory | dir"},{"id":"zowe_zos-files_create_uss-file.html","text":"uss-file | file"},{"id":"zowe_zos-files_create_zos-file-system.html","text":"zos-file-system | zfs"}]},{"id":"zowe_zos-files_delete.html","text":"delete | del","children":[{"id":"zowe_zos-files_delete_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-files_delete_data-set-vsam.html","text":"data-set-vsam | vsam"},{"id":"zowe_zos-files_delete_migrated-data-set.html","text":"migrated-data-set | mds"},{"id":"zowe_zos-files_delete_uss-file.html","text":"uss-file | uf | uss"},{"id":"zowe_zos-files_delete_zos-file-system.html","text":"zos-file-system | zfs"}]},{"id":"zowe_zos-files_download.html","text":"download | dl","children":[{"id":"zowe_zos-files_download_all-members.html","text":"all-members | am"},{"id":"zowe_zos-files_download_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-files_download_uss-file.html","text":"uss-file | uf | uss"}]},{"id":"zowe_zos-files_invoke.html","text":"invoke | call","children":[{"id":"zowe_zos-files_invoke_ams-file.html","text":"ams-file | af"},{"id":"zowe_zos-files_invoke_ams-statements.html","text":"ams-statements | as"}]},{"id":"zowe_zos-files_list.html","text":"list | ls","children":[{"id":"zowe_zos-files_list_all-members.html","text":"all-members | am"},{"id":"zowe_zos-files_list_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-files_list_file-system.html","text":"file-system | fs"},{"id":"zowe_zos-files_list_uss-files.html","text":"uss-files | uf | uss"}]},{"id":"zowe_zos-files_migrate.html","text":"migrate | hmigr | hMigrate","children":[{"id":"zowe_zos-files_migrate_data-set.html","text":"data-set | ds"}]},{"id":"zowe_zos-files_mount.html","text":"mount","children":[{"id":"zowe_zos-files_mount_file-system.html","text":"file-system | fs"}]},{"id":"zowe_zos-files_recall.html","text":"recall | hrec | hRecall","children":[{"id":"zowe_zos-files_recall_data-set.html","text":"data-set | ds"}]},{"id":"zowe_zos-files_rename.html","text":"rename","children":[{"id":"zowe_zos-files_rename_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-files_rename_data-set-member.html","text":"data-set-member | dsm"}]},{"id":"zowe_zos-files_unmount.html","text":"unmount | umount","children":[{"id":"zowe_zos-files_unmount_file-system.html","text":"file-system | fs"}]},{"id":"zowe_zos-files_upload.html","text":"upload | ul","children":[{"id":"zowe_zos-files_upload_dir-to-pds.html","text":"dir-to-pds | dtp"},{"id":"zowe_zos-files_upload_dir-to-uss.html","text":"dir-to-uss | dtu"},{"id":"zowe_zos-files_upload_file-to-data-set.html","text":"file-to-data-set | ftds"},{"id":"zowe_zos-files_upload_file-to-uss.html","text":"file-to-uss | ftu"},{"id":"zowe_zos-files_upload_stdin-to-data-set.html","text":"stdin-to-data-set | stds"}]}]},{"id":"zowe_zos-ftp.html","text":"zos-ftp | zftp","children":[{"id":"zowe_zos-ftp_allocate.html","text":"allocate | alloc","children":[{"id":"zowe_zos-ftp_allocate_data-set.html","text":"data-set | ds"}]},{"id":"zowe_zos-ftp_delete.html","text":"delete | del","children":[{"id":"zowe_zos-ftp_delete_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-ftp_delete_job.html","text":"job | j"},{"id":"zowe_zos-ftp_delete_uss-file.html","text":"uss-file | uss | uf"}]},{"id":"zowe_zos-ftp_download.html","text":"download | dl","children":[{"id":"zowe_zos-ftp_download_all-spool-by-jobid.html","text":"all-spool-by-jobid | asbj"},{"id":"zowe_zos-ftp_download_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-ftp_download_uss-file.html","text":"uss-file | uss | uf"}]},{"id":"zowe_zos-ftp_list.html","text":"list | ls","children":[{"id":"zowe_zos-ftp_list_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-ftp_list_data-set-members.html","text":"data-set-members | members"},{"id":"zowe_zos-ftp_list_jobs.html","text":"jobs | j | js"},{"id":"zowe_zos-ftp_list_spool-files-by-jobid.html","text":"spool-files-by-jobid | sfbj"},{"id":"zowe_zos-ftp_list_uss-files.html","text":"uss-files | uss | uf"}]},{"id":"zowe_zos-ftp_make.html","text":"make | mk","children":[{"id":"zowe_zos-ftp_make_uss-directory.html","text":"uss-directory | dir"}]},{"id":"zowe_zos-ftp_rename.html","text":"rename | mv","children":[{"id":"zowe_zos-ftp_rename_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-ftp_rename_uss-file.html","text":"uss-file | uss | uf"}]},{"id":"zowe_zos-ftp_submit.html","text":"submit | sub","children":[{"id":"zowe_zos-ftp_submit_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-ftp_submit_local-file.html","text":"local-file | lf"},{"id":"zowe_zos-ftp_submit_stdin.html","text":"stdin | si | in"}]},{"id":"zowe_zos-ftp_upload.html","text":"upload | ul","children":[{"id":"zowe_zos-ftp_upload_file-to-data-set.html","text":"file-to-data-set | ftds"},{"id":"zowe_zos-ftp_upload_file-to-uss-file.html","text":"file-to-uss-file | ftuf | ftu"},{"id":"zowe_zos-ftp_upload_stdin-to-data-set.html","text":"stdin-to-data-set | stds"},{"id":"zowe_zos-ftp_upload_stdin-to-uss-file.html","text":"stdin-to-uss-file | stuf | stu"}]},{"id":"zowe_zos-ftp_view.html","text":"view | vw","children":[{"id":"zowe_zos-ftp_view_all-spool-by-jobid.html","text":"all-spool-by-jobid | asbj"},{"id":"zowe_zos-ftp_view_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-ftp_view_job-status-by-jobid.html","text":"job-status-by-jobid | jsbj"},{"id":"zowe_zos-ftp_view_spool-file-by-id.html","text":"spool-file-by-id | sfbi"},{"id":"zowe_zos-ftp_view_uss-file.html","text":"uss-file | uss | uf"}]}]},{"id":"zowe_zos-jobs.html","text":"zos-jobs | jobs","children":[{"id":"zowe_zos-jobs_cancel.html","text":"cancel | can","children":[{"id":"zowe_zos-jobs_cancel_job.html","text":"job"}]},{"id":"zowe_zos-jobs_delete.html","text":"delete | del","children":[{"id":"zowe_zos-jobs_delete_job.html","text":"job"}]},{"id":"zowe_zos-jobs_download.html","text":"download | dl","children":[{"id":"zowe_zos-jobs_download_output.html","text":"output | o"}]},{"id":"zowe_zos-jobs_list.html","text":"list | ls","children":[{"id":"zowe_zos-jobs_list_jobs.html","text":"jobs | js"},{"id":"zowe_zos-jobs_list_spool-files-by-jobid.html","text":"spool-files-by-jobid | sfbj"}]},{"id":"zowe_zos-jobs_submit.html","text":"submit | sub","children":[{"id":"zowe_zos-jobs_submit_data-set.html","text":"data-set | ds"},{"id":"zowe_zos-jobs_submit_local-file.html","text":"local-file | lf"},{"id":"zowe_zos-jobs_submit_stdin.html","text":"stdin | in"}]},{"id":"zowe_zos-jobs_view.html","text":"view | vw","children":[{"id":"zowe_zos-jobs_view_job-status-by-jobid.html","text":"job-status-by-jobid | jsbj"},{"id":"zowe_zos-jobs_view_spool-file-by-id.html","text":"spool-file-by-id | sfbi"}]}]},{"id":"zowe_zos-logs.html","text":"zos-logs | logs","children":[{"id":"zowe_zos-logs_list.html","text":"list | ls","children":[{"id":"zowe_zos-logs_list_logs.html","text":"logs"}]}]},{"id":"zowe_zos-ssh.html","text":"zos-ssh | ssh | zos-uss | uss","children":[{"id":"zowe_zos-ssh_issue.html","text":"issue | iss","children":[{"id":"zowe_zos-ssh_issue_command.html","text":"command | cmd | ssh"}]}]},{"id":"zowe_zos-tso.html","text":"zos-tso | tso","children":[{"id":"zowe_zos-tso_issue.html","text":"issue","children":[{"id":"zowe_zos-tso_issue_command.html","text":"command | cmd"}]},{"id":"zowe_zos-tso_ping.html","text":"ping","children":[{"id":"zowe_zos-tso_ping_address-space.html","text":"address-space | as"}]},{"id":"zowe_zos-tso_send.html","text":"send","children":[{"id":"zowe_zos-tso_send_address-space.html","text":"address-space | as"}]},{"id":"zowe_zos-tso_start.html","text":"start | st","children":[{"id":"zowe_zos-tso_start_address-space.html","text":"address-space | as"}]},{"id":"zowe_zos-tso_stop.html","text":"stop | sp","children":[{"id":"zowe_zos-tso_stop_address-space.html","text":"address-space | as"}]}]},{"id":"zowe_zos-workflows.html","text":"zos-workflows | wf","children":[{"id":"zowe_zos-workflows_archive.html","text":"archive","children":[{"id":"zowe_zos-workflows_archive_active-workflow.html","text":"active-workflow | aw"}]},{"id":"zowe_zos-workflows_create.html","text":"create | cre","children":[{"id":"zowe_zos-workflows_create_workflow-from-data-set.html","text":"workflow-from-data-set | wfds"},{"id":"zowe_zos-workflows_create_workflow-from-local-file.html","text":"workflow-from-local-file | wflf"},{"id":"zowe_zos-workflows_create_workflow-from-uss-file.html","text":"workflow-from-uss-file | wfuf"}]},{"id":"zowe_zos-workflows_delete.html","text":"delete | del","children":[{"id":"zowe_zos-workflows_delete_active-workflow.html","text":"active-workflow | aw"},{"id":"zowe_zos-workflows_delete_archived-workflow.html","text":"archived-workflow | arw"}]},{"id":"zowe_zos-workflows_list.html","text":"list | ls","children":[{"id":"zowe_zos-workflows_list_active-workflow-details.html","text":"active-workflow-details | awd"},{"id":"zowe_zos-workflows_list_active-workflows.html","text":"active-workflows | aw"},{"id":"zowe_zos-workflows_list_archived-workflows.html","text":"archived-workflows | arw"},{"id":"zowe_zos-workflows_list_definition-file-details.html","text":"definition-file-details | dfd"}]},{"id":"zowe_zos-workflows_start.html","text":"start | sta","children":[{"id":"zowe_zos-workflows_start_workflow-full.html","text":"workflow-full | wf"},{"id":"zowe_zos-workflows_start_workflow-step.html","text":"workflow-step | ws"}]}]},{"id":"zowe_zosconnect.html","text":"zosconnect","children":[{"id":"zowe_zosconnect_api.html","text":"api","children":[{"id":"zowe_zosconnect_api_delete.html","text":"delete"},{"id":"zowe_zosconnect_api_info.html","text":"info"},{"id":"zowe_zosconnect_api_install.html","text":"install"},{"id":"zowe_zosconnect_api_list.html","text":"list"},{"id":"zowe_zosconnect_api_start.html","text":"start"},{"id":"zowe_zosconnect_api_stop.html","text":"stop"},{"id":"zowe_zosconnect_api_update.html","text":"update"}]},{"id":"zowe_zosconnect_apirequester.html","text":"apirequester","children":[{"id":"zowe_zosconnect_apirequester_delete.html","text":"delete"},{"id":"zowe_zosconnect_apirequester_info.html","text":"info"},{"id":"zowe_zosconnect_apirequester_install.html","text":"install"},{"id":"zowe_zosconnect_apirequester_list.html","text":"list"},{"id":"zowe_zosconnect_apirequester_start.html","text":"start"},{"id":"zowe_zosconnect_apirequester_stop.html","text":"stop"},{"id":"zowe_zosconnect_apirequester_update.html","text":"update"}]},{"id":"zowe_zosconnect_service.html","text":"service","children":[{"id":"zowe_zosconnect_service_delete.html","text":"delete"},{"id":"zowe_zosconnect_service_info.html","text":"info"},{"id":"zowe_zosconnect_service_install.html","text":"install"},{"id":"zowe_zosconnect_service_list.html","text":"list"},{"id":"zowe_zosconnect_service_start.html","text":"start"},{"id":"zowe_zosconnect_service_stop.html","text":"stop"},{"id":"zowe_zosconnect_service_update.html","text":"update"}]}]},{"id":"zowe_zosmf.html","text":"zosmf","children":[{"id":"zowe_zosmf_check.html","text":"check","children":[{"id":"zowe_zosmf_check_status.html","text":"status"}]},{"id":"zowe_zosmf_list.html","text":"list","children":[{"id":"zowe_zosmf_list_systems.html","text":"systems"}]}]}]}]; const aliasList = {"7":["ca7"],"li":["login","list"],"lo":["logout"],"c":["cancel","create","copy"],"jn":["jobnumber"],"d":["demand","deploy"],"j":["job","jobs"],"jl":["jobl"],"dh":["demandh","dcmt-help"],"js":["jobstatus","job-submit","job","jobs"],"rl":["release"],"rs":["restart"],"r":["run","report","reserve","revert"],"rh":["runh"],"esf":["caspool"],"is":["issue"],"cmd":["command"],"cv":["caview"],"dl":["download"],"exp":["export"],"ls":["list"],"rules":["export-rules"],"repo":["report"],"indexes":["index-names"],"views":["logical-views"],"repos":["repositories"],"find":["search"],"atl":["add-to-list"],"csdg":["csdGroup"],"def":["define"],"prog":["program"],"tran":["transaction"],"uc":["urimap-client","update-credentials"],"up":["urimap-pipeline"],"us":["urimap-server"],"web":["webservice"],"del":["delete"],"dis":["discard"],"en":["enable"],"res":["resource","resources"],"ins":["install"],"ref":["refresh"],"rfl":["remove-from-list"],"cdep":["cics-deploy"],"dep":["deploy"],"b":["bundle","build"],"bun":["bundle"],"bund":["bundle"],"g":["generate"],"gen":["generate"],"p":["push","packages","print"],"u":["undeploy","update"],"udep":["undeploy"],"ge":["get"],"re":["reset"],"se":["set"],"proc":["procedure"],"sp":["procedure","stop"],"elem":["element","elements"],"ele":["element","elements"],"aprv":["approve"],"pkg":["package","packages"],"environment":["environments"],"env":["environments"],"instance":["instances"],"inst":["instances"],"i":["instances","instance"],"package":["packages"],"stage":["stages"],"stg":["stages"],"subsystem":["subsystems"],"subsys":["subsystems"],"sbs":["subsystems"],"system":["systems"],"sys":["systems","system-address-space"],"s":["systems"],"type":["types"],"t":["types"],"mv":["move","rename"],"comp":["components"],"ret":["retrieve"],"si":["signin","stdin"],"tr":["transfer"],"packagescl":["pkgscl"],"ebg":["endevor-bridge-for-git","ebg-profile","ebg-profiles"],"exec":["execute"],"jr":["job-report"],"co":["endevor-connection"],"ren":["rename"],"ec":["endevor-credentials"],"m":["mapping"],"add":["add-element"],"proc-group":["processor-group"],"pg":["processor-group"],"ua":["update-all"],"wa":["work-area","wa-profile","wa-profiles","workload-automation"],"unr":["unreserve"],"fmp":["file-master-plus","fmp-profile","fmp-profiles"],"ds":["data-set","dcmt-statistics"],"cre":["create"],"large":["large-format-sequential"],"model":["like-model"],"lm":["like-model"],"pds":["partitioned-data-set","data-set-partitioned"],"pdse":["partitioned-data-set-extended"],"ps":["physical-sequential","data-set-sequential"],"esds":["vsam-esds"],"ksds":["vsam-ksds"],"lds":["vsam-lds"],"rrds":["vsam-rrds"],"vrrds":["vsam-vrrds"],"pop":["populate"],"iss":["issue"],"dd":["dcmt-display"],"dq":["dcmt-quiesce"],"shutdown":["dcmt-shutdown"],"dt":["dcmt-test"],"dv":["dcmt-vary"],"dfh":["dcuf-help"],"dfs":["dcuf-show"],"ts":["transactions"],"ut":["user-tasks"],"qry":["query"],"pgm":["program"],"reg":["region"],"sta":["start"],"sto":["stop"],"upd":["update"],"jck":["jclcheck"],"ck":["check"],"lf":["local-file"],"cil":["callerid"],"cs":["csect"],"hsg":["histogram"],"cm":["module"],"db2v":["db2view"],"sql":["sqlstmt"],"ad":["address"],"de":["delay"],"hs":["history"],"ov":["overview"],"cr":["create"],"ivk":["invoke"],"lip":["list"],"pma":["mat-pma-util","pma-profile","pma-profiles"],"gt":["get"],"at":["alert","automation-table"],"abyj":["alert-by-job"],"pf":["perf"],"scp":["scope"],"delj":["del-job"],"delp":["del-pgm"],"exlp":["exl-pgm"],"getlj":["get-listj"],"getlp":["get-listp"],"incj":["inc-job"],"base":["base-profile","base-profiles"],"ca7":["ca7-profile","ca7-profiles"],"caspool":["caspool-profile","caspool-profiles"],"caview":["caview-profile","caview-profiles"],"cics-deploy":["cics-deploy-profile","cics-deploy-profiles"],"cics":["cics-profile","cics-profiles"],"db2":["db2-profile","db2-profiles"],"endevor-location":["endevor-location-profile","endevor-location-profiles"],"endevor":["endevor-profile","endevor-profiles"],"idms":["idms-profile","idms-profiles"],"ims":["ims-profile","ims-profiles"],"jclcheck":["jclcheck-profile","jclcheck-profiles"],"mat":["mat-profile","mat-profiles"],"mq":["mq-profile","mq-profiles"],"ops":["ops-profile","ops-profiles"],"rse":["rse-profile","rse-profiles","rse-api-for-zowe-cli"],"sa":["sa-profile","sa-profiles","system-automation"],"ssh":["ssh-profile","ssh-profiles","zos-ssh","command"],"sysview-format":["sysview-format-profile","sysview-format-profiles"],"sysview":["sysview-profile","sysview-profiles"],"tso":["tso-profile","tso-profiles","command","zos-tso"],"zftp":["zftp-profile","zftp-profiles","zos-ftp"],"znetview":["znetview-profile","znetview-profiles"],"zosconnect":["zosconnect-profile","zosconnect-profiles"],"zosmf":["zosmf-profile","zosmf-profiles"],"rm":["delete"],"set":["set-default"],"pv":["provisioning"],"ct":["catalog-templates"],"ii":["instance-info"],"iv":["instance-variables"],"ri":["registry-instances"],"ti":["template-info"],"perf":["perform"],"act":["action","activate"],"prov":["provision"],"tem":["template"],"q":["query"],"can":["cancel"],"pass":["password"],"maps":["conversion-mappings"],"jobs":["job-address-space","zos-jobs"],"member":["data-set-member"],"dir":["uss-directory"],"file":["uss-file"],"uss":["uss-file","unix","uss-files","zos-ssh"],"am":["all-members"],"o":["output"],"uf":["uss-file","uss-files"],"sfbj":["spool-files-by-jobid"],"hmigr":["migrate"],"hMigrate":["migrate"],"hrec":["recall"],"hRecall":["recall"],"rn":["rename"],"sub":["submit"],"in":["stdin"],"ul":["upload"],"dtp":["dir-to-pds"],"dtu":["dir-to-uss"],"ftds":["file-to-data-set"],"ftu":["file-to-uss","file-to-uss-file"],"vw":["view"],"jsbj":["job-status-by-jobid"],"sfbi":["spool-file-by-id"],"scs":["secure-credential-store"],"pol":["policy","policies"],"req":["request","requests"],"rec":["recording"],"tko":["takeoverfile"],"mem":["members","member"],"tmp":["templates"],"PAM":["PrimaryManager"],"v":["view"],"con":["connection"],"ver":["version"],"sv":["sysview"],"cap":["capture"],"dsp":["display"],"exe":["execute"],"jip":["jobinplan"],"jp":["jobinplan"],"resp":["resourceinplan"],"rp":["resourceinplan"],"jsim":["jobstreaminmodel"],"jsm":["jobstreaminmodel"],"jsip":["jobstreaminplan"],"jsp":["jobstreaminplan"],"sets":["set-status"],"nvauto":["znetview-automation"],"ats":["automation-table-statistics"],"val":["validate"],"nvbase":["znetview-base"],"cz":["canzlog"],"doms":["domains"],"task":["task-info"],"rc":["record"],"nvnet":["znetview-network"],"ddh":["ddvipa-health"],"dds":["ddvipa-stats"],"console":["zos-console"],"sr":["sync-responses"],"files":["zos-files"],"cp":["copy"],"bin":["data-set-binary"],"dsc":["data-set-c"],"classic":["data-set-classic"],"vsam":["data-set-vsam"],"zfs":["zos-file-system"],"mds":["migrated-data-set"],"call":["invoke"],"af":["ams-file"],"as":["ams-statements","address-space"],"fs":["file-system"],"dsm":["data-set-member"],"umount":["unmount"],"stds":["stdin-to-data-set"],"alloc":["allocate"],"asbj":["all-spool-by-jobid"],"members":["data-set-members"],"mk":["make"],"ftuf":["file-to-uss-file"],"stuf":["stdin-to-uss-file"],"stu":["stdin-to-uss-file"],"logs":["zos-logs"],"zos-uss":["zos-ssh"],"st":["start"],"wf":["zos-workflows","workflow-full"],"aw":["active-workflow","active-workflows"],"wfds":["workflow-from-data-set"],"wflf":["workflow-from-local-file"],"wfuf":["workflow-from-uss-file"],"arw":["archived-workflow","archived-workflows"],"awd":["active-workflow-details"],"dfd":["definition-file-details"],"ws":["workflow-step"]}; \ No newline at end of file diff --git a/static/stable/zowe_web_help.zip b/static/stable/zowe_web_help.zip index 7ad8e3dec7..e960c88b3e 100644 Binary files a/static/stable/zowe_web_help.zip and b/static/stable/zowe_web_help.zip differ