@broadcom/ops-for-zowe-cli 5.0.0-next.202401221923 → 5.0.0-next.202401231457
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 +57 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -61,4 +61,60 @@ To create an OPS/MVS® profile, edit the "global config" located at ~/'.zowe/zow
|
|
|
61
61
|
$ zowe config edit --gc
|
|
62
62
|
```
|
|
63
63
|
NOTE: See the 'zowe.config.example.json' file in this project for examples of
|
|
64
|
-
profiles for both OPS/MVS® Web Services or OPS/MVS® REST API server.
|
|
64
|
+
profiles for both OPS/MVS® Web Services or OPS/MVS® REST API server.
|
|
65
|
+
|
|
66
|
+
# Changes
|
|
67
|
+
|
|
68
|
+
Changes made to the OPS/MVS® Plug-in for Zowe CLI (OPS) are documented below.
|
|
69
|
+
|
|
70
|
+
## [5.0.0] - 2024-01-19
|
|
71
|
+
|
|
72
|
+
This release includes a breaking change from the prior release (4.1.2) and support for the OPS/MVS® REST API server.
|
|
73
|
+
|
|
74
|
+
### Breaking change
|
|
75
|
+
|
|
76
|
+
Commands 'start resource' and 'stop resource'
|
|
77
|
+
|
|
78
|
+
'tablename' is now a required positional argument
|
|
79
|
+
|
|
80
|
+
POSITIONAL ARGUMENTS
|
|
81
|
+
|
|
82
|
+
resourcename (string)
|
|
83
|
+
|
|
84
|
+
The name of the resource.
|
|
85
|
+
|
|
86
|
+
tablename (string)
|
|
87
|
+
|
|
88
|
+
The name of the table that contains the resource.
|
|
89
|
+
|
|
90
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
91
|
+
|
|
92
|
+
### New command (only available with the REST API server)
|
|
93
|
+
|
|
94
|
+
show ruleset
|
|
95
|
+
|
|
96
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
97
|
+
|
|
98
|
+
### Enhanced commands (only available with the REST API server)
|
|
99
|
+
|
|
100
|
+
show resource
|
|
101
|
+
|
|
102
|
+
Show the current and desired state of all resources in the table MYTABLE for the OPSS subsystem.
|
|
103
|
+
|
|
104
|
+
zowe ops show resource * --table MYTABLE --subsystem OPSS
|
|
105
|
+
|
|
106
|
+
Show the current and desired state of all resources in all tables for the OPSS subsystem.
|
|
107
|
+
|
|
108
|
+
zowe ops show resource * --subsystem OPSS
|
|
109
|
+
|
|
110
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
111
|
+
|
|
112
|
+
show rule
|
|
113
|
+
|
|
114
|
+
Show the status of all rules in ruleset OPSRULES for the OPSS subsystem.
|
|
115
|
+
|
|
116
|
+
zowe ops show rule OPSRULES * --subsystem OPSS
|
|
117
|
+
|
|
118
|
+
Show the status of all rules in all rulesets for the OPSS subsystem.
|
|
119
|
+
|
|
120
|
+
zowe ops show rule * * --subsystem OPSS
|