You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Path of the repository in the resource it is attached to.
[optional]
on_restart
str
Repository clone behavior on restart. Preserve only applies when path is in a persistent volume.
[optional]
ref
str
Git version reference on the repository.
[optional]
ref_type
str
Type of the git ref.
[optional]
Example
fromsaturn_api.models.external_repo_attachment_updateimportExternalRepoAttachmentUpdate# TODO update the JSON string belowjson="{}"# create an instance of ExternalRepoAttachmentUpdate from a JSON stringexternal_repo_attachment_update_instance=ExternalRepoAttachmentUpdate.from_json(json)
# print the JSON string representation of the objectprint(ExternalRepoAttachmentUpdate.to_json())
# convert the object into a dictexternal_repo_attachment_update_dict=external_repo_attachment_update_instance.to_dict()
# create an instance of ExternalRepoAttachmentUpdate from a dictexternal_repo_attachment_update_from_dict=ExternalRepoAttachmentUpdate.from_dict(external_repo_attachment_update_dict)