added newer arm apis

This commit is contained in:
philip-ellis-sp
2022-11-16 16:10:00 -05:00
parent c2ac30c902
commit b3cf49a356
15 changed files with 72390 additions and 8221 deletions

View File

@@ -67,7 +67,95 @@ const config = {
defaultMode: "light",
respectPrefersColorScheme: true,
},
navbar: navbar,
navbar:
{
title: "",
logo: {
alt: "SailPoint Developer Community",
src: "img/SailPoint-Developer-Community-Lockup.png",
srcDark: "img/SailPoint-Developer-Community-Inverse-Lockup.png",
},
items: [
{
type: "dropdown",
label: "IdentityNow",
position: "left",
items: [
{ to: "#", label: "API Specifications", className: "navbar__section" },
{ to: "/idn/api/v3", label: "V3 APIs", className: "indent" },
{ to: "/idn/api/beta", label: "Beta APIs", className: "indent" },
{ to: "/arm/api", label: "ARM APIs", className: "indent" },
{ to: "#", label: "Documentation", className: "navbar__section" },
{ to: "idn/docs", label: "IDN Documentation", className: "indent" },
{ to: "#", label: "External Links", className: "navbar__section" },
{
href: "https://documentation.sailpoint.com",
label: "Product Documentation",
className: "indent",
},
{
href: "https://university.sailpoint.com/Saba/Web_spf/NA10P1PRD075/guest/categorydetail/categ000000000003041/true/xxemptyxx/",
label: "IdentityNow Certifications",
className: "indent",
},
],
},
{
type: "dropdown",
label: "IdentityIQ",
position: "left",
items: [
{ to: "#", label: "API Specifications", className: "navbar__section" },
{ to: "/iiq/api", label: "IIQ APIs", className: "indent" },
{ to: "#", label: "External Links", className: "navbar__section" },
{
href: "https://documentation.sailpoint.com",
label: "Product Documentation",
className: "indent",
},
{
href: "https://university.sailpoint.com/Saba/Web_spf/NA10P1PRD075/guest/categorydetail/categ000000000003042/true/xxemptyxx/",
label: "IdentityIQ Certifications",
className: "indent",
},
],
},
{
position: "left",
label: "Blog",
to: "https://medium.com/sailpointengineering",
},
{
position: "left",
label: "Ideas",
to: "https://developer-sailpoint.ideas.aha.io/",
},
{
position: "left",
label: "Discuss",
to: "https://developer.sailpoint.com/discuss",
},
{
type: "dropdown",
label: "Support",
position: "right",
items: [
{
label: "Submit Support Ticket",
href: "https://support.sailpoint.com/hc/en-us/requests/new?ticket_form_id=360000629992",
},
{ label: "Compass", href: "https://community.sailpoint.com" },
{ label: "Platform Status", href: "https://status.sailpoint.com/" },
],
},
{
position: "right",
to: "https://github.com/sailpoint-oss",
className: "header-github-link",
"aria-label": "SailPoint Open-source GitHub",
},
],
},
footer: footer,
prism: {
theme: lightCodeTheme,
@@ -76,7 +164,122 @@ const config = {
},
}),
plugins: plugins,
plugins:
[
[
"@docusaurus/plugin-content-docs",
{
id: "idn",
path: "products/idn",
routeBasePath: "idn",
editUrl:
"https://github.com/sailpoint-oss/developer-community-site/edit/main/",
showLastUpdateAuthor: true,
showLastUpdateTime: true,
sidebarPath: require.resolve("./products/idn/sidebar.js"),
docItemComponent: "@theme/ApiItem",
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "arm",
path: "products/arm",
routeBasePath: "arm",
editUrl:
"https://github.com/sailpoint-oss/developer-community-site/edit/main/",
showLastUpdateAuthor: true,
showLastUpdateTime: true,
sidebarPath: require.resolve("./products/arm/sidebar.js"),
docItemComponent: "@theme/ApiItem",
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "iiq",
path: "products/iiq",
routeBasePath: "iiq",
editUrl:
"https://github.com/sailpoint-oss/developer-community-site/edit/main/",
showLastUpdateAuthor: true,
showLastUpdateTime: true,
sidebarPath: require.resolve("./products/iiq/sidebar.js"),
docItemComponent: "@theme/ApiItem",
},
],
[
"@docusaurus/plugin-google-gtag",
{
trackingID: "GTM-TSD78J",
anonymizeIP: false,
},
],
[
"docusaurus-plugin-openapi-docs",
{
id: "idn-api",
docsPluginId: "idn",
config: {
idn_v3: {
specPath: "static/api-specs/idn/sailpoint-api.v3.yaml",
outputDir: "products/idn/api/v3",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
template: "api.mustache",
},
idn_beta: {
specPath: "static/api-specs/idn/sailpoint-api.beta.yaml",
outputDir: "products/idn/api/beta",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
template: "api.mustache",
},
},
},
],
[
"docusaurus-plugin-openapi-docs",
{
id: "iiq-api",
docsPluginId: "iiq",
config: {
iiq: {
specPath: "static/api-specs/iiq/swagger.json",
outputDir: "products/iiq/api",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
template: "api.mustache",
},
},
},
],
[
"docusaurus-plugin-openapi-docs",
{
id: "arm-api",
docsPluginId: "arm",
config: {
arm_agent_management: {
specPath: "static/api-specs/arm/swagger-agent-management.json",
outputDir: "products/arm/api",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
template: "api.mustache",
}
},
},
],
],
themes: ["docusaurus-theme-openapi-docs"],
};