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== ==Long==
# Cluster # Cluster
Manage IdentityNow clusters. Manage IdentityNow VA clusters.
## API Reference: ## API Reference:
- https://developer.sailpoint.com/idn/api/beta/managed-clusters - https://developer.sailpoint.com/idn/api/beta/managed-clusters

View File

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

View File

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

View File

@@ -1,9 +1,11 @@
==Long== ==Long==
# Set # 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== ==Example==

View File

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

View File

@@ -1,7 +1,7 @@
==Long== ==Long==
# Collect # 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. 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
Get a virtual appliance configuration from IdentityNow. Get a VA configuration from IdentityNow.
==== ====

View File

@@ -2,7 +2,7 @@
# List # 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== ==Long==
# Parse # Parse
Parse log files from SailPoint virtual appliances. Parse log files from SailPoint VAs.
==== ====
==Example== ==Example==

View File

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

View File

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

View File

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

View File

View File

@@ -1,6 +1,6 @@
==Long== ==Long==
# Delete # 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: ## API References:
- https://developer.sailpoint.com/idn/api/beta/delete-workflow - https://developer.sailpoint.com/idn/api/beta/delete-workflow

View File

@@ -1,6 +1,6 @@
==Long== ==Long==
# Download # 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: ## API References:
- https://developer.sailpoint.com/idn/api/beta/list-workflows - https://developer.sailpoint.com/idn/api/beta/list-workflows

View File

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

View File

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