-
Notifications
You must be signed in to change notification settings - Fork 16
Conversation
…ptions and saas options.
- Add docs and postman collection.
conn_type.value | ||
for conn_type in ConnectionType | ||
if conn_type | ||
not in [ConnectionType.saas, ConnectionType.https, ConnectionType.manual] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
my assumption is that these types and the "custom" type below shouldn't be included in this list, that these are connectors that are available and ready to go
|
||
@router.get( | ||
CONNECTION_TYPES, | ||
dependencies=[Security(verify_oauth_client, scopes=[CONNECTION_TYPE_READ])], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I set scopes here but this may not be necessary
@ethyca/docs-authors Small docs addition added to the guides about how to see a list of available connector types |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 good on the docs side of the house!
# Conflicts: # src/fidesops/schemas/saas/saas_config.py
fixing ClientDetail model import.. |
* Adds Saas type to saas yaml config * alter postman collection * updates changelog * lint fixes * Add endpoint to surface all available connectors including database options and saas options. * Exclude custom and manual types from list of available connectors. - Add docs and postman collection. * Update changelog. * Remove committed ANALYTICS_ID. * Import ClientDetail from fideslib instead of fidesops. * Fix import order. Co-authored-by: eastandwestwind <[email protected]>
❗ Dependent on #706 - Merge that first
Purpose
As a Fidesops admin user, need the ability to see a list of available connector types to choose from so that I can select one to connect my fidesops environment to.
Changes
GET api/v1/connection_type
GET api/v1/connection_type?search=red
Checklist
CHANGELOG.md
fileCHANGELOG.md
file is being appended toUnreleased
section in an appropriate category. Add a new category from the list at the top of the file if the needed one isn't already there.Run Unsafe PR Checks
label has been applied, and checks have passed, if this PR touches any external servicesTicket
Fixes #752