Skip to content

Commit

Permalink
Automated commit to update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ddimatos committed Jun 12, 2024
1 parent cc9dc10 commit a3d094b
Show file tree
Hide file tree
Showing 73 changed files with 1,903 additions and 104 deletions.
24 changes: 22 additions & 2 deletions _sources/ibm_zos_core/docs/source/modules/zos_fetch.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ zos_fetch -- Fetch data from z/OS

Synopsis
--------
- This module fetches a UNIX System Services (USS) file, PS (sequential data set), PDS, PDSE, member of a PDS or PDSE, or KSDS (VSAM data set) from a remote z/OS system.
- This module fetches a UNIX System Services (USS) file, PS (sequential data set), PDS, PDSE, member of a PDS or PDSE, generation data set (GDS), generation data group (GDG), or KSDS (VSAM data set) from a remote z/OS system.
- When fetching a sequential data set, the destination file name will be the same as the data set name.
- When fetching a PDS or PDSE, the destination will be a directory with the same name as the PDS or PDSE.
- When fetching a PDS/PDSE member, destination will be a file.
- Files that already exist at \ :literal:`dest`\ will be overwritten if they are different than \ :literal:`src`\ .
- When fetching a GDS, the relative name will be resolved to its absolute one.
- When fetching a generation data group, the destination will be a directory with the same name as the GDG.



Expand All @@ -31,7 +33,7 @@ Parameters


src
Name of a UNIX System Services (USS) file, PS (sequential data set), PDS, PDSE, member of a PDS, PDSE or KSDS (VSAM data set).
Name of a UNIX System Services (USS) file, PS (sequential data set), PDS, PDSE, member of a PDS, PDSE, GDS, GDG or KSDS (VSAM data set).

USS file paths should be absolute paths.

Expand Down Expand Up @@ -187,6 +189,24 @@ Examples
to: ISO8859-1
flat: true

- name: Fetch the current generation data set from a GDG
zos_fetch:
src: USERHLQ.DATA.SET(0)
dest: /tmp/
flat: true

- name: Fetch a previous generation data set from a GDG
zos_fetch:
src: USERHLQ.DATA.SET(-3)
dest: /tmp/
flat: true

- name: Fetch a generation data group
zos_fetch:
src: USERHLQ.TEST.GDG
dest: /tmp/
flat: true




Expand Down
43 changes: 43 additions & 0 deletions _sources/ibm_zosmf/docs/source/release_notes.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,43 @@
Releases
========

Version 1.5.0
=============

Notes
-----

* Added new roles for z/OSMF Software Management
* Updated the z/OSMF Software Management roles from a previous release to support UUID

* New roles

* `zmf_swmgmt_csi_query`_
* `zmf_swmgmt_system_uuid`_

Availability
------------

* `Automation Hub`_
* `Galaxy`_
* `GitHub`_

Version 1.4.2
=============

Notes
-----

* The README has been updated with a new template.
* Fixed role `zmf_workflow_complete` which previously failed to return final_result.

Availability
------------

* `Automation Hub`_
* `Galaxy`_
* `GitHub`_

Version 1.4.1
=============

Expand Down Expand Up @@ -265,6 +302,12 @@ Reference
.. _zmf_zmsc_run_management_service:
roles/zmf_zmsc_run_management_service.html

.. _zmf_swmgmt_csi_query:
roles/zmf_swmgmt_csi_query.html

.. _zmf_swmgmt_system_uuid:
roles/zmf_swmgmt_system_uuid.html

.. _Automation Hub:
https://www.ansible.com/products/automation-hub

Expand Down
Loading

0 comments on commit a3d094b

Please sign in to comment.