added CLI to sidebar and navbar

This commit is contained in:
Jordan Violet
2023-02-28 13:36:27 -05:00
parent 072035f310
commit b35c626907
6 changed files with 17 additions and 6 deletions

View File

@@ -16,6 +16,8 @@ module.exports = {
{to: '/idn/api/beta', label: 'Beta APIs', className: 'indent'},
{to: '#', label: 'Documentation', className: 'navbar__section'},
{to: 'idn/docs', label: 'IDN Documentation', className: 'indent'},
{to: '#', label: 'Tools', className: 'navbar__section'},
{to: 'idn/tools/cli', label: 'CLI', className: 'indent'},
{to: '#', label: 'External Links', className: 'navbar__section'},
{
href: 'https://documentation.sailpoint.com',

View File

@@ -60,5 +60,11 @@ const sidebars = {
dirName: 'docs',
},
],
sdkSidebar: [
{
type: 'autogenerated',
dirName: 'tools',
},
],
};
module.exports = sidebars;

View File

@@ -0,0 +1,3 @@
{
"collapsible": false
}

View File

@@ -7,7 +7,7 @@ sidebar_position: 1
sidebar_class_name: cli
keywords: ['cli']
description: Learn how to use the SailPoint CLI in this guide.
slug: /products/tools/cli
slug: /tools/cli
tags: ['CLI']
---
@@ -61,7 +61,7 @@ Then make sure you can run the `sail` command.
sail
```
<img src="./assets/img/vhs/MacOSAndLinux.gif" alt="linux make gif">
[Linux Make Gif](./assets/img/vhs/MacOSAndLinux.gif)
To manually install the CLI on **Windows**, open PowerShell as an administrator, navigate to the project directory, and run
this command:
@@ -108,7 +108,7 @@ If you are using a **PAT**, run this command:
sail configure pat
```
<img src="./assets/img/vhs/configure/configure-pat.gif" alt="configure PAT">
[configure PAT](./assets/img/vhs/configure/configure-pat.gif)
If you are using an **OAuth client**, run this command:
@@ -116,7 +116,7 @@ If you are using an **OAuth client**, run this command:
sail configure oauth
```
<img src="./assets/img/vhs/configure/configure-oauth.gif" alt="configure OAuth">
[configure OAuth](./assets/img/vhs/configure/configure-oauth.gif)
### Manual configuration

View File

@@ -23,7 +23,7 @@ sail transform list
This will produce a table of the available transforms.
<img src="./../../assets/img/vhs/transform/transform-list.gif" alt="transform list">
[transform list](./../../assets/img/vhs/transform/transform-list.gif)
## Download transforms
@@ -33,7 +33,7 @@ Run the following command to download all of the transforms in your tenant and s
sail transform download -d transform_files
```
<img src="./../../assets/img/vhs/transform/transform-download.gif" alt="transform download">
[transform download](./../../assets/img/vhs/transform/transform-download.gif)
This command will overwrite any existing files with the same name, so take care when running this in a directory that has modified transforms that have not yet been saved.