mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 12:27:47 +00:00
1.7 KiB
1.7 KiB
id, title, pagination_label, sidebar_label, sidebar_position, sidebar_class_name, keywords, description, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_position | sidebar_class_name | keywords | description | slug | tags | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| connectivity-customizers-uploading | Build and Upload into Identity Security Cloud | Build and Upload | Build and Upload | 5 | saasConnectivity |
|
Build and upload connectivity customizers. | /connectivity/saas-connectivity/customizers/upload |
|
Building and uploading to Identity Security Cloud
Initial requirements
Before you can upload a connector customizer, you must issue the create command to create an empty connector customizer:
sail conn customizers create my-connector-customizer
This will return the customizer ID.
+--------------------------------------+-------------------------+---------+
| ID | NAME | VERSION |
+--------------------------------------+-------------------------+---------+
| 7b968fab-0f40-49f0-b13b-8bf529fc0b82 | my-connector-customizer | |
+--------------------------------------+-------------------------+---------+
Build the customizer
Building a connector customizer is similar to building a SaaS Connector. Execute this command:
npm run pack-zip
After the build is complete, you will see a message like this:
> my-connector-customizer@0.1.0 pack-zip
> spcx package
Connector zip file created under dist folder: my-connector-customizer-0.1.0.zip
Upload to Identity Security Cloud
To upload the customizer to Identity Security Cloud, use the upload command:
sail conn customizers upload -c 7b968fab-0f40-49f0-b13b-8bf529fc0b82 -f .\dist\my-connector-customizer-0.1.0.zip
Now the customizer is ready to be used!