Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

GitConfigProviderSpecGitRef.md

File metadata and controls

32 lines (23 loc) · 1.25 KB

GitConfigProviderSpecGitRef

Properties

Name Type Description Notes
repository str The name of the repository resource to use as the sync source
target_revision str
path str
mount_path str Path to config in device [optional] [default to '/']

Example

from flightctl.models.git_config_provider_spec_git_ref import GitConfigProviderSpecGitRef

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

# convert the object into a dict
git_config_provider_spec_git_ref_dict = git_config_provider_spec_git_ref_instance.to_dict()
# create an instance of GitConfigProviderSpecGitRef from a dict
git_config_provider_spec_git_ref_from_dict = GitConfigProviderSpecGitRef.from_dict(git_config_provider_spec_git_ref_dict)

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