You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/modules/cmci_action.rst
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -189,9 +189,9 @@ resources
189
189
190
190
Filters can be nested. At most four nesting layers are allowed.
191
191
192
-
When supplying the ``attribute`` option, you must also supply a ``value`` for the filter. You can also override the default operator of ``=`` with the ``operator`` option.
192
+
When supplying the ``attribute`` option, you must also supply a ``value`` for the filter. You can also override the default operator of ``=`` with the ``operator`` option.
193
193
194
-
For examples, see :ref:`cmci_get <cmci_get_module>`
194
+
For examples, see "Examples" in :ref:`cmci_get <cmci_get_module>`.
195
195
196
196
197
197
|**required**: False
@@ -202,7 +202,7 @@ resources
202
202
and
203
203
A list of filter expressions to be combined with an ``and`` operation.
204
204
205
-
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
205
+
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
206
206
207
207
208
208
|**required**: False
@@ -222,20 +222,21 @@ resources
222
222
223
223
224
224
operator
225
-
These operators are accepted: ``<`` or ``LT`` (less than), ``<=`` or ``LE`` (less than or equal to), ``=`` or ``EQ`` (equal to), ``>`` or ``GT`` (greater than), ``>=`` or ``GE`` (greater than or equal to), ``==`` or ``IS`` (is), ``¬=``, ``!=``, or ``NE`` (not equal to). If not supplied when 'attribute' is used, ``EQ`` will be assumed.
225
+
These operators are accepted: ``<`` or ``LT`` (less than), ``<=`` or ``LE`` (less than or equal to), ``=`` or ``EQ`` (equal to), ``>`` or ``GT`` (greater than), ``>=`` or ``GE`` (greater than or equal to), ``==`` or ``IS`` (is), ``¬=``, ``!=``, or ``NE`` (not equal to). If not supplied when ``attribute`` is used, ``EQ`` is assumed.
226
226
227
227
228
228
229
229
|**required**: False
230
230
|**type**: str
231
+
|**default**: EQ
231
232
|**choices**: <, >, <=, >=, =, ==, !=, ¬=, EQ, GT, GE, LT, LE, NE, IS
232
233
233
234
234
235
235
236
or
236
237
A list of filter expressions to be combined with an ``or`` operation.
237
238
238
-
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
239
+
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
239
240
240
241
241
242
|**required**: False
@@ -258,17 +259,17 @@ resources
258
259
filter
259
260
A dictionary with attribute names as keys, and target values, to be used as criteria to filter the set of resources returned from CICSPlex SM.
260
261
261
-
Filters implicitly use the ``=`` operator
262
+
Filters implicitly use the ``=`` operator.
262
263
263
-
Filters for ``string`` type attributes can use the ``*`` and ``+`` wildcard operators
264
+
Filters for ``string`` type attributes can use the ``*`` and ``+`` wildcard operators.
264
265
265
-
``*`` is a wildcard representing an unknown number of characters, and must appear at the end of the value
266
+
``*`` is a wildcard representing an unknown number of characters, and must appear at the end of the value.
266
267
267
268
``+`` is a wildcard representing a single character, and can appear in any place in the value, potentially multiple times.
268
269
269
270
To use more complicated filter expressions, including a range of different filter operators, and the ability to compose filters with ``and`` and ``or`` operators, see the ``complex_filter`` parameter.
270
271
271
-
For examples, see :ref:`cmci_get <cmci_get_module>`
272
+
For examples, see "Examples" in :ref:`cmci_get <cmci_get_module>`.
272
273
273
274
For more details, see `How to build a filter expression <https://www.ibm.com/support/knowledgecenter/SSGMCP_5.6.0/system-programming/cpsm/eyup1a0.html>`_.
Copy file name to clipboardExpand all lines: docs/source/modules/cmci_delete.rst
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -149,9 +149,9 @@ resources
149
149
150
150
Filters can be nested. At most four nesting layers are allowed.
151
151
152
-
When supplying the ``attribute`` option, you must also supply a ``value`` for the filter. You can also override the default operator of ``=`` with the ``operator`` option.
152
+
When supplying the ``attribute`` option, you must also supply a ``value`` for the filter. You can also override the default operator of ``=`` with the ``operator`` option.
153
153
154
-
For examples, see :ref:`cmci_get <cmci_get_module>`
154
+
For examples, see "Examples" in :ref:`cmci_get <cmci_get_module>`.
155
155
156
156
157
157
|**required**: False
@@ -162,7 +162,7 @@ resources
162
162
and
163
163
A list of filter expressions to be combined with an ``and`` operation.
164
164
165
-
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
165
+
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
166
166
167
167
168
168
|**required**: False
@@ -182,20 +182,21 @@ resources
182
182
183
183
184
184
operator
185
-
These operators are accepted: ``<`` or ``LT`` (less than), ``<=`` or ``LE`` (less than or equal to), ``=`` or ``EQ`` (equal to), ``>`` or ``GT`` (greater than), ``>=`` or ``GE`` (greater than or equal to), ``==`` or ``IS`` (is), ``¬=``, ``!=``, or ``NE`` (not equal to). If not supplied when 'attribute' is used, ``EQ`` will be assumed.
185
+
These operators are accepted: ``<`` or ``LT`` (less than), ``<=`` or ``LE`` (less than or equal to), ``=`` or ``EQ`` (equal to), ``>`` or ``GT`` (greater than), ``>=`` or ``GE`` (greater than or equal to), ``==`` or ``IS`` (is), ``¬=``, ``!=``, or ``NE`` (not equal to). If not supplied when ``attribute`` is used, ``EQ`` is assumed.
186
186
187
187
188
188
189
189
|**required**: False
190
190
|**type**: str
191
+
|**default**: EQ
191
192
|**choices**: <, >, <=, >=, =, ==, !=, ¬=, EQ, GT, GE, LT, LE, NE, IS
192
193
193
194
194
195
195
196
or
196
197
A list of filter expressions to be combined with an ``or`` operation.
197
198
198
-
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
199
+
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
199
200
200
201
201
202
|**required**: False
@@ -218,17 +219,17 @@ resources
218
219
filter
219
220
A dictionary with attribute names as keys, and target values, to be used as criteria to filter the set of resources returned from CICSPlex SM.
220
221
221
-
Filters implicitly use the ``=`` operator
222
+
Filters implicitly use the ``=`` operator.
222
223
223
-
Filters for ``string`` type attributes can use the ``*`` and ``+`` wildcard operators
224
+
Filters for ``string`` type attributes can use the ``*`` and ``+`` wildcard operators.
224
225
225
-
``*`` is a wildcard representing an unknown number of characters, and must appear at the end of the value
226
+
``*`` is a wildcard representing an unknown number of characters, and must appear at the end of the value.
226
227
227
228
``+`` is a wildcard representing a single character, and can appear in any place in the value, potentially multiple times.
228
229
229
230
To use more complicated filter expressions, including a range of different filter operators, and the ability to compose filters with ``and`` and ``or`` operators, see the ``complex_filter`` parameter.
230
231
231
-
For examples, see :ref:`cmci_get <cmci_get_module>`
232
+
For examples, see "Examples" in :ref:`cmci_get <cmci_get_module>`.
232
233
233
234
For more details, see `How to build a filter expression <https://www.ibm.com/support/knowledgecenter/SSGMCP_5.6.0/system-programming/cpsm/eyup1a0.html>`_.
Copy file name to clipboardExpand all lines: docs/source/modules/cmci_get.rst
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,9 +162,9 @@ resources
162
162
163
163
Filters can be nested. At most four nesting layers are allowed.
164
164
165
-
When supplying the ``attribute`` option, you must also supply a ``value`` for the filter. You can also override the default operator of ``=`` with the ``operator`` option.
165
+
When supplying the ``attribute`` option, you must also supply a ``value`` for the filter. You can also override the default operator of ``=`` with the ``operator`` option.
166
166
167
-
For examples, see :ref:`cmci_get <cmci_get_module>`
167
+
For examples, see "Examples" in :ref:`cmci_get <cmci_get_module>`.
168
168
169
169
170
170
|**required**: False
@@ -175,7 +175,7 @@ resources
175
175
and
176
176
A list of filter expressions to be combined with an ``and`` operation.
177
177
178
-
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
178
+
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
179
179
180
180
181
181
|**required**: False
@@ -195,20 +195,21 @@ resources
195
195
196
196
197
197
operator
198
-
These operators are accepted: ``<`` or ``LT`` (less than), ``<=`` or ``LE`` (less than or equal to), ``=`` or ``EQ`` (equal to), ``>`` or ``GT`` (greater than), ``>=`` or ``GE`` (greater than or equal to), ``==`` or ``IS`` (is), ``¬=``, ``!=``, or ``NE`` (not equal to). If not supplied when 'attribute' is used, ``EQ`` will be assumed.
198
+
These operators are accepted: ``<`` or ``LT`` (less than), ``<=`` or ``LE`` (less than or equal to), ``=`` or ``EQ`` (equal to), ``>`` or ``GT`` (greater than), ``>=`` or ``GE`` (greater than or equal to), ``==`` or ``IS`` (is), ``¬=``, ``!=``, or ``NE`` (not equal to). If not supplied when ``attribute`` is used, ``EQ`` is assumed.
199
199
200
200
201
201
202
202
|**required**: False
203
203
|**type**: str
204
+
|**default**: EQ
204
205
|**choices**: <, >, <=, >=, =, ==, !=, ¬=, EQ, GT, GE, LT, LE, NE, IS
205
206
206
207
207
208
208
209
or
209
210
A list of filter expressions to be combined with an ``or`` operation.
210
211
211
-
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
212
+
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
212
213
213
214
214
215
|**required**: False
@@ -231,17 +232,17 @@ resources
231
232
filter
232
233
A dictionary with attribute names as keys, and target values, to be used as criteria to filter the set of resources returned from CICSPlex SM.
233
234
234
-
Filters implicitly use the ``=`` operator
235
+
Filters implicitly use the ``=`` operator.
235
236
236
-
Filters for ``string`` type attributes can use the ``*`` and ``+`` wildcard operators
237
+
Filters for ``string`` type attributes can use the ``*`` and ``+`` wildcard operators.
237
238
238
-
``*`` is a wildcard representing an unknown number of characters, and must appear at the end of the value
239
+
``*`` is a wildcard representing an unknown number of characters, and must appear at the end of the value.
239
240
240
241
``+`` is a wildcard representing a single character, and can appear in any place in the value, potentially multiple times.
241
242
242
243
To use more complicated filter expressions, including a range of different filter operators, and the ability to compose filters with ``and`` and ``or`` operators, see the ``complex_filter`` parameter.
243
244
244
-
For examples, see :ref:`cmci_get <cmci_get_module>`
245
+
For examples, see "Examples" in :ref:`cmci_get <cmci_get_module>`.
245
246
246
247
For more details, see `How to build a filter expression <https://www.ibm.com/support/knowledgecenter/SSGMCP_5.6.0/system-programming/cpsm/eyup1a0.html>`_.
Copy file name to clipboardExpand all lines: docs/source/modules/cmci_update.rst
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -158,9 +158,9 @@ resources
158
158
159
159
Filters can be nested. At most four nesting layers are allowed.
160
160
161
-
When supplying the ``attribute`` option, you must also supply a ``value`` for the filter. You can also override the default operator of ``=`` with the ``operator`` option.
161
+
When supplying the ``attribute`` option, you must also supply a ``value`` for the filter. You can also override the default operator of ``=`` with the ``operator`` option.
162
162
163
-
For examples, see :ref:`cmci_get <cmci_get_module>`
163
+
For examples, see "Examples" in :ref:`cmci_get <cmci_get_module>`.
164
164
165
165
166
166
|**required**: False
@@ -171,7 +171,7 @@ resources
171
171
and
172
172
A list of filter expressions to be combined with an ``and`` operation.
173
173
174
-
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
174
+
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
175
175
176
176
177
177
|**required**: False
@@ -191,20 +191,21 @@ resources
191
191
192
192
193
193
operator
194
-
These operators are accepted: ``<`` or ``LT`` (less than), ``<=`` or ``LE`` (less than or equal to), ``=`` or ``EQ`` (equal to), ``>`` or ``GT`` (greater than), ``>=`` or ``GE`` (greater than or equal to), ``==`` or ``IS`` (is), ``¬=``, ``!=``, or ``NE`` (not equal to). If not supplied when 'attribute' is used, ``EQ`` will be assumed.
194
+
These operators are accepted: ``<`` or ``LT`` (less than), ``<=`` or ``LE`` (less than or equal to), ``=`` or ``EQ`` (equal to), ``>`` or ``GT`` (greater than), ``>=`` or ``GE`` (greater than or equal to), ``==`` or ``IS`` (is), ``¬=``, ``!=``, or ``NE`` (not equal to). If not supplied when ``attribute`` is used, ``EQ`` is assumed.
195
195
196
196
197
197
198
198
|**required**: False
199
199
|**type**: str
200
+
|**default**: EQ
200
201
|**choices**: <, >, <=, >=, =, ==, !=, ¬=, EQ, GT, GE, LT, LE, NE, IS
201
202
202
203
203
204
204
205
or
205
206
A list of filter expressions to be combined with an ``or`` operation.
206
207
207
-
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
208
+
Filter expressions are nested ``complex_filter`` elements. Each nested filter expression can be either an ``attribute``, ``and`` or ``or`` complex filter expression.
208
209
209
210
210
211
|**required**: False
@@ -227,17 +228,17 @@ resources
227
228
filter
228
229
A dictionary with attribute names as keys, and target values, to be used as criteria to filter the set of resources returned from CICSPlex SM.
229
230
230
-
Filters implicitly use the ``=`` operator
231
+
Filters implicitly use the ``=`` operator.
231
232
232
-
Filters for ``string`` type attributes can use the ``*`` and ``+`` wildcard operators
233
+
Filters for ``string`` type attributes can use the ``*`` and ``+`` wildcard operators.
233
234
234
-
``*`` is a wildcard representing an unknown number of characters, and must appear at the end of the value
235
+
``*`` is a wildcard representing an unknown number of characters, and must appear at the end of the value.
235
236
236
237
``+`` is a wildcard representing a single character, and can appear in any place in the value, potentially multiple times.
237
238
238
239
To use more complicated filter expressions, including a range of different filter operators, and the ability to compose filters with ``and`` and ``or`` operators, see the ``complex_filter`` parameter.
239
240
240
-
For examples, see :ref:`cmci_get <cmci_get_module>`
241
+
For examples, see "Examples" in :ref:`cmci_get <cmci_get_module>`.
241
242
242
243
For more details, see `How to build a filter expression <https://www.ibm.com/support/knowledgecenter/SSGMCP_5.6.0/system-programming/cpsm/eyup1a0.html>`_.
Copy file name to clipboardExpand all lines: docs/source/release_notes.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,13 +37,13 @@ This collection can manage CICS and CICSPlex® SM resources and definitions by c
37
37
* Sample playbooks are available at the `samples repository`_. Each playbook contains a README that explains what configurations must be made to run a sample playbook.
If you use the CICS collection in conjunction with other IBM z/OS collections, you won't be able to delegate all tasks to your localhost. In that case, your managed node must also follow the requirements of those collections, for example, `IBM z/OS core managed node requirements`_.
47
+
If you use the CICS collection in conjunction with other IBM z/OS collections,
48
+
your managed node must also follow the requirements of those collections, for example, `IBM z/OS core managed node requirements`_.
42
49
43
50
If you use the CICS collection alone but don't delegate the CICS tasks to your localhost, your managed node must also follow the `IBM z/OS core managed node requirements`_ except that IBM Z Open Automation Utilities (ZOAU) is not required.
0 commit comments