Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.45 KB

File metadata and controls

40 lines (31 loc) · 1.45 KB

BlueprintInstance

Info about a single blueprint instance file

Properties

Name Type Description Notes
pk UUID [readonly]
name str
path str [optional] [default to '']
context Dict[str, object] [optional]
last_applied datetime [readonly]
last_applied_hash str [readonly]
status BlueprintInstanceStatusEnum [readonly]
enabled bool [optional]
managed_models List[str] [readonly]
metadata Dict[str, object] [readonly]
content str [optional]

Example

from authentik_client.models.blueprint_instance import BlueprintInstance

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

# convert the object into a dict
blueprint_instance_dict = blueprint_instance_instance.to_dict()
# create an instance of BlueprintInstance from a dict
blueprint_instance_from_dict = BlueprintInstance.from_dict(blueprint_instance_dict)

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