mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
127 lines
3.7 KiB
JavaScript
127 lines
3.7 KiB
JavaScript
// const sidebars = {
|
|
// openApiSidebar: [
|
|
// {
|
|
// type: 'category',
|
|
// label: 'API Specifications',
|
|
// collapsible: true,
|
|
// items: [
|
|
// {
|
|
// type: 'doc',
|
|
// id: 'api/getting-started',
|
|
// },
|
|
// {
|
|
// type: 'doc',
|
|
// id: 'api/authentication',
|
|
// },
|
|
// {
|
|
// type: 'doc',
|
|
// id: 'api/authorization',
|
|
// },
|
|
// {
|
|
// type: 'doc',
|
|
// id: 'api/service-accounts',
|
|
// },
|
|
// {
|
|
// type: 'doc',
|
|
// id: 'api/standard-collection-parameters',
|
|
// },
|
|
// {
|
|
// type: 'doc',
|
|
// id: 'api/rate-limit',
|
|
// },
|
|
// {
|
|
// type: 'doc',
|
|
// id: 'api/postman-collections',
|
|
// },
|
|
// {
|
|
// type: 'doc',
|
|
// id: 'api/patch-requests'
|
|
// },
|
|
// {
|
|
// type: 'category',
|
|
// label: 'V3 APIs',
|
|
// link: {
|
|
// type: 'generated-index',
|
|
// title: 'V3 APIs',
|
|
// description:
|
|
// 'Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.',
|
|
// slug: '/api/v3',
|
|
// },
|
|
// // @ts-ignore
|
|
// items: require('./api/v3/sidebar.js'),
|
|
// },
|
|
// {
|
|
// type: 'category',
|
|
// label: 'Beta APIs',
|
|
// link: {
|
|
// type: 'generated-index',
|
|
// title: 'Beta APIs',
|
|
// description:
|
|
// 'Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.',
|
|
// slug: '/api/beta',
|
|
// },
|
|
// // @ts-ignore
|
|
// items: require('./api/beta/sidebar.js'),
|
|
// },
|
|
// ],
|
|
// },
|
|
// {
|
|
// type: 'category',
|
|
// label: 'Extensibility',
|
|
// items: [
|
|
// {
|
|
// type: 'autogenerated',
|
|
// dirName: 'extensibility',
|
|
// }
|
|
// ]
|
|
// },
|
|
// {
|
|
// type: 'category',
|
|
// label: 'Tools',
|
|
// items: [
|
|
// {
|
|
// type: 'autogenerated',
|
|
// dirName: 'tools',
|
|
// }
|
|
// ]
|
|
// },
|
|
// {
|
|
// type: 'category',
|
|
// label: 'Reporting',
|
|
// items: [
|
|
// {
|
|
// type: 'autogenerated',
|
|
// dirName: 'reporting',
|
|
// }
|
|
// ]
|
|
// },
|
|
// ]
|
|
// };
|
|
// module.exports = sidebars;
|
|
|
|
const sidebars = {
|
|
iiqOpenApiSidebar: [
|
|
{
|
|
type: 'category',
|
|
label: 'IdentityIQ API',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'IdentityIQ API',
|
|
description:
|
|
"These are the SCIM APIs for SailPoint's on-premise service, IdentityIQ. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.",
|
|
slug: '/api/iiq',
|
|
},
|
|
// @ts-ignore
|
|
items: require('./api/sidebar.js'),
|
|
},
|
|
],
|
|
idnDocs: [
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: 'docs',
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|