Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1003 Bytes

File metadata and controls

30 lines (21 loc) · 1003 Bytes

DeviceSpecSystemd

The systemd services to monitor.

Properties

Name Type Description Notes
match_patterns List[str] A list of match patterns. [optional]

Example

from flightctl.models.device_spec_systemd import DeviceSpecSystemd

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

# convert the object into a dict
device_spec_systemd_dict = device_spec_systemd_instance.to_dict()
# create an instance of DeviceSpecSystemd from a dict
device_spec_systemd_from_dict = DeviceSpecSystemd.from_dict(device_spec_systemd_dict)

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