# @zosconnect/zosconnect-zowe-cli

> z/OS Connect EE Plugin for Zowe CLI

Latest version **1.2.1** (published 2020-07-22) · EPL-2.0 license · 0 weekly downloads

## Install

```sh
npm install @zosconnect/zosconnect-zowe-cli
pnpm add @zosconnect/zosconnect-zowe-cli
yarn add @zosconnect/zosconnect-zowe-cli
bun add @zosconnect/zosconnect-zowe-cli
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 1.2.1 |
| Published | 2020-07-22 |
| First published | 2019-03-12 |
| Weekly downloads | 0 |
| License | EPL-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 225.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 9 |
| Author | Andrew Smithson |
| Maintainers | crshnburn |
| Keywords | zowe, z/os |

## Links

- npm: https://www.npmjs.com/package/@zosconnect/zosconnect-zowe-cli
- Repository: https://github.com/zosconnect/zowe-cli-zosconnect-plugin
- Homepage: https://github.com/zosconnect/zowe-cli-zosconnect-plugin#readme
- Issues: https://github.com/zosconnect/zowe-cli-zosconnect-plugin/issues
- npm.io page: https://npm.io/package/@zosconnect/zosconnect-zowe-cli

## Dependencies (2)

- [snyk](https://npm.io/package/snyk.md) ^1.337.0
- [@zosconnect/zosconnect-node](https://npm.io/package/@zosconnect/zosconnect-node.md) ^4.1.2

## Recent versions

- 1.2.1 (latest) — 2020-07-22
- 1.1.1-202006092333.0 (daily) — 2020-06-09
- 1.1.2 (lts-incremental) — 2019-08-03
- 1.2.0 — 2020-05-22
- 1.1.1-201910102234.0 — 2019-10-10
- 1.1.1-201908031924.0 — 2019-08-03
- 1.1.1 — 2019-07-08
- 1.1.1-201907081120.0 — 2019-07-08
- 1.1.1-201907042143.0 — 2019-07-04
- 1.1.1-201907042125.0 — 2019-07-04
- 1.1.1-201907041805.0 — 2019-07-04
- 1.1.0 — 2019-06-04
- 1.1.0-201905282148.0 — 2019-05-28
- 1.1.0-201905270647.0 — 2019-05-27
- 1.1.0-201905241330.0 — 2019-05-24
- … 7 more at https://npm.io/package/@zosconnect/zosconnect-zowe-cli/versions

## README

# z/OS Connect EE Plug-in for Zowe CLI

<img src="./imgs/Zowe_ConformanceBadge_cli.svg" width=25%/>

[![Build Status](https://travis-ci.org/zosconnect/zowe-cli-zosconnect-plugin.svg?branch=master)](https://travis-ci.org/zosconnect/zowe-cli-zosconnect-plugin)
[![NPM Version](https://img.shields.io/npm/v/@zosconnect/zosconnect-zowe-cli)](https://www.npmjs.com/package/@zosconnect/zosconnect-zowe-cli)

This plugin extends the Zowe CLI to allow the management of z/OS Connect EE APIs, Services and API Requesters.

The Zowe CLI needs to be [installed](https://docs.zowe.org/stable/user-guide/cli-installcli.html#methods-to-install-zowe-cli).

## Installing

`zowe plugins install @zosconnect/zosconnect-zowe-cli@zowe-v1-lts`

## Create a profile

* Run the command `zowe profiles create zosconnect -a <server address> [-u <user id> -p <password> --ru]`

*Note:* If you are using a self-signed certificate then `--ru` needs to be set to `false`.

## Working with APIs

### List the installed APIs

`zowe zosconnect api list`

### Get information about an API

`zowe zosconnect api info <API name>`

### Install a new API

`zowe zosconnect api install <AAR file>`

### Update an API

`zowe zosconnect api update <API name> <AAR file>`

### Delete an API

`zowe zosconnect api delete <API name> [-f]`

If you specify `-f` option then the CLI will stop the API before deleting it.

### Start an API

`zowe zosconnect api start <API name>`

### Stop an API

`zowe zosconnect api stop <API name>`

## Working with Services

### List the installed Services

`zowe zosconnect service list`

### Get information about a Service

`zowe zosconnect service info <Service name>`

### Install a new Service

`zowe zosconnect service install <SAR file>`

### Update a Service

`zowe zosconnect service update <Service name> <SAR file>`

### Delete a Service

`zowe zosconnect service delete <Service name> [-f]`

If you specify the `-f` option then the CLI will stop the Service before deleting it.

### Start a Service

`zowe zosconnect service start <Service name>`

### Stop a Service

`zowe zosconnect service stop <Service name>`

## Working with API Requesters

### List the install API Requesters

`zowe zosconnect apirequester list`

### Get information about an API Requester

`zowe zosconnect apirequester info <API Requester name>`

### Install a new API Requester

`zowe zosconnect apirequester install <ARA file>`

### Update an API Requester

`zowe zosconnect apirequester update <API Requester name> <ARA file>`

### Delete an API Requester

`zowe zosconnect apirequester delete <API Requester name> [-f]`

If you specify the `-f` option then the CLI will stop the API Requester before deleting it.

### Start an API Requester

`zowe zosconnect apirequester start <API Requester name>`

### Stop an API Requester

`zowe zosconnect apirequester stop <API Requester name>`

## Support

If you experience any problems with this plug-in then please [raise an issue](https://github.com/zosconnect/zowe-cli-zosconnect-plugin/issues/new/choose) and the development team will look into it.

## Developing

1. Clone this repository `git clone git@github.com:zosconnect/zowe-cli-zosconnect-plugin.git`
1. Build the plugin `npm run build`
1. Run the CLI Tests `npm test`
1. Package the plugin `npm pack`
1. Install the plugin `npm run pluginInstall`
1. Run the integration tests `npm run integration`

---
_Source: https://npm.io/package/@zosconnect/zosconnect-zowe-cli · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
