feat: Add integration and integration model support#16
Closed
nathaniel-itential wants to merge 1 commit into
Closed
feat: Add integration and integration model support#16nathaniel-itential wants to merge 1 commit into
nathaniel-itential wants to merge 1 commit into
Conversation
nathaniel-itential
force-pushed
the
devel
branch
from
June 16, 2026 17:21
f93b21d to
5723ca1
Compare
…d tests Adds services and resources for managing integration models (OpenAPI specs) and integration instances on the Itential Platform. Services are thin HTTP wrappers; resources provide higher-level lifecycle operations including delete-before-replace for models and overwrite support for instances. Existence checks are enforced at the service layer to protect against duplicates regardless of how the caller creates resources. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
nathaniel-itential
force-pushed
the
devel
branch
from
June 16, 2026 17:23
5723ca1 to
db622e0
Compare
Author
|
closing this for now, will reopen when agent project support is completed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add 2 services and 2 resources, 1 each for integration models and integrations. The services include the general CRUD api endpoints, with the resources containing a find by name and a delete by name method.
There is a check for duplicate names in both the integration and integration model creation service to align with the functionality of the platform UI.
There is also a check for size (<15 MB) for the integration model import to align with the UI.
The code matches the architecture as defined in the other services/resources and the architecture.md file. The current use case for this is implementation in the asset pipeline, where async platform is used to import assets but could not import integrations due to no functionality being available for it.