{"id":18374623,"url":"https://github.com/jupiterone/graph-cisco-secure-endpoint","last_synced_at":"2025-04-11T02:46:40.853Z","repository":{"id":37854275,"uuid":"263981503","full_name":"JupiterOne/graph-cisco-secure-endpoint","owner":"JupiterOne","description":"A graph conversion tool for https://www.cisco.com/c/en/us/products/security/amp-for-endpoints/","archived":false,"fork":false,"pushed_at":"2024-01-02T19:12:35.000Z","size":506,"stargazers_count":0,"open_issues_count":1,"forks_count":2,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-02-15T22:13:23.641Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JupiterOne.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-05-14T17:30:12.000Z","updated_at":"2022-04-19T17:32:18.000Z","dependencies_parsed_at":"2023-01-28T23:30:19.277Z","dependency_job_id":"10ecc74f-e705-40a1-b526-c5463a2fdded","html_url":"https://github.com/JupiterOne/graph-cisco-secure-endpoint","commit_stats":null,"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JupiterOne%2Fgraph-cisco-secure-endpoint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JupiterOne%2Fgraph-cisco-secure-endpoint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JupiterOne%2Fgraph-cisco-secure-endpoint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JupiterOne%2Fgraph-cisco-secure-endpoint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JupiterOne","download_url":"https://codeload.github.com/JupiterOne/graph-cisco-secure-endpoint/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248332118,"owners_count":21086032,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T00:15:24.444Z","updated_at":"2025-04-11T02:46:40.814Z","avatar_url":"https://github.com/JupiterOne.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# graph-cisco-secure-endpoint\n\n## Development Environment\n\n### Prerequisites\n\nYou must have Node.JS installed to run this project. If you don't already have\nit installed, you can can download the installer\n[here](https://nodejs.org/en/download/). You can alternatively install Node.JS\nusing a version manager like [fnm](https://github.com/Schniz/fnm) or\n[nvm](https://github.com/nvm-sh/nvm).\n\n### Setup\n\n#### Installing dependencies\n\nFrom the root of this project, run `npm install` to install dependencies. If you\nhave `yarn` installed, you can install dependencies by running `yarn`.\n\n#### Loading credentials\n\nCreate a `.env` file at the root of this project and add environment variables\nto match what is in `src/instanceConfigFields.json`. The `.env` file is ignored\nby git, so you won't have to worry about accidentally pushing credentials.\n\nGiven this example configuration:\n\n```json\n{\n  \"apiEndpoint\": {\n    \"type\": \"string\"\n  },\n  \"apiClientId\": {\n    \"type\": \"string\"\n  },\n  \"apiKey\": {\n    \"type\": \"string\",\n    \"mask\": true\n  }\n}\n```\n\nYou would provide a `.env` file like this:\n\n```bash\nAPI_ENDPOINT=\u003cendpoint_hostname\u003e\nAPI_CLIENT_ID=\u003cclient-id\u003e\nAPI_KEY=\u003csecret\u003e\n```\n\nValid API Endpoints for Cisco Secure Endpoint include:\n\n- api.amp.cisco.com\n- api.apjc.amp.cisco.com\n- api.eu.amp.cisco.com\n\nThe snake cased environment variables will automatically be converted and\napplied to the camel cased configuration field. So for example, `CLIENT_ID` will\napply to the `clientId` config field, `CLIENT_SECRET` will apply to\n`clientSecret`, and `MY_SUPER_SECRET_CONFIGURATION_VALUE` will apply to a\n`mySuperSecretConfigurationValue` configuration field.\n\n## Running the integration\n\nTo start collecting data, run `yarn start` from the root of the project. This\nwill load in your configuration and execute the steps stored in `src/steps`.\n\n## Project structure\n\nThis is the expected project structure for running integrations.\n\n```\nsrc/\n  /instanceConfigFields.json\n  /validateInvocation.ts\n  /getStepStartStates.ts\n  steps/\n    exampleStep.ts\n    // add additional steps here\n```\n\nEach of the files listed above contribute to creating an\n[integration configuration](https://github.com/JupiterOne/integration-sdk/blob/master/docs/development.md#the-integration-framework).\n\nAdditional files can be placed under `src` and referenced from each of the\nintegration files.\n\nThe template project hosted\n[here](https://github.com/JupiterOne/integration-sdk/tree/master/template)\nprovides a simple example of how an integration can be setup.\n\n## Development Docs\n\nPlease reference the `@jupiterone/integration-sdk`\n[development documentation](https://github.com/JupiterOne/integration-sdk/blob/master/docs/development.md)\nfor more information on how to build integrations.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjupiterone%2Fgraph-cisco-secure-endpoint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjupiterone%2Fgraph-cisco-secure-endpoint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjupiterone%2Fgraph-cisco-secure-endpoint/lists"}