cicsts.dse.tag.[TAG].applid
property. |
+| Default value: | None |
+| Valid values: | dse|
+| Examples: | <cicsts.provision.type=dse
cicsts.provision.type
property to specify the CICS TS region type to be `dse`. For example, cicsts.provision.type=dse
.|
+| Required: | Yes if you want a DSE region, otherwise not required. |
| Default value: | None |
| Valid values: | A value VTAM applid |
-| Examples: | cicsts.dse.tag.PRIMARY.applid=CICS1A
cicsts.dse.tag.PRIMARY.applid=CICS1A
cicsts.extra.bundles=org.example.cicsts.provisioning
elasticlog.endpoint.address
elasticlog.endpoint.index
elasticlog.local.run.log
must be set to true.framework.extra.bundles=dev.galasa.elasticlog.manager
@KubernetesEcosystem
public IKubernetesEcosystem ecosystem;
@KubernetesEcosystem(yamlDirectory="/k8syaml"
public IKubernetesEcosystem ecosystem;
|
| Notes: | The IKubernetesEcosystem
interface gives the test access to the URLs to all the services and API endpoints within the Ecosystem. When the test starts to run, all the services will be up and verified.yamlDirectory
attribute. If a resource is missing in the test's set, then the stable version will be used. |
-## Code Snippets
+## Code Snippets
Use the following code snippets to help you get started with the Galasa Ecosystem Manager.
diff --git a/src/markdown-pages/docs/managers/http-client-manager.md b/src/markdown-pages/docs/managers/http-client-manager.md
index ba7a051e..cdca041d 100644
--- a/src/markdown-pages/docs/managers/http-client-manager.md
+++ b/src/markdown-pages/docs/managers/http-client-manager.md
@@ -3,12 +3,18 @@ path: "/docs/managers/http-client-manager"
title: "HTTP Client Manager"
---
-**Release**
+This Manager is at Release level. You can view the Javadoc documentation for the Manager here.kubernetes.cluster.K8S.url
must be provided as well as a credential secure.credentials.K8S.token
for the API token. selenium.instance.PRIMARY.gecko.path
selenium.instance.PRIMARY.web.driver
selenium.instance.PRIMARY.web.driver=CHROME
selenium.instance.PRIMARY.chrome.path=...
The zOS Batch RSE API Manager is enabled by setting the CPS property: zos.bundle.extra.batch.manager=dev.galasa.zosbatch.rseapi.manager
See the zOS Manager for details of the z/OS Batch annotations and code snippets.
diff --git a/src/markdown-pages/docs/managers/z-os-batch-z-os-mf-manager.md b/src/markdown-pages/docs/managers/z-os-batch-z-os-mf-manager.md
index dd2b7661..56c4bd3f 100644
--- a/src/markdown-pages/docs/managers/z-os-batch-z-os-mf-manager.md
+++ b/src/markdown-pages/docs/managers/z-os-batch-z-os-mf-manager.md
@@ -3,9 +3,10 @@ path: "/docs/managers/z-os-batch-z-os-mf-manager"
title: "z/OS Batch z/OS MF Manager"
---
-**BETA - This Manager is feature complete but may contain known or unknown bugs.**
+This Manager is at Beta level. You can view the Javadoc documentation for the Manager here.
-## Overview
+
+# Overview
This Manager is an internal implementation of the z/OS Batch Manager using z/OS MF. The z/OS MF Batch Manager is used in conjunction with the z/OS Manager. The z/OS Manager provides the interface for the z/OS batch function and pulls in the z/OS MF Batch Manager to provide the implementation of the interface. If your test needs to submit or monitor a batch job or retrieve output from a batch job, you can call the z/OS Manager in your test code and the z/OS Manager will call the z/OS MF Batch Manager to provide the implementation via the z/OS batch function. For example, the BatchAccountsOpenTest uses the z/OS Manager (which in the background, invokes z/OS MF) to add a set of accounts to the Galasa SimBank system via a z/OS batch job.
The zOS Batch z/OS MF Manager is enabled by setting the CPS property:
zos.bundle.extra.batch.manager=dev.galasa.zosbatch.zosmf.manager
Galasa sets this property by default.
See the zOS Manager for details of the z/OS Batch annotations and code snippets.
diff --git a/src/markdown-pages/docs/managers/z-os-file-manager.md b/src/markdown-pages/docs/managers/z-os-file-manager.md
index a1d2b02f..2aa2d510 100644
--- a/src/markdown-pages/docs/managers/z-os-file-manager.md
+++ b/src/markdown-pages/docs/managers/z-os-file-manager.md
@@ -3,13 +3,21 @@ path: "/docs/managers/z-os-file-manager"
title: "z/OS file Manager"
---
-**BETA**
+This Manager is at Beta level. You can view the Javadoc documentation for the Manager here.
-## Overview
+
+
+[Overview](#overview)
+[Configuring](#configuring)
+[Provided annotation](#annotations)
+[Code snippets and examples](#codesnippets)
+
+
+# Overview
This Manager enables Galasa tests to manage data sets and UNIX files on a z/OS image.
The Manager is implemented using the z/OS MF Manager by default.
-## Annotations
+## Annotations
The following annotations are available with the z/OS file Manager
@@ -38,7 +46,7 @@ The following annotations are available with the z/OS file Manager
| Syntax: | @ZosFileHandler
|
| Notes: | The
public IZosFileHandler zosFileHandler;IZosFileHandler
interface has three methods supplying file name and z/OS image:
{@link IZosFileHandler#newDataset(String, dev.galasa.zos.IZosImage)}
{@link IZosFileHandler#newVSAMDataset(String, dev.galasa.zos.IZosImage)}
{@link IZosFileHandler#newUNIXFile(String, dev.galasa.zos.IZosImage)}
returning an object representing the type of file requested. This can be an existing file or can be created via a method on the file object.
See ZosFileHandler, IZosFileHandler, IZosDataset, IZosVSAMDataset and IZosUNIXFile to find out more. |
-## Code Snippets
+## Code Snippets
Use the following code snippets to help you get started with the z/OS file Manager.
@@ -291,6 +299,4 @@ vsamDataSet.setRecordSize(50, 101);
vsamDataSet.create();
```
-### Read a zOS UNIX File
-*To be completed...*
diff --git a/src/markdown-pages/docs/managers/z-os-file-zos-mf-manager.md b/src/markdown-pages/docs/managers/z-os-file-zos-mf-manager.md
index fec8b121..b1efeb38 100644
--- a/src/markdown-pages/docs/managers/z-os-file-zos-mf-manager.md
+++ b/src/markdown-pages/docs/managers/z-os-file-zos-mf-manager.md
@@ -3,9 +3,10 @@ path: "/docs/managers/z-os-file-zos-mf-manager"
title: "z/OS File zOS/MF Manager"
---
-**BETA - This Manager is feature complete but may contain known or unknown bugs.**
+This Manager is at Beta level. You can view the Javadoc documentation for the Manager here.
-## Overview
+
+# Overview
This Manager is an internal implementation of the z/OS File Manager using zOS/MF. The z/OS MF File Manager is used in conjunction with the z/OS Manager. The z/OS Manager provides the interface for the z/OS file function and pulls in the z/OS MF File Manager to provide the implementation of the interface. If your test needs to instantiate a UNIX file, dataset, or VSAM data set, write and retrieve content from it, or configure and manipulate it then you can call the z/OS Manager in your test code and the z/OS Manager will call the z/OS MF File Manager to provide the implementation via the z/OS file function.
The z/OS File zOS/MF Manager is enabled by setting the CPS property:
zos.bundle.extra.file.manager=dev.galasa.zosfile.rseapi.manager
Galasa sets this property by default.
See the zOS Manager for details of the z/OS File Annotations.
diff --git a/src/markdown-pages/docs/managers/zos-batch-manager.md b/src/markdown-pages/docs/managers/zos-batch-manager.md
index fe34e023..bff4c332 100644
--- a/src/markdown-pages/docs/managers/zos-batch-manager.md
+++ b/src/markdown-pages/docs/managers/zos-batch-manager.md
@@ -3,13 +3,18 @@ path: "/docs/managers/zos-batch-manager"
title: "zOS Batch Manager"
---
-**BETA**
+This Manager is at Beta level. You can view the Javadoc documentation for the Manager here.
-## Overview
+[Overview](#overview)
+[Provided annotation](#annotations)
+[Code snippets and examples](#codesnippets)
+
+
+# Overview
This Manager enables Galasa tests to submit batch jobs to run on a z/OS image.
The Manager is implemented using the z/OS MF Manager by default.
-## Annotations
+## Provided annotations
The following annotations are available with the zOS Batch Manager
@@ -38,7 +43,7 @@ The following annotations are available with the zOS Batch Manager
| Syntax: | @ZosFileHandler
|
| Notes: | The
public IZosFileHandler zosFileHandler;IZosFileHandler
interface has three methods supplying file name and z/OS image:
{@link IZosFileHandler#newDataset(String, dev.galasa.zos.IZosImage)}
{@link IZosFileHandler#newVSAMDataset(String, dev.galasa.zos.IZosImage)}
{@link IZosFileHandler#newUNIXFile(String, dev.galasa.zos.IZosImage)}
returning an object representing the type of file requested. This can be an existing file or can be created via a method on the file object.
See ZosFileHandler, IZosFileHandler, IZosDataset, IZosVSAMDataset and IZosUNIXFile to find out more. |
-## Code Snippets
+## Code Snippets
Use the following code snippets to help you get started with the zOS Batch Manager.
diff --git a/src/markdown-pages/docs/managers/zos-batch-zos-mf-manager.md b/src/markdown-pages/docs/managers/zos-batch-zos-mf-manager.md
index c0a5ef38..335e476a 100644
--- a/src/markdown-pages/docs/managers/zos-batch-zos-mf-manager.md
+++ b/src/markdown-pages/docs/managers/zos-batch-zos-mf-manager.md
@@ -3,9 +3,10 @@ path: "/docs/managers/zos-batch-zos-mf-manager"
title: "zOS Batch zOS MF Manager"
---
-**BETA**
+This Manager is at Beta level.
-## Overview
+
+# Overview
This Manager is the internal implementation of the zOS Batch Manager using zOS/MF.
You can view the Javadoc documentation for the Manager here.
diff --git a/src/markdown-pages/docs/managers/zos-console-manager.md b/src/markdown-pages/docs/managers/zos-console-manager.md
index a05c6207..c5efdad7 100644
--- a/src/markdown-pages/docs/managers/zos-console-manager.md
+++ b/src/markdown-pages/docs/managers/zos-console-manager.md
@@ -3,13 +3,18 @@ path: "/docs/managers/zos-console-manager"
title: "zOS Console Manager"
---
-**BETA**
+This Manager is at Beta level. You can view the Javadoc documentation for the Manager here.
-## Overview
+[Overview](#overview)
+[Provided annotation](#annotations)
+[Code snippets and examples](#codesnippets)
+
+
+# Overview
This Manager enables Galasa tests to issue console commands on a z/OS image.
The Manager is implemented using the z/OS MF Manager by default.
-## Annotations
+## Provided annotations
The following annotations are available with the zOS Console Manager
@@ -38,7 +43,7 @@ The following annotations are available with the zOS Console Manager
| Syntax: | @ZosFileHandler
|
| Notes: | The
public IZosFileHandler zosFileHandler;IZosFileHandler
interface has three methods supplying file name and z/OS image:
{@link IZosFileHandler#newDataset(String, dev.galasa.zos.IZosImage)}
{@link IZosFileHandler#newVSAMDataset(String, dev.galasa.zos.IZosImage)}
{@link IZosFileHandler#newUNIXFile(String, dev.galasa.zos.IZosImage)}
returning an object representing the type of file requested. This can be an existing file or can be created via a method on the file object.
See ZosFileHandler, IZosFileHandler, IZosDataset, IZosVSAMDataset and IZosUNIXFile to find out more. |
-## Code Snippets
+## Code Snippets
Use the following code snippets to help you get started with the zOS Console Manager.
@@ -291,6 +296,4 @@ vsamDataSet.setRecordSize(50, 101);
vsamDataSet.create();
```
-### Read a zOS UNIX File
-*To be completed...*
diff --git a/src/markdown-pages/docs/managers/zos-console-oeconsol-manager.md b/src/markdown-pages/docs/managers/zos-console-oeconsol-manager.md
index efa4f645..5be8f222 100644
--- a/src/markdown-pages/docs/managers/zos-console-oeconsol-manager.md
+++ b/src/markdown-pages/docs/managers/zos-console-oeconsol-manager.md
@@ -3,16 +3,22 @@ path: "/docs/managers/zos-console-oeconsol-manager"
title: "zOS Console oeconsol Manager"
---
-**ALPHA - This Manager is being actively developed. It is subject to change and has not been extensively tested.**
+This Manager is at Alpha level. You can view the Javadoc documentation for the Manager here.
-## Overview
+
+
+[Overview](#overview)
+[Configuring](#configuring)
+
+
+# Overview
This Manager is the internal implementation of the z/OS Console Manager using oeconsol. The oeconsol z/OS Console Manager is used in conjunction with the z/OS UNIX Command Manager. The z/OS Manager provides the interface for the z/OS console function and pulls in the oeconsol Console Manager to provide the implementation of the interface. If your test needs to request a z/OS console instance, issue a console command or retrieve the console command, you can call the z/OS Manager in your test code and the z/OS Manager will call the oeconsol Console Manager to provide the implementation via the z/OS console function. Multiple z/OS console images can be requested by a test.
See the zOS Manager for details of the z/OS Console Annotations.
This implementation is less rich than the zOS/MF implementation due to the restricted functionallity of oeconsol:
IZosConsole#issueCommand(String command, String consoleName)
the Manager attempts to obtain credentials from the CPS, i.e. secure.credentials.[consoleName].username
. The credentials are used to logon to z/OS UNIX and execute oeconsol with the supplied command. ZosConsoleException
is will be thrown when the IZosConsoleCommand#requestResponse()
method is called. See oeconsol for documentation and download
-## Configuration Properties
+## Configuration Properties
The following are properties used to configure the zOS Console oeconsol Manager.
diff --git a/src/markdown-pages/docs/managers/zos-console-zos-mf-manager.md b/src/markdown-pages/docs/managers/zos-console-zos-mf-manager.md
index 8f97c6fe..290b83a0 100644
--- a/src/markdown-pages/docs/managers/zos-console-zos-mf-manager.md
+++ b/src/markdown-pages/docs/managers/zos-console-zos-mf-manager.md
@@ -3,9 +3,9 @@ path: "/docs/managers/zos-console-zos-mf-manager"
title: "zOS Console zOS MF Manager"
---
-**BETA - This Manager is feature complete but may contain known or unknown bugs.**
+This Manager is at Beta level. You can view the Javadoc documentation for the Manager here.
-## Overview
+# Overview
This Manager is the internal implementation of the z/OS Console Manager using zOS/MF. The z/OS MF Console Manager is used in conjunction with the z/OS Manager. The z/OS Manager provides the interface for the z/OS console function and pulls in the z/OS MF Console Manager to provide the implementation of the interface. If your test needs to request a z/OS console instance, issue a console command or retrieve the console command, you can call the z/OS Manager in your test code and the z/OS Manager will call the z/OS MF Console Manager to provide the implementation via the z/OS console function. Multiple z/OS console images can be requested by a test.
See the zOS Manager for details of the z/OS Console Annotations.
diff --git a/src/markdown-pages/docs/managers/zos-file-manager.md b/src/markdown-pages/docs/managers/zos-file-manager.md
index b319209e..9595a055 100644
--- a/src/markdown-pages/docs/managers/zos-file-manager.md
+++ b/src/markdown-pages/docs/managers/zos-file-manager.md
@@ -3,13 +3,19 @@ path: "/docs/managers/zos-file-manager"
title: "zOS file Manager"
---
-**BETA**
+This Manager is at Beta level. You can view the Javadoc documentation for the Manager here.
-## Overview
+
+[Overview](#overview)
+[Provided annotation](#annotations)
+[Code snippets and examples](#codesnippets)
+
+
+# Overview
This Manager enables Galasa tests to manage data sets and UNIIX files on a zOS image.
The manager is implemented using the zOS/MF Manager by default.
-## Annotations
+## Provided annotations
The following annotations are available with the zOS file Manager
@@ -38,7 +44,7 @@ The following annotations are available with the zOS file Manager
| Syntax: | @ZosFileHandler
|
| Notes: | The
public IZosFileHandler zosFileHandler;IZosFileHandler
interface has three methods supplying file name and zOS image:
{@link IZosFileHandler#newDataset(String, dev.galasa.zos.IZosImage)}
{@link IZosFileHandler#newVSAMDataset(String, dev.galasa.zos.IZosImage)}
{@link IZosFileHandler#newUNIXFile(String, dev.galasa.zos.IZosImage)}
returning an object representing the type of file requested. This can be an existing file or can be created via a method on the file object.
See ZosFileHandler, IZosFileHandler, IZosDataset, IZosVSAMDataset and IZosUNIXFile to find out more. |
-## Code Snippets
+## Code Snippets
Use the following code snippets to help you get started with the zOS file Manager.
diff --git a/src/markdown-pages/docs/managers/zos-file-zos-mf-manager.md b/src/markdown-pages/docs/managers/zos-file-zos-mf-manager.md
index eb3962d9..60e5b9f5 100644
--- a/src/markdown-pages/docs/managers/zos-file-zos-mf-manager.md
+++ b/src/markdown-pages/docs/managers/zos-file-zos-mf-manager.md
@@ -3,9 +3,10 @@ path: "/docs/managers/zos-file-zos-mf-manager"
title: "zOS File zOS MF Manager"
---
-**BETA**
+This Manager is at Beta level. You can view the Javadoc documentation for the Manager here.
-## Overview
+
+# Overview
This Manager is the internal implementation of the zOS File Manager using zOS/MF. The z/OS MF File Manager is used in conjunction with the z/OS Manager. The z/OS Manager provides the interface for the z/OS file function and pulls in the z/OS MF File Manager to provide the implementation of the interface. If your test needs to instantiate a UNIX file, dataset, or VSAM data set, write and retrieve content from it, or configure and manipulate it then you can call the z/OS Manager in your test code and the z/OS Manager will call the z/OS MF File Manager to provide the implementation via the z/OS file function.
See the zOS Manager for details of the z/OS File Annotations.
diff --git a/src/markdown-pages/docs/managers/zos-manager.md b/src/markdown-pages/docs/managers/zos-manager.md
index 196c5383..cfc15b2b 100644
--- a/src/markdown-pages/docs/managers/zos-manager.md
+++ b/src/markdown-pages/docs/managers/zos-manager.md
@@ -57,10 +57,59 @@ compileOnly 'dev.galasa:dev.galasa.zos.manager'
}
```
+## Testing CICS Regions on z/OS
+
+To connect your Galasa test to a developer supplied environment with a provisioned CICS region as a minimum you need to configure the following properties, even if you do not reference a `@ZosImage` in your Galasa test. This is because CICS regions sit on a z/OS LPAR, and so to provision and connect to a CICS region in a test, you also need access to the z/OS image that it sits within to make requests on the CICS region. You might need to configure additional z/OS-related CPS properties, depending on your test.
+
+
+```
+zos.dse.tag.[tag].imageid=[IMAGEID] OR zos.cluster.[clusterId].images=[IMAGEID]
+zos.image.[IMAGEID].ipv4.hostname=[IP ADDRESS]
+zos.image.[IMAGEID].credentials=[CREDENTIALID]
+```
+
+You also need to configure the following properties for the [CICS TS Manager](cics-ts-manager):
+
+```
+cicsts.provision.type=dse
+cicsts.dse.tag.[TAG].applid=[APPLID]
+```
+
+
# Configuring
The following properties are used to configure the z/OS Manager.
-
+
+
+Hostname of a z/OS system
+
+| Property: | Hostname of a z/OS system |
+| --------------------------------------- | :------------------------------------- |
+| Name: | zos.image.[IMAGEID].ipv4.hostname |
+| Description: | A physical TCP/IP hostname value for a z/OS system |
+| Required: | Yes, if connecting to a z/OS image |
+| Default value: | None |
+| Valid values: | A valid TCP/IP hostname |
+| Examples: | zos.image.IMAGEA.ipv4.hostname=dev.galasa.system1
zos.image.SIMBANK.ipv4.hostname=127.0.0.1
zos.image.IMAGEA.ipv4.hostname=winmvs2a.example.com
|
+
+Credentials tag for logging onto a z/OS system
+
+| Property: | Credentials tag for logging onto a z/OS system |
+| --------------------------------------- | :------------------------------------- |
+| Name: | zos.image.[IMAGEID].credentials |
+| Description: | Tag of the credentials that are stored in the CREDS and used to log onto a z/OS system |
+| Required: | Yes, if connecting to a z/OS image |
+| Default value: | None|
+| Valid values: | Valid characters are A-Z, a - z, 0-9 |
+| Examples: | zos.image.IMAGEA.credentials=KEY_TO_CREDS_STORE
zos.image.SIMBANK.credentials=SIMBANK
zos.image.IMAGEA.credentials=WINMVS2A
|
+
+Extra bundle required to implement the z/OS Batch Manager
@@ -80,7 +129,7 @@ The following properties are used to configure the z/OS Manager.
| Property: | The zOS Cluster ID |
| --------------------------------------- | :------------------------------------- |
-| Name: | zos.tag.[tag].clusterid |
+| Name: | zos.tag.[tag].clusterid |
| Description: | The z/OS Cluster ID for the specified tag |
| Required: | No |
| Default value: | None |
@@ -94,7 +143,7 @@ The following properties are used to configure the z/OS Manager.
| Property: | The images for a zOS Cluster |
| --------------------------------------- | :------------------------------------- |
-| Name: | zos.cluster.[clusterId].images |
+| Name: | zos.cluster.[clusterId].images |
| Description: | The z/OS Images for the specified cluster. Specify more than one image by using commas. |
| Required: | No |
| Default value: | None |
diff --git a/src/markdown-pages/docs/managers/zos-managertestformat.md b/src/markdown-pages/docs/managers/zos-managertestformat.md
index 4e632b79..4ff4e9ef 100644
--- a/src/markdown-pages/docs/managers/zos-managertestformat.md
+++ b/src/markdown-pages/docs/managers/zos-managertestformat.md
@@ -3,12 +3,18 @@ path: "/docs/managers/zos-managertestformat"
title: "zOS Manager"
---
-**BETA**
+This Manager is at Beta level. You can view the Javadoc documentation for the Manager here.
-## Overview
+
+[Overview](#overview)
+[Provided annotation](#annotations)
+[Code snippets and examples](#codesnippets)
+
+
+# Overview
This Manager provides Galasa tests with access to a z/OS image.
-## Annotations
+## Provided annotations
@ZosBatch
@@ -45,7 +51,7 @@ This Manager provides Galasa tests with access to a z/OS image.
| Notes: | The IZosFileHandler
interface has three methods supplying file name and z/OS image:
{@link IZosFileHandler#newDataset(String, dev.galasa.zos.IZosImage)}
{@link IZosFileHandler#newVSAMDataset(String, dev.galasa.zos.IZosImage)}
{@link IZosFileHandler#newUNIXFile(String, dev.galasa.zos.IZosImage)}
returning an object representing the type of file requested. This can be an existing file or can be created via a method on the file object.
See ZosFileHandler, IZosFileHandler, IZosDataset, IZosVSAMDataset and IZosUNIXFile to find out more. |
diff --git a/src/markdown-pages/docs/managers/zos-mf-manager.md b/src/markdown-pages/docs/managers/zos-mf-manager.md
index 388a7bba..1cb33c2f 100644
--- a/src/markdown-pages/docs/managers/zos-mf-manager.md
+++ b/src/markdown-pages/docs/managers/zos-mf-manager.md
@@ -3,13 +3,19 @@ path: "/docs/managers/zos-mf-manager"
title: "zOS MF Manager"
---
-**BETA - This Manager is feature complete but may contain known or unknown bugs.**
+This Manager is at Beta level. You can view the Javadoc documentation for the Manager here.
-## Overview
+
+[Overview](#overview)
+[Provided annotation](#annotations)
+[Configuring](#configuring)
+
+
+# Overview
This Manager provides Galasa tests with access to a zOS/MF server. Use the z/OS MF Manager to simplify areas of z/OS system management. The z/OS MF Manager can be called from a test or from other Managers. For example, the z/OS Manager calls the z/OS MF Manager to implement z/OS file, console and batch functions via the relevant interface.
-## Annotations
+## Provided annotations
The following annotations are available with the zOS MF Manager
-## Overview
-This Manager is the internal implementation of the zOS TSO Command Manager using SSH.
See the zOS Manager for details of the z/OS TSO annotations and code snippets.
You can view the Javadoc documentation for the Manager here.
+[Overview](#overview)
+[Configuring](#configuring)
+# Overview
+This Manager is the internal implementation of the zOS TSO Command Manager using SSH.
See the zOS Manager for details of the z/OS TSO annotations and code snippets.
-## Configuration Properties
+
+
+## Configuration Properties
The following are properties used to configure the zOS TSO Command SSH Manager.
diff --git a/src/markdown-pages/docs/managers/zos-unix-command-ssh-manager.md b/src/markdown-pages/docs/managers/zos-unix-command-ssh-manager.md
index 16f77a95..14966d38 100644
--- a/src/markdown-pages/docs/managers/zos-unix-command-ssh-manager.md
+++ b/src/markdown-pages/docs/managers/zos-unix-command-ssh-manager.md
@@ -3,9 +3,10 @@ path: "/docs/managers/zos-unix-command-ssh-manager"
title: "zOS UNIX Command SSH Manager"
---
-**ALPHA - This Manager is being actively developed. It is subject to change and has not been extensively tested.**
+This Manager is at Beta level. You can view the Javadoc documentation for the Manager here.
-## Overview
+
+# Overview
This Manager is the internal implementation of the z/OS UNIX Command Manager using SSH.
See the zOS Manager for details of the z/OS UNIX annotations and code snippets.
You can view the Javadoc documentation for the Manager here.