@broadcom/mat-analyze-for-zowe-cli 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -17
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -96,23 +96,25 @@ Successful validation of the plug-in returns the response "This plugin was succe
|
|
|
96
96
|
|
|
97
97
|
## Create a MAT Profile
|
|
98
98
|
|
|
99
|
-
To enable the interaction of the MAT Analyze plug-in for Zowe CLI with MAT, you need to specify the MAT profile details that include the protocol type, host, and port that you defined for the MAT REST API server
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
99
|
+
To enable the interaction of the MAT Analyze plug-in for Zowe CLI with MAT, you need to specify the MAT profile details that include the protocol type, host, and port that you defined for the MAT REST API server. The details of the MAT profile are stored in the Zowe configuration file. To create MAT profile, complete the following steps:
|
|
100
|
+
|
|
101
|
+
1. To create a global Zowe configuration file, use the command `zowe config init --global-config`.
|
|
102
|
+
2. Specify the host, username, and password. Your credentials are automatically encripted and stored.
|
|
103
|
+
3. To create MAT profile, open the created zowe.config json file and add a section with the MAT profile details:
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
"mat": {
|
|
107
|
+
"type": "mat",
|
|
108
|
+
"properties": {
|
|
109
|
+
"host": "example.com",
|
|
110
|
+
"protocol": "http",
|
|
111
|
+
"port": 12345,
|
|
112
|
+
"listingDir": "c:\\listings",
|
|
113
|
+
"rejectUnauthorized": false
|
|
114
|
+
},
|
|
115
|
+
"secure": []
|
|
116
|
+
},
|
|
117
|
+
```
|
|
116
118
|
|
|
117
119
|
## Use MAT Profile Options
|
|
118
120
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@broadcom/mat-analyze-for-zowe-cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "MAT Analyze Plug-in for Zowe CLI",
|
|
5
5
|
"author": "Broadcom",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"ts-jest": "^29.2.4",
|
|
64
64
|
"ts-node": "^10.9.2",
|
|
65
65
|
"tsutils": "^3.21.0",
|
|
66
|
-
"typescript": "
|
|
66
|
+
"typescript": "5.6.3",
|
|
67
67
|
"typescript-eslint": "^8.1.0",
|
|
68
68
|
"uuid": "^10.0.0"
|
|
69
69
|
},
|