More CLI edits

This commit is contained in:
james.haytko
2023-11-13 12:37:42 -06:00
parent c16eb226cb
commit a78726ec89
17 changed files with 21 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
==Long==
# Cluster
Manage IdentityNow clusters.
Manage IdentityNow VA clusters.
## API Reference:
- https://developer.sailpoint.com/idn/api/beta/managed-clusters

View File

@@ -1,7 +1,7 @@
==Long==
# Get
Get a cluster configuration from IdentityNow.
Get a VA cluster's configuration from IdentityNow.
## API References:
- https://developer.sailpoint.com/idn/api/beta/get-managed-cluster

View File

@@ -1,7 +1,7 @@
==Long==
# List
List all clusters from IdentityNow.
List all VA clusters from IdentityNow.
## API References:
- https://developer.sailpoint.com/idn/api/beta/get-managed-clusters

View File

@@ -1,9 +1,11 @@
==Long==
# Set
Set a VA cluster's log configuration.
Set a VA cluster's log configuration. You can update a cluster's root logging level, the duration of its logging, and the connector logging class.
A list of connectors (can be found here)[https://community.sailpoint.com/t5/IdentityNow-Articles/Enabling-Connector-Logging-in-IdentityNow/ta-p/188107].
This example command sets the "TRACE" root logging level, a duration of 30 minutes, and a connector logging class of "sailpoint.connector.ADLDAPConnector=TRACE".
Refer to your respective [connector guide](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) to see which connector logging classes are available.
====
==Example==

View File

@@ -1,7 +1,7 @@
==Long==
# Report
Generate a report from IdentityNow
Generate a report from IdentityNow.
## API References:
- https://developer.sailpoint.com/idn/api/v3/search
@@ -9,12 +9,12 @@ Generate a report from IdentityNow
====
==Example==
## Selecting a report
## Select a report
```bash
sail report
```
## Running a specific report
## Run a specific report
```bash
sail report {report-name}
```

View File

@@ -1,7 +1,7 @@
==Long==
# Collect
Collect files from a remote virtual appliance.
Collect files from a remote VA.
Files are collected over SFTP. Passwords are provided via the --password (-p) flag or they will be prompted for at runtime. Server addresses can be DNS names or IP addresses, and they're provided as arguments, separated by spaces.

View File

@@ -2,7 +2,7 @@
# Get
Get a virtual appliance configuration from IdentityNow.
Get a VA configuration from IdentityNow.
====

View File

@@ -2,7 +2,7 @@
# List
List the clusters and virtual appliances in the configured IdentityNow tenant.
List the VAs and VA clusters in the configured IdentityNow tenant.
====

View File

@@ -1,7 +1,7 @@
==Long==
# Parse
Parse log files from SailPoint virtual appliances.
Parse log files from SailPoint VAs.
====
==Example==

View File

@@ -1,7 +1,7 @@
==Long==
# Troubleshoot
Perform troubleshooting operations against a virtual appliance.
Perform troubleshooting operations against a VA.
====

View File

@@ -1,7 +1,7 @@
==Long==
# Update
Update a SailPoint virtual appliance.
Update a SailPoint VA.
====
==Example==

View File

@@ -1,7 +1,7 @@
==Long==
# VA
Manage virtual appliances in IdentityNow.
Manage VAs in IdentityNow.
====

View File

View File

@@ -1,6 +1,6 @@
==Long==
# Delete
Delete a workflow in IdentityNow.
Delete a workflow in IdentityNow. You can delete multiple workflows at once, and you can delete a set of workflows specified in a file.
## API References:
- https://developer.sailpoint.com/idn/api/beta/delete-workflow

View File

@@ -1,6 +1,6 @@
==Long==
# Download
Downloads all workflows from IdentityNow.
Downloads all workflows from IdentityNow. By default, the downloaded workflows are located in the folder, "workflows". You can specify a folder to download the workflows to, as shown in the example.
## API References:
- https://developer.sailpoint.com/idn/api/beta/list-workflows

View File

@@ -2,7 +2,7 @@
# Get
Get workflows from IdentityNow.
Get a workflow from IdentityNow by ID.
## API References
- https://developer.sailpoint.com/idn/api/beta/get-workflow

View File

@@ -11,6 +11,6 @@ List workflows from IdentityNow.
==Example==
```bash
sail Workflow list
sail workflow list
```
====