Blink CLI Workflows
Create and execute your Workflows.
Execute Workflows
Executes a complete Workflow - in sync or async mode.
blink automations execute [flags]
Flag | Description |
---|---|
--id | Automation's ID (Required). |
--inputs | Optional json string for [inputs]. For example: '{''input_values'': {''key'':''value''}}'. |
Workflow History
Returns the list of audit commands per an execution.
blink automations history [flags]
Flag | Description |
---|---|
--id | Execution's ID (Required). |
Search Workflow
Returns Workflows by a filter.
blink automations search [flags]
Flag | Description |
---|---|
--q | Query search string, for example: '{"limit": 25, "offset": 0, "filter": {"name": {"$gt": "k8s"}}}' (Required, filter is optional). |
Create Workflow
Creates a Workflow from a given YAML file.
blink automations create [flags]
Flag | Description |
---|---|
-f, --file | Path to the workflow file (Required). |
-p, --pack-name | Name of a workflow pack to create the workflow in. |
-a, --publish | Publish and activate the workflow (Default: true). |
Delete Workflow
Deletes a workflow by name or id.
blink automations delete [flags]
Flag | Description |
---|---|
-i, --id | Workflow's ID. |
-n, --name | Workflow's Name. |
Get Workflow
Gets a Workflow by name or id.
blink automations get [flags]
Flag | Description |
---|---|
-i, --id | Workflow's ID. |
-n, --name | Workflow's Name. |
List Workflow
List all available Workflows.
blink automations list
Update Workflow
Updates a Workflow from a given YAML file.
blink automations update [flags]
Flag | Description |
---|---|
-f, --file | Path to the Workflow file (Required). |
-p, --pack-name | Name of a Workflow pack to create the Workflow in. |
-a, --publish | Publish and activate the Workflow (Default: true). |