Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

ExternalRepoUpdate

Properties

Name Type Description Notes
remote_url str Repository URL. [optional]
ssh_privatekey_id str ID of an SSH Private Key with permission to pull the repository. [optional]

Example

from saturn_api.models.external_repo_update import ExternalRepoUpdate

# TODO update the JSON string below
json = "{}"
# create an instance of ExternalRepoUpdate from a JSON string
external_repo_update_instance = ExternalRepoUpdate.from_json(json)
# print the JSON string representation of the object
print(ExternalRepoUpdate.to_json())

# convert the object into a dict
external_repo_update_dict = external_repo_update_instance.to_dict()
# create an instance of ExternalRepoUpdate from a dict
external_repo_update_from_dict = ExternalRepoUpdate.from_dict(external_repo_update_dict)

[Back to Model list] [Back to API list] [Back to README]