Skip to content

Commit

Permalink
Deploy to GitHub pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Dec 5, 2023
0 parents commit 483e33f
Show file tree
Hide file tree
Showing 5,139 changed files with 323,644 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Empty file added .nojekyll
Empty file.
20 changes: 20 additions & 0 deletions 404.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
developer.sailpoint.com
20 changes: 20 additions & 0 deletions ambassador-program/index.html

Large diffs are not rendered by default.

Binary file added ambassador/Ambassador-Program-Banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ambassador/AmbassadorBadge-Pink-Hex.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ambassador/AmbassadorBadge-QuadGrad-Squircle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ambassador/ambassador_banner_template.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 48 additions & 0 deletions api-specs/arm/get_tags.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
// look for and remove all \r\n instances
// also look for and remove all ':' instances\
// also find any missing "summary" tags on apis -- public whatif, arm2 supports dashboard

// look for any missing properties: "properties": {}
// look for any missing schema objects: "in": "query", swagger-provisioning/export,

const fs = require('fs');

const currentTags = []

const iterate = (obj) => {

for (var key of Object.keys(obj)) {
if (key === 'tags') {
if(currentTags.includes(obj[key][0]) === false && typeof obj[key][0] === 'string') {
currentTags.push(obj[key][0])
console.log(`key: ${key}, value: ${obj[key]}`)
}
}
if (typeof obj[key] === 'object' && obj[key] !== null) {
iterate(obj[key])
}
}

}

let rawdata = fs.readFileSync('static/arm-api/swagger-utilization-tracking.json');
let student = JSON.parse(rawdata);

iterate(student)

let tags = {"tags": []}

for (let tag of currentTags) {
tags["tags"].push({"name": tag})
}

console.log(JSON.stringify(tags))

// "tags": [
// {
// "name": "Agent"
// },
// {
// "name": "AgentInstruction"
// }
// ],
Loading

0 comments on commit 483e33f

Please sign in to comment.