Defines a git repo to be cloned inside the application path
| Name | Type | Description | Notes |
|---|---|---|---|
| url | str | ||
| branch_tag | str | ||
| path | str | Defines the path where the repo is cloned. default: /git | [optional] |
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)