Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

File metadata and controls

32 lines (23 loc) · 1.11 KB

GitDependencyConfig

Defines a git repo to be cloned inside the application path

Properties

Name Type Description Notes
url str
branch_tag str
path str Defines the path where the repo is cloned. default: /git [optional]

Example

from cloudharness_model.models.git_dependency_config import GitDependencyConfig

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

# convert the object into a dict
git_dependency_config_dict = git_dependency_config_instance.to_dict()
# create an instance of GitDependencyConfig from a dict
git_dependency_config_from_dict = GitDependencyConfig.from_dict(git_dependency_config_dict)

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