with CyberArk Certificate Manager and File Store?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cyberark_certificate_manager: {
type: "app",
app: "cyberark_certificate_manager",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.cyberark_certificate_manager.$auth.api_url}/v1/users`,
headers: {
"accept": `application/json`,
"tppl-api-key": `${this.cyberark_certificate_manager.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
// list all contents of the root File Stores directory in this project
const dirs = $.files.dir();
let files = [];
for await(const dir of dirs) {
// if this is a file, let's open it
if(dir.isFile()) {
files.push(await $.files.open(dir.path))
}
}
return files
},
})