-
Notifications
You must be signed in to change notification settings - Fork 8
Closed
Labels
Milestone
Description
Implement GET and PUT wrappers to view and modify the git repository settings for content.
Will greatly improve recipe at posit-dev/connect-cookbook#57
API Proposal
from posit import connect
client = connect.Client()
content = client.content.get(...)
repository = content.repository or content.create_repository(...) # GET or POST
repository.update(...) # PATCH
repository.delete() # DELETE