Skip to content

Commit

Permalink
[irods#7870] Improve documentation for atomic acls/metadata microserv…
Browse files Browse the repository at this point in the history
…ices.
  • Loading branch information
korydraughn committed Jul 12, 2024
1 parent ed0b1e0 commit 375e3a1
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
21 changes: 21 additions & 0 deletions plugins/microservices/src/atomic_apply_acl_operations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ auto plugin_factory() -> irods::ms_table_entry*
/// \p _json_input must have the following JSON structure:
/// \code{.js}
/// {
/// "admin_mode": boolean,
/// "logical_path": string,
/// "operations": [
/// {
Expand Down Expand Up @@ -126,6 +127,26 @@ auto plugin_factory() -> irods::ms_table_entry*
/// \retval 0 On success.
/// \retval non-zero On failure.
///
/// \b Example
/// \code{.py}
/// # The collection to apply the ACL operations to.
/// *lpath = '/tempZone/home/alice';
///
/// # The JSON string holding ACL operations to apply.
/// *json_input = '{"logical_path": "*lpath", "operations": [{"entity_name": "bob", "acl": "read"}]}';
///
/// # If the microservice fails, a JSON string containing details about what happened will be
/// # stored in this variable.
/// *json_output = ''
///
/// *ec = errorcode(msi_atomic_apply_acl_operations(*json_input, *json_output));
/// if (*ec < 0) {
/// # The operation failed.
/// # Inspect JSON output (using JSON microservices) to determine what happened.
/// writeLine('serverLog', 'JSON output = [*json_output]');
/// }
/// \endcode
///
/// \since 4.2.9
auto msi_atomic_apply_acl_operations(msParam_t* _json_input, msParam_t* _json_output, ruleExecInfo_t* _rei) -> int;
#endif // IRODS_FOR_DOXYGEN
Expand Down
23 changes: 23 additions & 0 deletions plugins/microservices/src/atomic_apply_metadata_operations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ auto plugin_factory() -> irods::ms_table_entry*
/// \p _json_input must have the following JSON structure:
/// \code{.js}
/// {
/// "admin_mode": boolean,
/// "entity_name": string,
/// "entity_type": string,
/// "operations": [
Expand Down Expand Up @@ -144,6 +145,28 @@ auto plugin_factory() -> irods::ms_table_entry*
/// \retval 0 On success.
/// \retval non-zero On failure.
///
/// \b Example
/// \code{.py}
/// # The JSON string holding the single metadata operation to apply to the resource.
/// # This will be used to construct the final form of the JSON input.
/// *op = '{"operation": "add", "attribute": "age", "value": "36"}';
///
/// # This is the complete form of the JSON string that will be passed to the microservice.
/// # Pay close attention to the construction of the "operations" property.
/// *json_input = '{"entity_name": "alice", "entity_type": "user", "operations": [*op]}';
///
/// # If the microservice fails, a JSON string containing details about what happened will be
/// # stored in this variable.
/// *json_output = ''
///
/// *ec = errorcode(msi_atomic_apply_metadata_operations(*json_input, *json_output));
/// if (*ec < 0) {
/// # The operation failed.
/// # Inspect JSON output (using JSON microservices) to determine what happened.
/// writeLine('serverLog', 'JSON output = [*json_output]');
/// }
/// \endcode
///
/// \since 4.2.8
auto msi_atomic_apply_metadata_operations(msParam_t* _json_input, msParam_t* _json_output, ruleExecInfo_t* _rei) -> int;
#endif // IRODS_FOR_DOXYGEN
Expand Down

0 comments on commit 375e3a1

Please sign in to comment.