| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The name of the config provider. | |
| git_ref | GitConfigProviderSpecGitRef | ||
| secret_ref | KubernetesSecretProviderSpecSecretRef | ||
| inline | List[FileSpec] | A list of files to create on the device. | |
| http_ref | HttpConfigProviderSpecHttpRef |
from flightctl.models.config_provider_spec import ConfigProviderSpec
# TODO update the JSON string below
json = "{}"
# create an instance of ConfigProviderSpec from a JSON string
config_provider_spec_instance = ConfigProviderSpec.from_json(json)
# print the JSON string representation of the object
print(ConfigProviderSpec.to_json())
# convert the object into a dict
config_provider_spec_dict = config_provider_spec_instance.to_dict()
# create an instance of ConfigProviderSpec from a dict
config_provider_spec_from_dict = ConfigProviderSpec.from_dict(config_provider_spec_dict)