Skip to content

Commit 92fdf18

Browse files
authored
[Documentation] [zos_copy] Add large option in dest_data_set type (#1938)
* Add LARGE type as option for the dest data set * Update module RST file * Add changelog fragment
1 parent 4a7a832 commit 92fdf18

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
minor_changes:
2+
- zos_copy - Adds ``large`` as a choice for ``type`` in ``dest_data_set``.
3+
(https://github.com/ansible-collections/ibm_zos_core/pull/1938)

docs/source/modules/zos_copy.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ dest_data_set
357357

358358
| **required**: True
359359
| **type**: str
360-
| **choices**: ksds, esds, rrds, lds, seq, pds, pdse, member, basic, library, gdg
360+
| **choices**: ksds, esds, rrds, lds, seq, pds, pdse, member, basic, large, library, gdg
361361
362362

363363
space_primary

plugins/modules/zos_copy.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,7 @@
370370
- pdse
371371
- member
372372
- basic
373+
- large
373374
- library
374375
- gdg
375376
space_primary:
@@ -3887,7 +3888,7 @@ def main():
38873888
type='str',
38883889
choices=['basic', 'ksds', 'esds', 'rrds',
38893890
'lds', 'seq', 'pds', 'pdse', 'member',
3890-
'library', 'gdg'],
3891+
'large', 'library', 'gdg'],
38913892
required=True,
38923893
),
38933894
space_primary=dict(

0 commit comments

Comments
 (0)