# Packages
No description provided by the author
# Functions
Create accepts a CreateOpts struct and creates a new automation using the values provided.
Delete accepts a unique ID and deletes the automation associated with it.
ExtractAutomations accepts a Page struct, specifically an AutomationPage struct, and extracts the elements into a slice of Automation structs.
No description provided by the author
Get retrieves a specific automation based on its unique ID.
List returns a Pager which allows you to iterate over a collection of automations.
Update accepts a UpdateOpts struct and updates an existing automation using the values provided.
# Structs
Automation represents a Lyra Automation.
AutomationPage is the page returned by a pager when traversing over a collection of automations.
CreateOpts represents the attributes used when creating a new automation.
CreateResult represents the result of a create operation.
DeleteResult represents the result of a delete operation.
GetResult represents the result of a get operation.
ListOpts allows the listing of paginated collections through the API.
UpdateOpts represents the attributes used when updating an existing automation.
UpdateResult represents the result of an update operation.
# Interfaces
CreateOptsBuilder allows extensions to add additional parameters to the Create request.
ListOptsBuilder allows extensions to add additional parameters to the List request.
UpdateOptsBuilder allows extensions to add additional parameters to the Update request.