PARTCON-28: Add INFORMATICA_POWERCENTER connector type#979
Merged
Aryamanz29 merged 1 commit intoJul 21, 2026
Merged
Conversation
Contributor
Author
|
CI triage: unit tests/QA are green on all Python versions (3.9-3.13), import-perf and trivy pass. The remaining failures look environmental rather than related to this one-line enum add: the claude check fails in its own setup step (OpenConnect to vpn2.atlan.app returns HTTP 512, twice, and the repo's scheduled scans are failing the same way today), and the integration-test failures are live-tenant state assertions (e.g. admin_test group_count 3 != 2) that an enum entry can't influence. |
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.
✨ Description
Adds
INFORMATICA_POWERCENTER = ("informatica-powercenter", AtlanConnectionCategory.ELT)toAtlanConnectorType, next to the existingIICSentry.The Informatica PowerCenter connector app creates assets under connection qualified names of the form
default/informatica-powercenter/<epoch>. atlan-publish-app derives thecategoryattribute for partial Connections from this enum (PARTIAL_CONNECTION_CATEGORY_BY_CONNECTORin its constants), so while the slug is missing here those connections getcategory = "custom"and are skipped by category-based UI surfaces. ELT matches the DBT/Fivetran/Matillion/IICS precedent. The frontend registration for the same slug is already merged (atlan-frontend #30540).Jira link: https://linear.app/atlan-epd/issue/PARTCON-28/fix-informatica-icon-rendering-for-pc-process-assets
🧩 Type of change
✅ How has this been tested?
AtlanConnectorType.INFORMATICA_POWERCENTER.value→informatica-powercenter,.category.value→eltAtlanConnectorType("informatica-powercenter")resolves to the new memberpyatlan_v9picks it up via itsfrom pyatlan.model.enums import *re-export, no second edit needed📋 Checklist