Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docs for security overview export command #9309

Open
wants to merge 2 commits into
base: Mendix-11
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ These are the available [merging and diffing commands](/refguide/mx-command-line
| [diff](/refguide/mx-command-line-tool/merge/#diff) | Shows the diff of the *.mpr* files. |
| [dump-mpr](/refguide/mx-command-line-tool/dump-mpr/) | Create a JSON description of the model of a Mendix App |

### Security Overview Commands

These are the available [security overview commands](/refguide/mx-command-line-tool/security/):

| Command | Description |
| --- | --- |
| [export-security-overview](/refguide/mx-command-line-tool/security/#export-security-overview) | Exports the [Security Overview](/refguide/security-overview/) |

## Undocumented Options

The mx tool contains options that are not described in this document. These options are for internal Mendix usage and are not officially supported. This might change in the future, but these options are used at your own risk.
42 changes: 42 additions & 0 deletions content/en/docs/refguide/general/mx-command-line-tool/security.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
title: "Security Overview Commands"
url: /refguide/mx-command-line-tool/security/
weight: 50
description: "Describes the commands related to the Security Overview"
---

## Introduction

The commands in this group are related to the [Security Overview](/refguide/security-overview/).

## mx export-security-overview Command {#export-security-overview}

This command can be used to export the data in the Security Overview to either a JSON or xlsx file.

### Usage

Use the following command pattern: `mx export-security-overview [OPTIONS] [MPR-FILE]`

These are the `OPTIONS`:

| Option | Value | Result
|---------------------------|-------------------|----------
| `-t, --export-format` | `json` or `xlsx` | The format to export to
| `-e, --exclude-appstore` | *-* | When set, exclude marketplace modules
| `-o, --output-file` | file path | The path to the output file

### Examples

This is an example:

`mx export-security-overview -t json -t -o C:\MyApp\export.json C:\MyApp\MyApp.mpr`

### Return Codes

These are the return codes:

| Return Code | Description |
| --------------| ----------------------------- |
| 0 | Success |
| 200 | An internal error occurred |
| 400 | The MPR could not be loaded |
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ To export the **Security Overview**, click the **Export to Excel** button. This
4. Anonymous role: Specifies whether this user roles is an anonymous user role.
5. Administrator role: Specifies whether this user role is the administrator user role.

## CLI export

The security overview can be exported to a JSON or xlsx file with the `mx` command line tool. See the [export-security-overview](/refguide/mx-command-line-tool/security/#export-security-overview) command.

## Read More

* [User Roles](/refguide/user-roles/)
Expand Down