Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add client credential oauth integration support + related databricks helpers to SDK #348

Merged
merged 22 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
67c7af3
initial proposal for client credentials support in python sdk
zackverham Nov 27, 2024
67edfbb
a bit of refactoring + some more documentation
zackverham Nov 27, 2024
08796e2
test coverage, linting
zackverham Dec 2, 2024
e654b0b
Update src/posit/connect/external/databricks.py
zackverham Dec 3, 2024
dd02020
Update src/posit/connect/external/databricks.py
zackverham Dec 3, 2024
36634c7
responding to PR comments
zackverham Dec 3, 2024
d7ba5e6
fix comment typo
zackverham Dec 3, 2024
e146ddd
Wrap examples in markdown blocks
schloerke Dec 4, 2024
d58a743
Expose `external` on docs
schloerke Dec 4, 2024
b229b4b
updating docstrings in response to PR comments
zackverham Dec 4, 2024
3ec143d
Merge branch 'zack-client-creds' of github.com:posit-dev/posit-sdk-py…
zackverham Dec 4, 2024
89497bd
docstring polish - backticks
zackverham Dec 4, 2024
3f42531
fix linting issues
zackverham Dec 4, 2024
fb80f1d
Copy in existing example app and add title to each file
schloerke Dec 4, 2024
73569a3
add patched-in local strategy for client credential access tokens
zackverham Dec 5, 2024
91877ee
add implementing strategy that can use local credentials provider
zackverham Dec 5, 2024
c38fecd
missing params
zackverham Dec 5, 2024
4a1a512
commit to force develop dependency to update
zackverham Dec 5, 2024
54a47c9
add raise_for_status
zackverham Dec 5, 2024
144e895
adding docstrings, tests
zackverham Dec 5, 2024
2042938
sweep through docstrings in response to PR comments
zackverham Dec 6, 2024
59862c4
linting
zackverham Dec 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,7 @@ quartodoc:
contents:
- connect.metrics
- connect.metrics.usage
- title: External Integrations
contents:
- connect.external.databricks
- connect.external.snowflake
4 changes: 2 additions & 2 deletions src/posit/connect/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -755,8 +755,8 @@ def find_by(
-------
Optional[ContentItem]

Example
-------
Examples
--------
>>> find_by(name="example-content-name")
"""
attr_items = attrs.items()
Expand Down
Loading
Loading