Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 985 Bytes

SshRepoSpec.md

File metadata and controls

31 lines (22 loc) · 985 Bytes

SshRepoSpec

Properties

Name Type Description Notes
url str The SSH Git repository URL to clone from
type RepoSpecType
ssh_config SshConfig

Example

from flightctl.models.ssh_repo_spec import SshRepoSpec

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

# convert the object into a dict
ssh_repo_spec_dict = ssh_repo_spec_instance.to_dict()
# create an instance of SshRepoSpec from a dict
ssh_repo_spec_from_dict = SshRepoSpec.from_dict(ssh_repo_spec_dict)

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