Update Using pepcli authored by Kai van Lopik's avatar Kai van Lopik
...@@ -39,6 +39,7 @@ pepcli ama query --column-group ShortPseudonyms # The completed command line ...@@ -39,6 +39,7 @@ pepcli ama query --column-group ShortPseudonyms # The completed command line
The commands supported by `pepcli` are listed below. Follow hyperlinks to read more detailed documentation on each of the commands. The commands supported by `pepcli` are listed below. Follow hyperlinks to read more detailed documentation on each of the commands.
- [`ama`](#ama) performs administrative tasks related to the Access Manager service.
- [`get`](#get) retrieves data from a specific cell. - [`get`](#get) retrieves data from a specific cell.
- [`list`](#list) lists data available in PEP. - [`list`](#list) lists data available in PEP.
- [`pull`](#pull) stores a data set in files on your local machine. - [`pull`](#pull) stores a data set in files on your local machine.
...@@ -60,6 +61,10 @@ Data storage and retrieval: ...@@ -60,6 +61,10 @@ Data storage and retrieval:
- [`pull`](#pull) stores a data set in files on your local machine. - [`pull`](#pull) stores a data set in files on your local machine.
- [`store`](#store) stores data in a specific cell. - [`store`](#store) stores data in a specific cell.
Administrative tasks:
- [`ama`](#ama) performs administrative tasks related to the Access Manager service.
## General flags ## General flags
Most of `pepcli`'s commands will connect to one or more of the PEP servers, and most server requests will require the user to be [enrolled](Access-control#enrollment). The utility's general flags can be used to indicate how to connect and enroll: Most of `pepcli`'s commands will connect to one or more of the PEP servers, and most server requests will require the user to be [enrolled](Access-control#enrollment). The utility's general flags can be used to indicate how to connect and enroll:
...@@ -92,11 +97,11 @@ pepcli ama query ...@@ -92,11 +97,11 @@ pepcli ama query
This subcommand's output lists This subcommand's output lists
- The `Columns` that have been defined by data administrator (using `pepcli ama column`). - The `Columns` that have been defined by data administrator.
- The `ColumnGroups` that have been defined by data administrator (using `pepcli ama columnGroup create`), and the columns included in each column group (using `pepcli ama column addTo`). - The `ColumnGroups` that have been defined by data administrator, and the columns included in each column group.
- The `ColumnGroupAccessRules` that have been defined by access administrator (using `pepcli ama cgar create`), i.e. which access groups have what type(s) of access to which column groups - The `ColumnGroupAccessRules` that have been defined by access administrator, i.e. which access groups have what type(s) of access to which column groups
- The (participant) `Groups` that have been defined by data administrator (using `pepcli ama group create`), and the participants included in each group (using `pepcli ama group addTo`). - The (participant) `Groups` that have been defined by data administrator, and the participants included in each group.
- The (participant) `GroupAccessRules` that have been defined by access administrator (using `pepcli ama pgar create`). - The (participant) `GroupAccessRules` that have been defined by access administrator.
## `get` ## `get`
... ...
......