Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

FleetSpecTemplate

The template for the devices in the fleet.

Properties

Name Type Description Notes
metadata ObjectMeta [optional]
spec DeviceSpec

Example

from flightctl.models.fleet_spec_template import FleetSpecTemplate

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

# convert the object into a dict
fleet_spec_template_dict = fleet_spec_template_instance.to_dict()
# create an instance of FleetSpecTemplate from a dict
fleet_spec_template_from_dict = FleetSpecTemplate.from_dict(fleet_spec_template_dict)

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