Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.7 KB

File metadata and controls

40 lines (31 loc) · 1.7 KB

Outpost

Outpost Serializer

Properties

Name Type Description Notes
pk UUID [readonly]
name str
type OutpostTypeEnum
providers List[int]
providers_obj List[Provider] [readonly]
service_connection UUID Select Service-Connection authentik should use to manage this outpost. Leave empty if authentik should not handle the deployment. [optional]
service_connection_obj ServiceConnection [readonly]
refresh_interval_s int [readonly]
token_identifier str Get Token identifier [readonly]
config Dict[str, object]
managed str Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update. [optional]

Example

from authentik_client.models.outpost import Outpost

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

# convert the object into a dict
outpost_dict = outpost_instance.to_dict()
# create an instance of Outpost from a dict
outpost_from_dict = Outpost.from_dict(outpost_dict)

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