Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

RenderedDeviceSpecSystemd.md

File metadata and controls

29 lines (20 loc) · 1.03 KB

RenderedDeviceSpecSystemd

Properties

Name Type Description Notes
match_patterns List[str] [optional]

Example

from flightctl.models.rendered_device_spec_systemd import RenderedDeviceSpecSystemd

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

# convert the object into a dict
rendered_device_spec_systemd_dict = rendered_device_spec_systemd_instance.to_dict()
# create an instance of RenderedDeviceSpecSystemd from a dict
rendered_device_spec_systemd_from_dict = RenderedDeviceSpecSystemd.from_dict(rendered_device_spec_systemd_dict)

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