You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromflightctl.models.git_config_provider_spec_git_refimportGitConfigProviderSpecGitRef# TODO update the JSON string belowjson="{}"# create an instance of GitConfigProviderSpecGitRef from a JSON stringgit_config_provider_spec_git_ref_instance=GitConfigProviderSpecGitRef.from_json(json)
# print the JSON string representation of the objectprint(GitConfigProviderSpecGitRef.to_json())
# convert the object into a dictgit_config_provider_spec_git_ref_dict=git_config_provider_spec_git_ref_instance.to_dict()
# create an instance of GitConfigProviderSpecGitRef from a dictgit_config_provider_spec_git_ref_from_dict=GitConfigProviderSpecGitRef.from_dict(git_config_provider_spec_git_ref_dict)