published on Thursday, Aug 20, 2026 by jschady
published on Thursday, Aug 20, 2026 by jschady
An Automation is an automated process of controlling workflows on your Files.com site.
Automations are different from Behaviors because Behaviors are associated with a current folder, while Automations apply across your entire site.
Automations are never removed when folders are removed, while Behaviors are removed when the associated folder is removed.
Path Matching
The path attribute specifies which folders this automation applies to.
It gets combined with the source attribute to determine which files are actually affected by the automation.
Note that the path attribute supports globs, and only refers to folders.
It’s the source attribute, which also supports globs, combined with the path attribute that determines which files are affected, and automations only operate on the files themselves.
Additionally, paths in Automations can refer to folders which don’t yet exist.
Path Globs
Although Automations may have a path specified, it can be a glob (which includes wildcards), which affects multiple folders.
* matches any folder at that level of the path, but not subfolders. For example, path/to/* matches path/to/folder1 and path/to/folder2, but not path/to/folder1/subfolder.
** matches subfolders recursively. For example, path/to/** matches path/to/folder1, path/to/folder1/subfolder, path/to/folder2, path/to/folder2/subfolder, etc.
? matches any one character.
Use square brackets [] to match any character from a set. This works like a regular expression, including negation using ^.
Curly brackets {} can be used to denote parts of a pattern which will accept a number of alternatives, separated by commas ,.
These alternatives can either be literal text or include special characters including nested curly brackets.
For example {Mon,Tue,Wed,Thu,Fri} would match abbreviated weekdays, and 202{3-{0[7-9],1?},4-0[1-6]}-* would match dates from 2023-07-01 through 2024-06-30.
To match any of the special characters literally, precede it with a backslash and enclose that pair with square brackets. For example to match a literal ?, use [\?].
Globs are supported on path, source, and excludePattern fields. Globs are not supported on remote paths of any kind or for any field.
By default, Copy and Move automations that use globs will implicitly replicate matched folder structures at the destination. If you want to flatten the folder structure, set flattenDestinationStructure to true.
Automation Triggers
Automations can be triggered in the following ways:
customSchedule: The automation will run according to either the reusable Site-level Schedule selected byscheduleIdor its own custom schedule fields fordaysOfWeek(0-based) andtimesOfDay. A time zone may be specified viatimeZonein Rails TimeZone name format.daily: The automation will run in a pickedinterval. You can specifyrecurringDayorrecurringDaysto select one or more day numbers inside the interval.webhook: the automation will run when a request is sent to the corresponding webhook URL.action: The automation will run when a specific action happens, e.g. a file is created or downloaded.
Future enhancements will allow Automations to be triggered by an incoming email, or by other services.
Currently, all Automation types support all triggers, with the following exceptions: Create Folder and Run Remote Server Sync are not supported by the action trigger.
Automations can be triggered manually if trigger is not set to action.
Destinations
The destinations parameter is a list of paths where files will be copied, moved, or created. It may include formatting parameters to dynamically determine the destination at runtime.
Relative vs. Absolute Paths
In order to specify a relative path, it must start with either ./ or ../. All other paths are considered absolute. In general, leading slashes should never be used on Files.com paths, including here. Paths are interpreted as absolute in all contexts, even without a leading slash.
Files vs. Folders
If the destination path ends with a /, the filename from the source path will be preserved and put into the folder of this name. If the destination path does not end with a /, it will be interpreted as a filename and will override the source file’s filename entirely.
Formatting Parameters
Action-Triggered Automations
%tf: The name of the file that triggered the automation.%tp: The path of the file that triggered the automation.%td: The directory of the file that triggered the automation.%tb: The name of the file (without extension) that triggered the automation.%te: The extension of the file that triggered the automation.
For example, if the triggering file is at path/to/file.txt, then the automation destination path/to/dest/incoming-%tf will result in the actual destination being path/to/dest/incoming-file.txt.
Parent Folders
To reference the parent folder of a source file, use %p1, %p2, %p3, etc. for the first, second, third, etc. parent folder, respectively.
To reference path components from the root downward, use %P1, %P2, %P3, etc. for the first, second, third, etc. path component, respectively.
For example, if the source file is at accounts/file.txt, then the automation destination path/to/dest/%p1/some_file_name.txt will result in the actual destination being path/to/dest/accounts/some_file_name.txt.
If the source file is at partner/app/team/inbound/file.txt, then the automation destination path/to/dest/%P1/%P3/%P4/file.txt will result in the actual destination being path/to/dest/partner/team/inbound/file.txt.
Source File Name
To reference the name of the source file being processed, use the following tokens:
%Ff: The name of the source file, with extension.%Fb: The name of the source file, without extension.%Fe: The extension of the source file.%Fl: The name of the source file, with extension, converted to lowercase.%Fn: The name of the source file, without non-alphanumeric characters, with extension.%Fp: The name of the source file, with extension, spaces removed, lowercase, non-ASCII normalized.
For example, if the source file is Daily Report.xlsx and the destination is archive/%Y-%m-%d/%Fb.xlsx, the resolved destination will be archive/2024-01-15/Daily Report.xlsx.
Dates and Times
%Y: The current year (4 digits)%m: The current month (2 digits)%B: The current month (full name)%d: The current day (2 digits)%H: The current hour (2 digits, 24-hour clock)%M: The current minute (2 digits)%S: The current second (2 digits)%z: UTC Time Zone (e.g. -0900)
For example, if the current date is June 23, 2023 and the source file is named daily_sales.csv, then the following automation destination path/to/dest/%Y/%m/%d/ will result in the actual destination being path/to/dest/2023/06/23/daily_sales.csv.
Replacing Text
To replace text in the source filename, use the destinationReplaceFrom and destinationReplaceTo parameters. This will perform a simple text replacement on the source filename before inserting it into the destination path.
For example, if the destinationReplaceFrom is incoming and the destinationReplaceTo is outgoing, then path/to/incoming.txt will translate to path/to/outgoing.txt.
Automation Types
There are several types of automations: Create Folder, Copy File, Move File, Delete File and, Run Remote Server Sync.
Create Folder
Creates the folder with named by destinations in the path named by path.
Destination may include formatting parameters to insert the date/time into the destination name.
Example Use case: Our business files sales tax for each division in 11 states every quarter.
I want to create the folders where those sales tax forms and data will be collected.
I could create a Create Folder automation as follows:
Trigger:
dailyInterval:
quarterEndPath:
AccountingAndTax/SalesTax/State/*/Destinations:
%Y/Quarter-ending-%m-%d
Note this assumes you have folders in AccountingAndTax/SalesTax/State/ already created for each state, e.g. AccountingAndTax/SalesTax/State/CA/.
Delete File
Deletes the file with path matching source (wildcards allowed) in the path named by path.
Copy File
Copies files in the folder named by path to the path specified in destinations.
The automation will only fire on files matching the source (wildcards allowed). In the case of an action-triggered automation, it will only operate on the actual file that triggered the automation.
If the parameter limit exists, the automation will only copy the newest limit files in each matching folder.
Move File
Moves files in the folder named by path to the path specified in destinations.
The automation will only fire on files matching the source (wildcards allowed). In the case of an action-triggered automation, it will only operate on the actual file that triggered the automation.
If the parameter limit exists, the automation will only move the newest limit files in each matching folder.
Note that for a move with multiple destinations, all but one destination is treated as a copy.
Run Remote Server Sync
The Run Remote Server Sync automation runs the remote server syncs specified by the syncIds.
Typically when this automation is used, the remote server syncs in question are set to the manual
scheduling mode (manual to true via the API) to disable the built in sync scheduler.
Import File
Retrieves files from one or more URLs and saves the results under the path specified in destinations.
The URLs to retrieve are specified as a JSON array in the importUrls property.
[
{
"name": "response.json",
"url": "https://example.com/api",
"method": "post",
"headers": {
"Content-Type": "application/json"
},
"content": { "trigger-file": "%tp" }
}
]
The recognized keys are:
name: The file name which will be used to save the returned content. Required.%tokens will be replaced as described under Formatting Parameters.url: The URL which will be requested. Required.method: The HTTP method to be used for the request. May be eithergetorpost(case insensitive). Defaults toget.headers: Optional headers to be included in the request.%tokens in the values will be replaced as described under Formatting Parameters.content: Optional body to send for POST request. If supplied as a string,%tokens will be expanded. If supplied as a JSON Object,%tokens will be expanded for top-level values. Other JSON types will be sent as-is.
Help us build the future of Automations
Do you have an idea for something that would work well as a Files.com Automation? Let us know!
We are actively improving the types of automations offered on our platform.
Retrying Failures
Automations will automatically retry individual action steps up to 3 times, with pauses between retries that increase from 15 seconds to 1 minute. If individual action steps fail after our 3rd attempt, that action will fail. If every action step in an Automation Run fails, that automation run will move to a failure status. If at least one step succeeds and one step fails, that automation run will move to a partialFailure status.
Automation Runs can be retried automatically when they enter a failure or partialFailure status as described above. A retry will re-run the automation from scratch, including the “planning” phase, which expands globs (wildcards) and identifies which files to transfer or skip.
Retrying of entire Automation Runs must be explicitly enabled by setting the retryOnFailureIntervalInMinutes and retryOnFailureNumberOfAttempts values on the Automation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as filescom from "pulumi-filescom";
const exampleAutomation = filescom.getAutomation({
id: 1,
});
import pulumi
import pulumi_filescom as filescom
example_automation = filescom.get_automation(id=1)
package main
import (
"github.com/jschady/pulumi-filescom/sdk/go/filescom"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := filescom.GetAutomation(ctx, &filescom.LookupAutomationArgs{
Id: 1,
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Filescom = Jschady.Filescom;
return await Deployment.RunAsync(() =>
{
var exampleAutomation = Filescom.GetAutomation.Invoke(new()
{
Id = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.filescom.FilescomFunctions;
import com.pulumi.filescom.inputs.GetAutomationArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var exampleAutomation = FilescomFunctions.getAutomation(GetAutomationArgs.builder()
.id(1)
.build());
}
}
variables:
exampleAutomation:
fn::invoke:
function: filescom:getAutomation
arguments:
id: 1
pulumi {
required_providers {
filescom = {
source = "pulumi/filescom"
}
}
}
data "filescom_getautomation" "exampleAutomation" {
id = 1
}
Using getAutomation
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getAutomation(args: GetAutomationArgs, opts?: InvokeOptions): Promise<GetAutomationResult>
function getAutomationOutput(args: GetAutomationOutputArgs, opts?: InvokeOutputOptions): Output<GetAutomationResult>def get_automation(id: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetAutomationResult
def get_automation_output(id: pulumi.Input[Optional[int]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetAutomationResult]func LookupAutomation(ctx *Context, args *LookupAutomationArgs, opts ...InvokeOption) (*LookupAutomationResult, error)
func LookupAutomationOutput(ctx *Context, args *LookupAutomationOutputArgs, opts ...InvokeOption) LookupAutomationResultOutput> Note: This function is named LookupAutomation in the Go SDK.
public static class GetAutomation
{
public static Task<GetAutomationResult> InvokeAsync(GetAutomationArgs args, InvokeOptions? opts = null)
public static Output<GetAutomationResult> Invoke(GetAutomationInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetAutomationResult> Invoke(GetAutomationInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetAutomationResult> getAutomation(GetAutomationArgs args, InvokeOptions options)
public static Output<GetAutomationResult> getAutomation(GetAutomationArgs args, InvokeOptions options)
public static Output<GetAutomationResult> getAutomation(GetAutomationArgs args, InvokeOutputOptions options)
fn::invoke:
function: filescom:index/getAutomation:getAutomation
arguments:
# arguments dictionarydata "filescom_get_automation" "name" {
# arguments
}The following arguments are supported:
- Id int
- Automation ID
- Id int
- Automation ID
- id number
- Automation ID
- id Integer
- Automation ID
- id number
- Automation ID
- id int
- Automation ID
- id Number
- Automation ID
getAutomation Result
The following output properties are available:
- Always
Overwrite boolSize Matching Files - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is
truewe will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unlessoverwriteFilesis also set totrue. - Always
Serialize boolJobs - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is
truewe will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance. - Automation string
- Automation type
- Definition
Jschady.
Filescom. Outputs. Get Automation Definition - Automation v2 graph definition.
- Deleted bool
- Indicates if the automation has been deleted.
- Description string
- Description for the this Automation.
- Destination
Replace stringFrom - If set, this string in the destination path will be replaced with the value in
destinationReplaceTo. - Destination
Replace stringTo - If set, this string will replace the value
destinationReplaceFromin the destination filename. You can use special patterns here. - Destinations List<string>
- Destination Paths
- Disabled bool
- If true, this automation will not run.
- Exclude
Pattern string - If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
- Flatten
Destination boolStructure - Normally copy and move automations that use globs will implicitly preserve the source folder structure in the destination. If this flag is
true, the source folder structure will be flattened in the destination. This is useful for copying or moving files from multiple folders into a single destination folder. - Group
Ids List<int> - IDs of Groups for the Automation (i.e. who to Request File from)
- Holiday
Region string - Skip the automation if there is a formal, observed holiday for this region.
- Human
Readable stringSchedule - If trigger is
customScheduleordailywith times, Human readable schedule description for when the automation should be run. - Id int
- Automation ID
- Ignore
Locked boolFolders - If true, the Lock Folders behavior will be disregarded for automated actions.
- Import
Urls object - List of URLs to be imported and names to be used.
- Inbound
Email stringAddress - If trigger is
email, this is the address that triggers the Automation. - Interval string
- If trigger is
daily, this specifies how often to run this automation. One of:day,week,weekEnd,month,monthEnd,quarter,quarterEnd,year,yearEnd - Last
Modified stringAt - Time when automation was last modified. Does not change for name or description updates.
- Legacy
Folder boolMatching - If
true, use the legacy behavior for this automation, where it can operate on folders in addition to just files. This behavior no longer works and should not be used. - Legacy
Sync List<int>Ids - IDs of remote sync folder behaviors to run by this Automation
- Name string
- Name for this automation.
- Overwrite
Files bool - If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten on Copy automations if they appear to be the same file size as the newly incoming file. Use the
alwaysOverwriteSizeMatchingFilesoption in conjunction withoverwriteFilesto override this behavior and overwrite files no matter what. - Path string
- Path on which this Automation runs. Supports globs, except on remote mounts. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- Path
Time stringZone - Timezone to use when rendering timestamps in paths.
- Recurring
Day int - If trigger type is
daily, this specifies a day number to run in one of the supported intervals:week,month,quarter,year. - Recurring
Days List<int> - If trigger type is
daily, this specifies one or more day numbers to run in one of the supported intervals:week,month,quarter,year. - Retry
On intFailure Interval In Minutes - If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
- Retry
On intFailure Number Of Attempts - If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.
- Schedule object
- If trigger is
customSchedule, Custom schedule description for when the automation should be run in json format. - Schedule
Days List<int>Of Weeks - If trigger is
customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc. - Schedule
Id int - If trigger is
customSchedule, the reusable Schedule used instead of the automation's schedule fields. - Schedule
Time stringZone - Time zone for the schedule. If not set, times are interpreted as UTC.
- Schedule
Times List<string>Of Days - Times of day to run in HH:MM format (24-hour). For
customSchedule, run at these times on specified days of week. Fordaily, run at these times on the scheduled interval date. - Source string
- Source path/glob. See Automation docs for exact description, but this is used to filter for files in the
pathto find files to operate on. Supports globs, except on remote mounts. - Sync
Ids List<int> - IDs of syncs to run by this Automation. This is the new way to specify syncs, and it is recommended to use this instead of
legacySyncIds. - Trigger string
- How this automation is triggered to run.
- Trigger
Actions List<string> - If trigger is
action, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy - User
Id int - User ID of the Automation's creator.
- User
Ids List<int> - IDs of Users for the Automation (i.e. who to Request File from)
- Value object
- A Hash of attributes specific to the automation type.
- Version int
- Current Automation v2 definition version.
- Webhook
Url string - If trigger is
webhook, this is the URL of the webhook to trigger the Automation. - Workspace
Id int - Workspace ID
- Always
Overwrite boolSize Matching Files - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is
truewe will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unlessoverwriteFilesis also set totrue. - Always
Serialize boolJobs - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is
truewe will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance. - Automation string
- Automation type
- Definition
Get
Automation Definition - Automation v2 graph definition.
- Deleted bool
- Indicates if the automation has been deleted.
- Description string
- Description for the this Automation.
- Destination
Replace stringFrom - If set, this string in the destination path will be replaced with the value in
destinationReplaceTo. - Destination
Replace stringTo - If set, this string will replace the value
destinationReplaceFromin the destination filename. You can use special patterns here. - Destinations []string
- Destination Paths
- Disabled bool
- If true, this automation will not run.
- Exclude
Pattern string - If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
- Flatten
Destination boolStructure - Normally copy and move automations that use globs will implicitly preserve the source folder structure in the destination. If this flag is
true, the source folder structure will be flattened in the destination. This is useful for copying or moving files from multiple folders into a single destination folder. - Group
Ids []int - IDs of Groups for the Automation (i.e. who to Request File from)
- Holiday
Region string - Skip the automation if there is a formal, observed holiday for this region.
- Human
Readable stringSchedule - If trigger is
customScheduleordailywith times, Human readable schedule description for when the automation should be run. - Id int
- Automation ID
- Ignore
Locked boolFolders - If true, the Lock Folders behavior will be disregarded for automated actions.
- Import
Urls interface{} - List of URLs to be imported and names to be used.
- Inbound
Email stringAddress - If trigger is
email, this is the address that triggers the Automation. - Interval string
- If trigger is
daily, this specifies how often to run this automation. One of:day,week,weekEnd,month,monthEnd,quarter,quarterEnd,year,yearEnd - Last
Modified stringAt - Time when automation was last modified. Does not change for name or description updates.
- Legacy
Folder boolMatching - If
true, use the legacy behavior for this automation, where it can operate on folders in addition to just files. This behavior no longer works and should not be used. - Legacy
Sync []intIds - IDs of remote sync folder behaviors to run by this Automation
- Name string
- Name for this automation.
- Overwrite
Files bool - If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten on Copy automations if they appear to be the same file size as the newly incoming file. Use the
alwaysOverwriteSizeMatchingFilesoption in conjunction withoverwriteFilesto override this behavior and overwrite files no matter what. - Path string
- Path on which this Automation runs. Supports globs, except on remote mounts. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- Path
Time stringZone - Timezone to use when rendering timestamps in paths.
- Recurring
Day int - If trigger type is
daily, this specifies a day number to run in one of the supported intervals:week,month,quarter,year. - Recurring
Days []int - If trigger type is
daily, this specifies one or more day numbers to run in one of the supported intervals:week,month,quarter,year. - Retry
On intFailure Interval In Minutes - If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
- Retry
On intFailure Number Of Attempts - If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.
- Schedule interface{}
- If trigger is
customSchedule, Custom schedule description for when the automation should be run in json format. - Schedule
Days []intOf Weeks - If trigger is
customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc. - Schedule
Id int - If trigger is
customSchedule, the reusable Schedule used instead of the automation's schedule fields. - Schedule
Time stringZone - Time zone for the schedule. If not set, times are interpreted as UTC.
- Schedule
Times []stringOf Days - Times of day to run in HH:MM format (24-hour). For
customSchedule, run at these times on specified days of week. Fordaily, run at these times on the scheduled interval date. - Source string
- Source path/glob. See Automation docs for exact description, but this is used to filter for files in the
pathto find files to operate on. Supports globs, except on remote mounts. - Sync
Ids []int - IDs of syncs to run by this Automation. This is the new way to specify syncs, and it is recommended to use this instead of
legacySyncIds. - Trigger string
- How this automation is triggered to run.
- Trigger
Actions []string - If trigger is
action, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy - User
Id int - User ID of the Automation's creator.
- User
Ids []int - IDs of Users for the Automation (i.e. who to Request File from)
- Value interface{}
- A Hash of attributes specific to the automation type.
- Version int
- Current Automation v2 definition version.
- Webhook
Url string - If trigger is
webhook, this is the URL of the webhook to trigger the Automation. - Workspace
Id int - Workspace ID
- always_
overwrite_ boolsize_ matching_ files - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is
truewe will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unlessoverwriteFilesis also set totrue. - always_
serialize_ booljobs - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is
truewe will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance. - automation string
- Automation type
- definition object
- Automation v2 graph definition.
- deleted bool
- Indicates if the automation has been deleted.
- description string
- Description for the this Automation.
- destination_
replace_ stringfrom - If set, this string in the destination path will be replaced with the value in
destinationReplaceTo. - destination_
replace_ stringto - If set, this string will replace the value
destinationReplaceFromin the destination filename. You can use special patterns here. - destinations list(string)
- Destination Paths
- disabled bool
- If true, this automation will not run.
- exclude_
pattern string - If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
- flatten_
destination_ boolstructure - Normally copy and move automations that use globs will implicitly preserve the source folder structure in the destination. If this flag is
true, the source folder structure will be flattened in the destination. This is useful for copying or moving files from multiple folders into a single destination folder. - group_
ids list(number) - IDs of Groups for the Automation (i.e. who to Request File from)
- holiday_
region string - Skip the automation if there is a formal, observed holiday for this region.
- human_
readable_ stringschedule - If trigger is
customScheduleordailywith times, Human readable schedule description for when the automation should be run. - id number
- Automation ID
- ignore_
locked_ boolfolders - If true, the Lock Folders behavior will be disregarded for automated actions.
- import_
urls any - List of URLs to be imported and names to be used.
- inbound_
email_ stringaddress - If trigger is
email, this is the address that triggers the Automation. - interval string
- If trigger is
daily, this specifies how often to run this automation. One of:day,week,weekEnd,month,monthEnd,quarter,quarterEnd,year,yearEnd - last_
modified_ stringat - Time when automation was last modified. Does not change for name or description updates.
- legacy_
folder_ boolmatching - If
true, use the legacy behavior for this automation, where it can operate on folders in addition to just files. This behavior no longer works and should not be used. - legacy_
sync_ list(number)ids - IDs of remote sync folder behaviors to run by this Automation
- name string
- Name for this automation.
- overwrite_
files bool - If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten on Copy automations if they appear to be the same file size as the newly incoming file. Use the
alwaysOverwriteSizeMatchingFilesoption in conjunction withoverwriteFilesto override this behavior and overwrite files no matter what. - path string
- Path on which this Automation runs. Supports globs, except on remote mounts. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- path_
time_ stringzone - Timezone to use when rendering timestamps in paths.
- recurring_
day number - If trigger type is
daily, this specifies a day number to run in one of the supported intervals:week,month,quarter,year. - recurring_
days list(number) - If trigger type is
daily, this specifies one or more day numbers to run in one of the supported intervals:week,month,quarter,year. - retry_
on_ numberfailure_ interval_ in_ minutes - If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
- retry_
on_ numberfailure_ number_ of_ attempts - If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.
- schedule any
- If trigger is
customSchedule, Custom schedule description for when the automation should be run in json format. - schedule_
days_ list(number)of_ weeks - If trigger is
customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc. - schedule_
id number - If trigger is
customSchedule, the reusable Schedule used instead of the automation's schedule fields. - schedule_
time_ stringzone - Time zone for the schedule. If not set, times are interpreted as UTC.
- schedule_
times_ list(string)of_ days - Times of day to run in HH:MM format (24-hour). For
customSchedule, run at these times on specified days of week. Fordaily, run at these times on the scheduled interval date. - source string
- Source path/glob. See Automation docs for exact description, but this is used to filter for files in the
pathto find files to operate on. Supports globs, except on remote mounts. - sync_
ids list(number) - IDs of syncs to run by this Automation. This is the new way to specify syncs, and it is recommended to use this instead of
legacySyncIds. - trigger string
- How this automation is triggered to run.
- trigger_
actions list(string) - If trigger is
action, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy - user_
id number - User ID of the Automation's creator.
- user_
ids list(number) - IDs of Users for the Automation (i.e. who to Request File from)
- value any
- A Hash of attributes specific to the automation type.
- version number
- Current Automation v2 definition version.
- webhook_
url string - If trigger is
webhook, this is the URL of the webhook to trigger the Automation. - workspace_
id number - Workspace ID
- always
Overwrite BooleanSize Matching Files - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is
truewe will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unlessoverwriteFilesis also set totrue. - always
Serialize BooleanJobs - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is
truewe will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance. - automation String
- Automation type
- definition
Get
Automation Definition - Automation v2 graph definition.
- deleted Boolean
- Indicates if the automation has been deleted.
- description String
- Description for the this Automation.
- destination
Replace StringFrom - If set, this string in the destination path will be replaced with the value in
destinationReplaceTo. - destination
Replace StringTo - If set, this string will replace the value
destinationReplaceFromin the destination filename. You can use special patterns here. - destinations List<String>
- Destination Paths
- disabled Boolean
- If true, this automation will not run.
- exclude
Pattern String - If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
- flatten
Destination BooleanStructure - Normally copy and move automations that use globs will implicitly preserve the source folder structure in the destination. If this flag is
true, the source folder structure will be flattened in the destination. This is useful for copying or moving files from multiple folders into a single destination folder. - group
Ids List<Integer> - IDs of Groups for the Automation (i.e. who to Request File from)
- holiday
Region String - Skip the automation if there is a formal, observed holiday for this region.
- human
Readable StringSchedule - If trigger is
customScheduleordailywith times, Human readable schedule description for when the automation should be run. - id Integer
- Automation ID
- ignore
Locked BooleanFolders - If true, the Lock Folders behavior will be disregarded for automated actions.
- import
Urls Object - List of URLs to be imported and names to be used.
- inbound
Email StringAddress - If trigger is
email, this is the address that triggers the Automation. - interval String
- If trigger is
daily, this specifies how often to run this automation. One of:day,week,weekEnd,month,monthEnd,quarter,quarterEnd,year,yearEnd - last
Modified StringAt - Time when automation was last modified. Does not change for name or description updates.
- legacy
Folder BooleanMatching - If
true, use the legacy behavior for this automation, where it can operate on folders in addition to just files. This behavior no longer works and should not be used. - legacy
Sync List<Integer>Ids - IDs of remote sync folder behaviors to run by this Automation
- name String
- Name for this automation.
- overwrite
Files Boolean - If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten on Copy automations if they appear to be the same file size as the newly incoming file. Use the
alwaysOverwriteSizeMatchingFilesoption in conjunction withoverwriteFilesto override this behavior and overwrite files no matter what. - path String
- Path on which this Automation runs. Supports globs, except on remote mounts. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- path
Time StringZone - Timezone to use when rendering timestamps in paths.
- recurring
Day Integer - If trigger type is
daily, this specifies a day number to run in one of the supported intervals:week,month,quarter,year. - recurring
Days List<Integer> - If trigger type is
daily, this specifies one or more day numbers to run in one of the supported intervals:week,month,quarter,year. - retry
On IntegerFailure Interval In Minutes - If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
- retry
On IntegerFailure Number Of Attempts - If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.
- schedule Object
- If trigger is
customSchedule, Custom schedule description for when the automation should be run in json format. - schedule
Days List<Integer>Of Weeks - If trigger is
customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc. - schedule
Id Integer - If trigger is
customSchedule, the reusable Schedule used instead of the automation's schedule fields. - schedule
Time StringZone - Time zone for the schedule. If not set, times are interpreted as UTC.
- schedule
Times List<String>Of Days - Times of day to run in HH:MM format (24-hour). For
customSchedule, run at these times on specified days of week. Fordaily, run at these times on the scheduled interval date. - source String
- Source path/glob. See Automation docs for exact description, but this is used to filter for files in the
pathto find files to operate on. Supports globs, except on remote mounts. - sync
Ids List<Integer> - IDs of syncs to run by this Automation. This is the new way to specify syncs, and it is recommended to use this instead of
legacySyncIds. - trigger String
- How this automation is triggered to run.
- trigger
Actions List<String> - If trigger is
action, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy - user
Id Integer - User ID of the Automation's creator.
- user
Ids List<Integer> - IDs of Users for the Automation (i.e. who to Request File from)
- value Object
- A Hash of attributes specific to the automation type.
- version Integer
- Current Automation v2 definition version.
- webhook
Url String - If trigger is
webhook, this is the URL of the webhook to trigger the Automation. - workspace
Id Integer - Workspace ID
- always
Overwrite booleanSize Matching Files - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is
truewe will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unlessoverwriteFilesis also set totrue. - always
Serialize booleanJobs - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is
truewe will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance. - automation string
- Automation type
- definition
Get
Automation Definition - Automation v2 graph definition.
- deleted boolean
- Indicates if the automation has been deleted.
- description string
- Description for the this Automation.
- destination
Replace stringFrom - If set, this string in the destination path will be replaced with the value in
destinationReplaceTo. - destination
Replace stringTo - If set, this string will replace the value
destinationReplaceFromin the destination filename. You can use special patterns here. - destinations string[]
- Destination Paths
- disabled boolean
- If true, this automation will not run.
- exclude
Pattern string - If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
- flatten
Destination booleanStructure - Normally copy and move automations that use globs will implicitly preserve the source folder structure in the destination. If this flag is
true, the source folder structure will be flattened in the destination. This is useful for copying or moving files from multiple folders into a single destination folder. - group
Ids number[] - IDs of Groups for the Automation (i.e. who to Request File from)
- holiday
Region string - Skip the automation if there is a formal, observed holiday for this region.
- human
Readable stringSchedule - If trigger is
customScheduleordailywith times, Human readable schedule description for when the automation should be run. - id number
- Automation ID
- ignore
Locked booleanFolders - If true, the Lock Folders behavior will be disregarded for automated actions.
- import
Urls any - List of URLs to be imported and names to be used.
- inbound
Email stringAddress - If trigger is
email, this is the address that triggers the Automation. - interval string
- If trigger is
daily, this specifies how often to run this automation. One of:day,week,weekEnd,month,monthEnd,quarter,quarterEnd,year,yearEnd - last
Modified stringAt - Time when automation was last modified. Does not change for name or description updates.
- legacy
Folder booleanMatching - If
true, use the legacy behavior for this automation, where it can operate on folders in addition to just files. This behavior no longer works and should not be used. - legacy
Sync number[]Ids - IDs of remote sync folder behaviors to run by this Automation
- name string
- Name for this automation.
- overwrite
Files boolean - If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten on Copy automations if they appear to be the same file size as the newly incoming file. Use the
alwaysOverwriteSizeMatchingFilesoption in conjunction withoverwriteFilesto override this behavior and overwrite files no matter what. - path string
- Path on which this Automation runs. Supports globs, except on remote mounts. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- path
Time stringZone - Timezone to use when rendering timestamps in paths.
- recurring
Day number - If trigger type is
daily, this specifies a day number to run in one of the supported intervals:week,month,quarter,year. - recurring
Days number[] - If trigger type is
daily, this specifies one or more day numbers to run in one of the supported intervals:week,month,quarter,year. - retry
On numberFailure Interval In Minutes - If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
- retry
On numberFailure Number Of Attempts - If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.
- schedule any
- If trigger is
customSchedule, Custom schedule description for when the automation should be run in json format. - schedule
Days number[]Of Weeks - If trigger is
customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc. - schedule
Id number - If trigger is
customSchedule, the reusable Schedule used instead of the automation's schedule fields. - schedule
Time stringZone - Time zone for the schedule. If not set, times are interpreted as UTC.
- schedule
Times string[]Of Days - Times of day to run in HH:MM format (24-hour). For
customSchedule, run at these times on specified days of week. Fordaily, run at these times on the scheduled interval date. - source string
- Source path/glob. See Automation docs for exact description, but this is used to filter for files in the
pathto find files to operate on. Supports globs, except on remote mounts. - sync
Ids number[] - IDs of syncs to run by this Automation. This is the new way to specify syncs, and it is recommended to use this instead of
legacySyncIds. - trigger string
- How this automation is triggered to run.
- trigger
Actions string[] - If trigger is
action, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy - user
Id number - User ID of the Automation's creator.
- user
Ids number[] - IDs of Users for the Automation (i.e. who to Request File from)
- value any
- A Hash of attributes specific to the automation type.
- version number
- Current Automation v2 definition version.
- webhook
Url string - If trigger is
webhook, this is the URL of the webhook to trigger the Automation. - workspace
Id number - Workspace ID
- always_
overwrite_ boolsize_ matching_ files - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is
truewe will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unlessoverwriteFilesis also set totrue. - always_
serialize_ booljobs - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is
truewe will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance. - automation str
- Automation type
- definition
Get
Automation Definition - Automation v2 graph definition.
- deleted bool
- Indicates if the automation has been deleted.
- description str
- Description for the this Automation.
- destination_
replace_ strfrom - If set, this string in the destination path will be replaced with the value in
destinationReplaceTo. - destination_
replace_ strto - If set, this string will replace the value
destinationReplaceFromin the destination filename. You can use special patterns here. - destinations Sequence[str]
- Destination Paths
- disabled bool
- If true, this automation will not run.
- exclude_
pattern str - If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
- flatten_
destination_ boolstructure - Normally copy and move automations that use globs will implicitly preserve the source folder structure in the destination. If this flag is
true, the source folder structure will be flattened in the destination. This is useful for copying or moving files from multiple folders into a single destination folder. - group_
ids Sequence[int] - IDs of Groups for the Automation (i.e. who to Request File from)
- holiday_
region str - Skip the automation if there is a formal, observed holiday for this region.
- human_
readable_ strschedule - If trigger is
customScheduleordailywith times, Human readable schedule description for when the automation should be run. - id int
- Automation ID
- ignore_
locked_ boolfolders - If true, the Lock Folders behavior will be disregarded for automated actions.
- import_
urls Any - List of URLs to be imported and names to be used.
- inbound_
email_ straddress - If trigger is
email, this is the address that triggers the Automation. - interval str
- If trigger is
daily, this specifies how often to run this automation. One of:day,week,weekEnd,month,monthEnd,quarter,quarterEnd,year,yearEnd - last_
modified_ strat - Time when automation was last modified. Does not change for name or description updates.
- legacy_
folder_ boolmatching - If
true, use the legacy behavior for this automation, where it can operate on folders in addition to just files. This behavior no longer works and should not be used. - legacy_
sync_ Sequence[int]ids - IDs of remote sync folder behaviors to run by this Automation
- name str
- Name for this automation.
- overwrite_
files bool - If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten on Copy automations if they appear to be the same file size as the newly incoming file. Use the
alwaysOverwriteSizeMatchingFilesoption in conjunction withoverwriteFilesto override this behavior and overwrite files no matter what. - path str
- Path on which this Automation runs. Supports globs, except on remote mounts. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- path_
time_ strzone - Timezone to use when rendering timestamps in paths.
- recurring_
day int - If trigger type is
daily, this specifies a day number to run in one of the supported intervals:week,month,quarter,year. - recurring_
days Sequence[int] - If trigger type is
daily, this specifies one or more day numbers to run in one of the supported intervals:week,month,quarter,year. - retry_
on_ intfailure_ interval_ in_ minutes - If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
- retry_
on_ intfailure_ number_ of_ attempts - If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.
- schedule Any
- If trigger is
customSchedule, Custom schedule description for when the automation should be run in json format. - schedule_
days_ Sequence[int]of_ weeks - If trigger is
customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc. - schedule_
id int - If trigger is
customSchedule, the reusable Schedule used instead of the automation's schedule fields. - schedule_
time_ strzone - Time zone for the schedule. If not set, times are interpreted as UTC.
- schedule_
times_ Sequence[str]of_ days - Times of day to run in HH:MM format (24-hour). For
customSchedule, run at these times on specified days of week. Fordaily, run at these times on the scheduled interval date. - source str
- Source path/glob. See Automation docs for exact description, but this is used to filter for files in the
pathto find files to operate on. Supports globs, except on remote mounts. - sync_
ids Sequence[int] - IDs of syncs to run by this Automation. This is the new way to specify syncs, and it is recommended to use this instead of
legacySyncIds. - trigger str
- How this automation is triggered to run.
- trigger_
actions Sequence[str] - If trigger is
action, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy - user_
id int - User ID of the Automation's creator.
- user_
ids Sequence[int] - IDs of Users for the Automation (i.e. who to Request File from)
- value Any
- A Hash of attributes specific to the automation type.
- version int
- Current Automation v2 definition version.
- webhook_
url str - If trigger is
webhook, this is the URL of the webhook to trigger the Automation. - workspace_
id int - Workspace ID
- always
Overwrite BooleanSize Matching Files - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is
truewe will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unlessoverwriteFilesis also set totrue. - always
Serialize BooleanJobs - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is
truewe will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance. - automation String
- Automation type
- definition Property Map
- Automation v2 graph definition.
- deleted Boolean
- Indicates if the automation has been deleted.
- description String
- Description for the this Automation.
- destination
Replace StringFrom - If set, this string in the destination path will be replaced with the value in
destinationReplaceTo. - destination
Replace StringTo - If set, this string will replace the value
destinationReplaceFromin the destination filename. You can use special patterns here. - destinations List<String>
- Destination Paths
- disabled Boolean
- If true, this automation will not run.
- exclude
Pattern String - If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
- flatten
Destination BooleanStructure - Normally copy and move automations that use globs will implicitly preserve the source folder structure in the destination. If this flag is
true, the source folder structure will be flattened in the destination. This is useful for copying or moving files from multiple folders into a single destination folder. - group
Ids List<Number> - IDs of Groups for the Automation (i.e. who to Request File from)
- holiday
Region String - Skip the automation if there is a formal, observed holiday for this region.
- human
Readable StringSchedule - If trigger is
customScheduleordailywith times, Human readable schedule description for when the automation should be run. - id Number
- Automation ID
- ignore
Locked BooleanFolders - If true, the Lock Folders behavior will be disregarded for automated actions.
- import
Urls Any - List of URLs to be imported and names to be used.
- inbound
Email StringAddress - If trigger is
email, this is the address that triggers the Automation. - interval String
- If trigger is
daily, this specifies how often to run this automation. One of:day,week,weekEnd,month,monthEnd,quarter,quarterEnd,year,yearEnd - last
Modified StringAt - Time when automation was last modified. Does not change for name or description updates.
- legacy
Folder BooleanMatching - If
true, use the legacy behavior for this automation, where it can operate on folders in addition to just files. This behavior no longer works and should not be used. - legacy
Sync List<Number>Ids - IDs of remote sync folder behaviors to run by this Automation
- name String
- Name for this automation.
- overwrite
Files Boolean - If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten on Copy automations if they appear to be the same file size as the newly incoming file. Use the
alwaysOverwriteSizeMatchingFilesoption in conjunction withoverwriteFilesto override this behavior and overwrite files no matter what. - path String
- Path on which this Automation runs. Supports globs, except on remote mounts. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- path
Time StringZone - Timezone to use when rendering timestamps in paths.
- recurring
Day Number - If trigger type is
daily, this specifies a day number to run in one of the supported intervals:week,month,quarter,year. - recurring
Days List<Number> - If trigger type is
daily, this specifies one or more day numbers to run in one of the supported intervals:week,month,quarter,year. - retry
On NumberFailure Interval In Minutes - If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
- retry
On NumberFailure Number Of Attempts - If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.
- schedule Any
- If trigger is
customSchedule, Custom schedule description for when the automation should be run in json format. - schedule
Days List<Number>Of Weeks - If trigger is
customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc. - schedule
Id Number - If trigger is
customSchedule, the reusable Schedule used instead of the automation's schedule fields. - schedule
Time StringZone - Time zone for the schedule. If not set, times are interpreted as UTC.
- schedule
Times List<String>Of Days - Times of day to run in HH:MM format (24-hour). For
customSchedule, run at these times on specified days of week. Fordaily, run at these times on the scheduled interval date. - source String
- Source path/glob. See Automation docs for exact description, but this is used to filter for files in the
pathto find files to operate on. Supports globs, except on remote mounts. - sync
Ids List<Number> - IDs of syncs to run by this Automation. This is the new way to specify syncs, and it is recommended to use this instead of
legacySyncIds. - trigger String
- How this automation is triggered to run.
- trigger
Actions List<String> - If trigger is
action, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy - user
Id Number - User ID of the Automation's creator.
- user
Ids List<Number> - IDs of Users for the Automation (i.e. who to Request File from)
- value Any
- A Hash of attributes specific to the automation type.
- version Number
- Current Automation v2 definition version.
- webhook
Url String - If trigger is
webhook, this is the URL of the webhook to trigger the Automation. - workspace
Id Number - Workspace ID
Supporting Types
GetAutomationDefinition
- Edges
List<Jschady.
Filescom. Inputs. Get Automation Definition Edge> - Directed connections between nodes.
- Nodes
List<Jschady.
Filescom. Inputs. Get Automation Definition Node> - Flat list of nodes. Every node requires a unique id and a type, accepts the node-specific config fields documented below, and action or control-flow nodes may set return to true to include their output in the Automation result.
- Schema
Version int - Automation definition schema version.
- Edges
[]Get
Automation Definition Edge - Directed connections between nodes.
- Nodes
[]Get
Automation Definition Node - Flat list of nodes. Every node requires a unique id and a type, accepts the node-specific config fields documented below, and action or control-flow nodes may set return to true to include their output in the Automation result.
- Schema
Version int - Automation definition schema version.
- edges list(object)
- Directed connections between nodes.
- nodes list(object)
- Flat list of nodes. Every node requires a unique id and a type, accepts the node-specific config fields documented below, and action or control-flow nodes may set return to true to include their output in the Automation result.
- schema_
version number - Automation definition schema version.
- edges
List<Get
Automation Definition Edge> - Directed connections between nodes.
- nodes
List<Get
Automation Definition Node> - Flat list of nodes. Every node requires a unique id and a type, accepts the node-specific config fields documented below, and action or control-flow nodes may set return to true to include their output in the Automation result.
- schema
Version Integer - Automation definition schema version.
- edges
Get
Automation Definition Edge[] - Directed connections between nodes.
- nodes
Get
Automation Definition Node[] - Flat list of nodes. Every node requires a unique id and a type, accepts the node-specific config fields documented below, and action or control-flow nodes may set return to true to include their output in the Automation result.
- schema
Version number - Automation definition schema version.
- edges
Sequence[Get
Automation Definition Edge] - Directed connections between nodes.
- nodes
Sequence[Get
Automation Definition Node] - Flat list of nodes. Every node requires a unique id and a type, accepts the node-specific config fields documented below, and action or control-flow nodes may set return to true to include their output in the Automation result.
- schema_
version int - Automation definition schema version.
- edges List<Property Map>
- Directed connections between nodes.
- nodes List<Property Map>
- Flat list of nodes. Every node requires a unique id and a type, accepts the node-specific config fields documented below, and action or control-flow nodes may set return to true to include their output in the Automation result.
- schema
Version Number - Automation definition schema version.
GetAutomationDefinitionEdge
GetAutomationDefinitionNode
- Agent
Compute Jschady.Filescom. Inputs. Get Automation Definition Node Agent Compute - Aggregate
Jschady.
Filescom. Inputs. Get Automation Definition Node Aggregate - As2Send
Jschady.
Filescom. Inputs. Get Automation Definition Node As2Send - Copy
File Jschady.Filescom. Inputs. Get Automation Definition Node Copy File - Create
Folder Jschady.Filescom. Inputs. Get Automation Definition Node Create Folder - Delete
File Jschady.Filescom. Inputs. Get Automation Definition Node Delete File - Document
Convert Jschady.Filescom. Inputs. Get Automation Definition Node Document Convert - Extract
Jschady.
Filescom. Inputs. Get Automation Definition Node Extract - Filter
Jschady.
Filescom. Inputs. Get Automation Definition Node Filter - Gpg
Decrypt Jschady.Filescom. Inputs. Get Automation Definition Node Gpg Decrypt - Gpg
Encrypt Jschady.Filescom. Inputs. Get Automation Definition Node Gpg Encrypt - If
Jschady.
Filescom. Inputs. Get Automation Definition Node If - Image
Convert Jschady.Filescom. Inputs. Get Automation Definition Node Image Convert - Import
File Jschady.Filescom. Inputs. Get Automation Definition Node Import File - Join
Jschady.
Filescom. Inputs. Get Automation Definition Node Join - Move
File Jschady.Filescom. Inputs. Get Automation Definition Node Move File - Run
Automation Jschady.Filescom. Inputs. Get Automation Definition Node Run Automation - Run
Sync Jschady.Filescom. Inputs. Get Automation Definition Node Run Sync - Send
Email Jschady.Filescom. Inputs. Get Automation Definition Node Send Email - Set
Metadata Jschady.Filescom. Inputs. Get Automation Definition Node Set Metadata - Switch
Jschady.
Filescom. Inputs. Get Automation Definition Node Switch - Transform
Jschady.
Filescom. Inputs. Get Automation Definition Node Transform - Trigger
Action Jschady.Filescom. Inputs. Get Automation Definition Node Trigger Action - Trigger
Email Jschady.Filescom. Inputs. Get Automation Definition Node Trigger Email - Trigger
Manual Jschady.Filescom. Inputs. Get Automation Definition Node Trigger Manual - Trigger
Scheduled Jschady.Filescom. Inputs. Get Automation Definition Node Trigger Scheduled - Trigger
Webhook Jschady.Filescom. Inputs. Get Automation Definition Node Trigger Webhook - Unzip
Jschady.
Filescom. Inputs. Get Automation Definition Node Unzip - Wait
Jschady.
Filescom. Inputs. Get Automation Definition Node Wait - Zip
Jschady.
Filescom. Inputs. Get Automation Definition Node Zip
- Agent
Compute GetAutomation Definition Node Agent Compute - Aggregate
Get
Automation Definition Node Aggregate - As2Send
Get
Automation Definition Node As2Send - Copy
File GetAutomation Definition Node Copy File - Create
Folder GetAutomation Definition Node Create Folder - Delete
File GetAutomation Definition Node Delete File - Document
Convert GetAutomation Definition Node Document Convert - Extract
Get
Automation Definition Node Extract - Filter
Get
Automation Definition Node Filter - Gpg
Decrypt GetAutomation Definition Node Gpg Decrypt - Gpg
Encrypt GetAutomation Definition Node Gpg Encrypt - If
Get
Automation Definition Node If - Image
Convert GetAutomation Definition Node Image Convert - Import
File GetAutomation Definition Node Import File - Join
Get
Automation Definition Node Join - Move
File GetAutomation Definition Node Move File - Run
Automation GetAutomation Definition Node Run Automation - Run
Sync GetAutomation Definition Node Run Sync - Send
Email GetAutomation Definition Node Send Email - Set
Metadata GetAutomation Definition Node Set Metadata - Switch
Get
Automation Definition Node Switch - Transform
Get
Automation Definition Node Transform - Trigger
Action GetAutomation Definition Node Trigger Action - Trigger
Email GetAutomation Definition Node Trigger Email - Trigger
Manual GetAutomation Definition Node Trigger Manual - Trigger
Scheduled GetAutomation Definition Node Trigger Scheduled - Trigger
Webhook GetAutomation Definition Node Trigger Webhook - Unzip
Get
Automation Definition Node Unzip - Wait
Get
Automation Definition Node Wait - Zip
Get
Automation Definition Node Zip
- agent_
compute object - aggregate object
- as2_
send object - copy_
file object - create_
folder object - delete_
file object - document_
convert object - extract object
- filter object
- gpg_
decrypt object - gpg_
encrypt object - if object
- image_
convert object - import_
file object - join object
- move_
file object - run_
automation object - run_
sync object - send_
email object - set_
metadata object - switch object
- transform object
- trigger_
action object - trigger_
email object - trigger_
manual object - trigger_
scheduled object - trigger_
webhook object - unzip object
- wait object
- zip object
- agent
Compute GetAutomation Definition Node Agent Compute - aggregate
Get
Automation Definition Node Aggregate - as2Send
Get
Automation Definition Node As2Send - copy
File GetAutomation Definition Node Copy File - create
Folder GetAutomation Definition Node Create Folder - delete
File GetAutomation Definition Node Delete File - document
Convert GetAutomation Definition Node Document Convert - extract
Get
Automation Definition Node Extract - filter
Get
Automation Definition Node Filter - gpg
Decrypt GetAutomation Definition Node Gpg Decrypt - gpg
Encrypt GetAutomation Definition Node Gpg Encrypt - if_
Get
Automation Definition Node If - image
Convert GetAutomation Definition Node Image Convert - import
File GetAutomation Definition Node Import File - join
Get
Automation Definition Node Join - move
File GetAutomation Definition Node Move File - run
Automation GetAutomation Definition Node Run Automation - run
Sync GetAutomation Definition Node Run Sync - send
Email GetAutomation Definition Node Send Email - set
Metadata GetAutomation Definition Node Set Metadata - switch_
Get
Automation Definition Node Switch - transform
Get
Automation Definition Node Transform - trigger
Action GetAutomation Definition Node Trigger Action - trigger
Email GetAutomation Definition Node Trigger Email - trigger
Manual GetAutomation Definition Node Trigger Manual - trigger
Scheduled GetAutomation Definition Node Trigger Scheduled - trigger
Webhook GetAutomation Definition Node Trigger Webhook - unzip
Get
Automation Definition Node Unzip - wait_
Get
Automation Definition Node Wait - zip
Get
Automation Definition Node Zip
- agent
Compute GetAutomation Definition Node Agent Compute - aggregate
Get
Automation Definition Node Aggregate - as2Send
Get
Automation Definition Node As2Send - copy
File GetAutomation Definition Node Copy File - create
Folder GetAutomation Definition Node Create Folder - delete
File GetAutomation Definition Node Delete File - document
Convert GetAutomation Definition Node Document Convert - extract
Get
Automation Definition Node Extract - filter
Get
Automation Definition Node Filter - gpg
Decrypt GetAutomation Definition Node Gpg Decrypt - gpg
Encrypt GetAutomation Definition Node Gpg Encrypt - if
Get
Automation Definition Node If - image
Convert GetAutomation Definition Node Image Convert - import
File GetAutomation Definition Node Import File - join
Get
Automation Definition Node Join - move
File GetAutomation Definition Node Move File - run
Automation GetAutomation Definition Node Run Automation - run
Sync GetAutomation Definition Node Run Sync - send
Email GetAutomation Definition Node Send Email - set
Metadata GetAutomation Definition Node Set Metadata - switch
Get
Automation Definition Node Switch - transform
Get
Automation Definition Node Transform - trigger
Action GetAutomation Definition Node Trigger Action - trigger
Email GetAutomation Definition Node Trigger Email - trigger
Manual GetAutomation Definition Node Trigger Manual - trigger
Scheduled GetAutomation Definition Node Trigger Scheduled - trigger
Webhook GetAutomation Definition Node Trigger Webhook - unzip
Get
Automation Definition Node Unzip - wait
Get
Automation Definition Node Wait - zip
Get
Automation Definition Node Zip
- agent_
compute GetAutomation Definition Node Agent Compute - aggregate
Get
Automation Definition Node Aggregate - as2_
send GetAutomation Definition Node As2Send - copy_
file GetAutomation Definition Node Copy File - create_
folder GetAutomation Definition Node Create Folder - delete_
file GetAutomation Definition Node Delete File - document_
convert GetAutomation Definition Node Document Convert - extract
Get
Automation Definition Node Extract - filter
Get
Automation Definition Node Filter - gpg_
decrypt GetAutomation Definition Node Gpg Decrypt - gpg_
encrypt GetAutomation Definition Node Gpg Encrypt - if_
Get
Automation Definition Node If - image_
convert GetAutomation Definition Node Image Convert - import_
file GetAutomation Definition Node Import File - join
Get
Automation Definition Node Join - move_
file GetAutomation Definition Node Move File - run_
automation GetAutomation Definition Node Run Automation - run_
sync GetAutomation Definition Node Run Sync - send_
email GetAutomation Definition Node Send Email - set_
metadata GetAutomation Definition Node Set Metadata - switch
Get
Automation Definition Node Switch - transform
Get
Automation Definition Node Transform - trigger_
action GetAutomation Definition Node Trigger Action - trigger_
email GetAutomation Definition Node Trigger Email - trigger_
manual GetAutomation Definition Node Trigger Manual - trigger_
scheduled GetAutomation Definition Node Trigger Scheduled - trigger_
webhook GetAutomation Definition Node Trigger Webhook - unzip
Get
Automation Definition Node Unzip - wait
Get
Automation Definition Node Wait - zip
Get
Automation Definition Node Zip
- agent
Compute Property Map - aggregate Property Map
- as2Send Property Map
- copy
File Property Map - create
Folder Property Map - delete
File Property Map - document
Convert Property Map - extract Property Map
- filter Property Map
- gpg
Decrypt Property Map - gpg
Encrypt Property Map - if Property Map
- image
Convert Property Map - import
File Property Map - join Property Map
- move
File Property Map - run
Automation Property Map - run
Sync Property Map - send
Email Property Map - set
Metadata Property Map - switch Property Map
- transform Property Map
- trigger
Action Property Map - trigger
Email Property Map - trigger
Manual Property Map - trigger
Scheduled Property Map - trigger
Webhook Property Map - unzip Property Map
- wait Property Map
- zip Property Map
GetAutomationDefinitionNodeAgentCompute
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Agent Compute Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Agent Compute Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Agent Compute Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Agent Compute Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Agent Compute Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeAgentComputeConfig
- Arguments Dictionary<string, string>
- Command string
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Agent Compute Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Remote
Server intId
- Arguments map[string]string
- Command string
- On
Errors []GetAutomation Definition Node Agent Compute Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Remote
Server intId
- arguments map(string)
- command string
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- remote_
server_ numberid
- arguments Map<String,String>
- command String
- on
Errors List<GetAutomation Definition Node Agent Compute Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- remote
Server IntegerId
- arguments {[key: string]: string}
- command string
- on
Errors GetAutomation Definition Node Agent Compute Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- remote
Server numberId
- arguments Mapping[str, str]
- command str
- on_
errors Sequence[GetAutomation Definition Node Agent Compute Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- remote_
server_ intid
- arguments Map<String>
- command String
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- remote
Server NumberId
GetAutomationDefinitionNodeAgentComputeConfigOnError
GetAutomationDefinitionNodeAggregate
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Aggregate Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Aggregate Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Aggregate Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Aggregate Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Aggregate Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeAggregateConfig
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Aggregate Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- On
Errors []GetAutomation Definition Node Aggregate Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- on
Errors List<GetAutomation Definition Node Aggregate Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- on
Errors GetAutomation Definition Node Aggregate Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- on_
errors Sequence[GetAutomation Definition Node Aggregate Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeAggregateConfigOnError
GetAutomationDefinitionNodeAs2Send
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node As2Send Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node As2Send Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node As2Send Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node As2Send Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node As2Send Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeAs2SendConfig
- As2Partner
Id int - As2Station
Id int - As2Subject string
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node As2Send Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- As2Partner
Id int - As2Station
Id int - As2Subject string
- On
Errors []GetAutomation Definition Node As2Send Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- as2_
partner_ numberid - as2_
station_ numberid - as2_
subject string - on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- as2Partner
Id Integer - as2Station
Id Integer - as2Subject String
- on
Errors List<GetAutomation Definition Node As2Send Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- as2Partner
Id number - as2Station
Id number - as2Subject string
- on
Errors GetAutomation Definition Node As2Send Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- as2_
partner_ intid - as2_
station_ intid - as2_
subject str - on_
errors Sequence[GetAutomation Definition Node As2Send Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- as2Partner
Id Number - as2Station
Id Number - as2Subject String
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeAs2SendConfigOnError
GetAutomationDefinitionNodeCopyFile
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Copy File Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Copy File Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Copy File Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Copy File Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Copy File Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeCopyFileConfig
- Always
Overwrite boolSize Matching Files - Destination
Replace stringFrom - Destination
Replace stringTo - Destinations List<string>
- One or more destination path templates.
- Exclude
Pattern string - Flatten
Destination boolStructure - Ignore
Locked boolFolders - On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Copy File Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- Always
Overwrite boolSize Matching Files - Destination
Replace stringFrom - Destination
Replace stringTo - Destinations []string
- One or more destination path templates.
- Exclude
Pattern string - Flatten
Destination boolStructure - Ignore
Locked boolFolders - On
Errors []GetAutomation Definition Node Copy File Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- always_
overwrite_ boolsize_ matching_ files - destination_
replace_ stringfrom - destination_
replace_ stringto - destinations list(string)
- One or more destination path templates.
- exclude_
pattern string - flatten_
destination_ boolstructure - ignore_
locked_ boolfolders - on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- always
Overwrite BooleanSize Matching Files - destination
Replace StringFrom - destination
Replace StringTo - destinations List<String>
- One or more destination path templates.
- exclude
Pattern String - flatten
Destination BooleanStructure - ignore
Locked BooleanFolders - on
Errors List<GetAutomation Definition Node Copy File Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
- always
Overwrite booleanSize Matching Files - destination
Replace stringFrom - destination
Replace stringTo - destinations string[]
- One or more destination path templates.
- exclude
Pattern string - flatten
Destination booleanStructure - ignore
Locked booleanFolders - on
Errors GetAutomation Definition Node Copy File Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files boolean
- always_
overwrite_ boolsize_ matching_ files - destination_
replace_ strfrom - destination_
replace_ strto - destinations Sequence[str]
- One or more destination path templates.
- exclude_
pattern str - flatten_
destination_ boolstructure - ignore_
locked_ boolfolders - on_
errors Sequence[GetAutomation Definition Node Copy File Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- always
Overwrite BooleanSize Matching Files - destination
Replace StringFrom - destination
Replace StringTo - destinations List<String>
- One or more destination path templates.
- exclude
Pattern String - flatten
Destination BooleanStructure - ignore
Locked BooleanFolders - on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
GetAutomationDefinitionNodeCopyFileConfigOnError
GetAutomationDefinitionNodeCreateFolder
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Create Folder Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Create Folder Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Create Folder Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Create Folder Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Create Folder Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeCreateFolderConfig
- Destinations List<string>
- One or more destination path templates.
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Create Folder Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Destinations []string
- One or more destination path templates.
- On
Errors []GetAutomation Definition Node Create Folder Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- destinations list(string)
- One or more destination path templates.
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- destinations List<String>
- One or more destination path templates.
- on
Errors List<GetAutomation Definition Node Create Folder Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- destinations string[]
- One or more destination path templates.
- on
Errors GetAutomation Definition Node Create Folder Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- destinations Sequence[str]
- One or more destination path templates.
- on_
errors Sequence[GetAutomation Definition Node Create Folder Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- destinations List<String>
- One or more destination path templates.
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeCreateFolderConfigOnError
GetAutomationDefinitionNodeDeleteFile
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Delete File Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Delete File Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Delete File Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Delete File Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Delete File Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeDeleteFileConfig
- Exclude
Pattern string - On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Delete File Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Exclude
Pattern string - On
Errors []GetAutomation Definition Node Delete File Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- exclude_
pattern string - on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- exclude
Pattern String - on
Errors List<GetAutomation Definition Node Delete File Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- exclude
Pattern string - on
Errors GetAutomation Definition Node Delete File Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- exclude_
pattern str - on_
errors Sequence[GetAutomation Definition Node Delete File Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- exclude
Pattern String - on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeDeleteFileConfigOnError
GetAutomationDefinitionNodeDocumentConvert
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Document Convert Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Document Convert Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Document Convert Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Document Convert Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Document Convert Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeDocumentConvertConfig
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Document Convert Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool - Target
Format string
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- On
Errors []GetAutomation Definition Node Document Convert Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool - Target
Format string
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool - target_
format string
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors List<GetAutomation Definition Node Document Convert Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean - target
Format String
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors GetAutomation Definition Node Document Convert Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files boolean - target
Format string
- destination str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on_
errors Sequence[GetAutomation Definition Node Document Convert Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool - target_
format str
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean - target
Format String
GetAutomationDefinitionNodeDocumentConvertConfigOnError
GetAutomationDefinitionNodeExtract
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Extract Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Extract Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Extract Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Extract Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Extract Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeExtractConfig
- Content
Mode string - Include
Content bool - Include
Metadata bool - Max
Chars int - Max
Pages int - On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Extract Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Content
Mode string - Include
Content bool - Include
Metadata bool - Max
Chars int - Max
Pages int - On
Errors []GetAutomation Definition Node Extract Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- content_
mode string - include_
content bool - include_
metadata bool - max_
chars number - max_
pages number - on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- content
Mode String - include
Content Boolean - include
Metadata Boolean - max
Chars Integer - max
Pages Integer - on
Errors List<GetAutomation Definition Node Extract Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- content
Mode string - include
Content boolean - include
Metadata boolean - max
Chars number - max
Pages number - on
Errors GetAutomation Definition Node Extract Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- content_
mode str - include_
content bool - include_
metadata bool - max_
chars int - max_
pages int - on_
errors Sequence[GetAutomation Definition Node Extract Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- content
Mode String - include
Content Boolean - include
Metadata Boolean - max
Chars Number - max
Pages Number - on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeExtractConfigOnError
GetAutomationDefinitionNodeFilter
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Filter Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Filter Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Filter Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Filter Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Filter Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeFilterConfig
- Condition string
- A bare Files TransformScript expression, no braces.
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Filter Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Condition string
- A bare Files TransformScript expression, no braces.
- On
Errors []GetAutomation Definition Node Filter Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- condition string
- A bare Files TransformScript expression, no braces.
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- condition String
- A bare Files TransformScript expression, no braces.
- on
Errors List<GetAutomation Definition Node Filter Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- condition string
- A bare Files TransformScript expression, no braces.
- on
Errors GetAutomation Definition Node Filter Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- condition str
- A bare Files TransformScript expression, no braces.
- on_
errors Sequence[GetAutomation Definition Node Filter Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- condition String
- A bare Files TransformScript expression, no braces.
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeFilterConfigOnError
GetAutomationDefinitionNodeGpgDecrypt
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Gpg Decrypt Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Gpg Decrypt Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Gpg Decrypt Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Gpg Decrypt Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Gpg Decrypt Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeGpgDecryptConfig
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Gpg
Key intId - On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Gpg Decrypt Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Gpg
Key intId - On
Errors []GetAutomation Definition Node Gpg Decrypt Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- gpg_
key_ numberid - on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- gpg
Key IntegerId - on
Errors List<GetAutomation Definition Node Gpg Decrypt Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- gpg
Key numberId - on
Errors GetAutomation Definition Node Gpg Decrypt Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files boolean
- destination str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- gpg_
key_ intid - on_
errors Sequence[GetAutomation Definition Node Gpg Decrypt Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- gpg
Key NumberId - on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
GetAutomationDefinitionNodeGpgDecryptConfigOnError
GetAutomationDefinitionNodeGpgEncrypt
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Gpg Encrypt Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Gpg Encrypt Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Gpg Encrypt Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Gpg Encrypt Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Gpg Encrypt Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeGpgEncryptConfig
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Gpg
Key intId - On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Gpg Encrypt Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Gpg
Key intId - On
Errors []GetAutomation Definition Node Gpg Encrypt Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- gpg_
key_ numberid - on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- gpg
Key IntegerId - on
Errors List<GetAutomation Definition Node Gpg Encrypt Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- gpg
Key numberId - on
Errors GetAutomation Definition Node Gpg Encrypt Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files boolean
- destination str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- gpg_
key_ intid - on_
errors Sequence[GetAutomation Definition Node Gpg Encrypt Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- gpg
Key NumberId - on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
GetAutomationDefinitionNodeGpgEncryptConfigOnError
GetAutomationDefinitionNodeIf
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node If Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node If Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node If Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node If Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node If Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeIfConfig
- Condition string
- A bare Files TransformScript expression, no braces.
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node If Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Condition string
- A bare Files TransformScript expression, no braces.
- On
Errors []GetAutomation Definition Node If Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- condition string
- A bare Files TransformScript expression, no braces.
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- condition String
- A bare Files TransformScript expression, no braces.
- on
Errors List<GetAutomation Definition Node If Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- condition string
- A bare Files TransformScript expression, no braces.
- on
Errors GetAutomation Definition Node If Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- condition str
- A bare Files TransformScript expression, no braces.
- on_
errors Sequence[GetAutomation Definition Node If Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- condition String
- A bare Files TransformScript expression, no braces.
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeIfConfigOnError
GetAutomationDefinitionNodeImageConvert
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Image Convert Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Image Convert Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Image Convert Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Image Convert Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Image Convert Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeImageConvertConfig
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Height int
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Image Convert Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool - Target
Format string - Width int
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Height int
- On
Errors []GetAutomation Definition Node Image Convert Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool - Target
Format string - Width int
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- height number
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool - target_
format string - width number
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- height Integer
- on
Errors List<GetAutomation Definition Node Image Convert Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean - target
Format String - width Integer
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- height number
- on
Errors GetAutomation Definition Node Image Convert Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files boolean - target
Format string - width number
- destination str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- height int
- on_
errors Sequence[GetAutomation Definition Node Image Convert Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool - target_
format str - width int
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- height Number
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean - target
Format String - width Number
GetAutomationDefinitionNodeImageConvertConfigOnError
GetAutomationDefinitionNodeImportFile
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Import File Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Import File Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Import File Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Import File Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Import File Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeImportFileConfig
- Content string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Headers Dictionary<string, string>
- Method string
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Import File Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Url string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Content string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Headers map[string]string
- Method string
- On
Errors []GetAutomation Definition Node Import File Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Url string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- content string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- headers map(string)
- method string
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- url string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- content String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- headers Map<String,String>
- method String
- on
Errors List<GetAutomation Definition Node Import File Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- url String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- content string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- headers {[key: string]: string}
- method string
- on
Errors GetAutomation Definition Node Import File Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- url string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- content str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- destination str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- headers Mapping[str, str]
- method str
- on_
errors Sequence[GetAutomation Definition Node Import File Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- url str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- content String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- headers Map<String>
- method String
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- url String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
GetAutomationDefinitionNodeImportFileConfigOnError
GetAutomationDefinitionNodeJoin
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Join Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Join Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Join Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Join Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Join Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeJoinConfig
- Join
Type string - Left
Key string - A bare Files TransformScript expression, no braces.
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Join Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Right
Key string - A bare Files TransformScript expression, no braces.
- Join
Type string - Left
Key string - A bare Files TransformScript expression, no braces.
- On
Errors []GetAutomation Definition Node Join Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Right
Key string - A bare Files TransformScript expression, no braces.
- join_
type string - left_
key string - A bare Files TransformScript expression, no braces.
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- right_
key string - A bare Files TransformScript expression, no braces.
- join
Type String - left
Key String - A bare Files TransformScript expression, no braces.
- on
Errors List<GetAutomation Definition Node Join Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- right
Key String - A bare Files TransformScript expression, no braces.
- join
Type string - left
Key string - A bare Files TransformScript expression, no braces.
- on
Errors GetAutomation Definition Node Join Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- right
Key string - A bare Files TransformScript expression, no braces.
- join_
type str - left_
key str - A bare Files TransformScript expression, no braces.
- on_
errors Sequence[GetAutomation Definition Node Join Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- right_
key str - A bare Files TransformScript expression, no braces.
- join
Type String - left
Key String - A bare Files TransformScript expression, no braces.
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- right
Key String - A bare Files TransformScript expression, no braces.
GetAutomationDefinitionNodeJoinConfigOnError
GetAutomationDefinitionNodeMoveFile
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Move File Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Move File Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Move File Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Move File Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Move File Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeMoveFileConfig
- Destination
Replace stringFrom - Destination
Replace stringTo - Destinations List<string>
- One or more destination path templates.
- Exclude
Pattern string - Flatten
Destination boolStructure - Ignore
Locked boolFolders - On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Move File Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- Destination
Replace stringFrom - Destination
Replace stringTo - Destinations []string
- One or more destination path templates.
- Exclude
Pattern string - Flatten
Destination boolStructure - Ignore
Locked boolFolders - On
Errors []GetAutomation Definition Node Move File Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- destination_
replace_ stringfrom - destination_
replace_ stringto - destinations list(string)
- One or more destination path templates.
- exclude_
pattern string - flatten_
destination_ boolstructure - ignore_
locked_ boolfolders - on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- destination
Replace StringFrom - destination
Replace StringTo - destinations List<String>
- One or more destination path templates.
- exclude
Pattern String - flatten
Destination BooleanStructure - ignore
Locked BooleanFolders - on
Errors List<GetAutomation Definition Node Move File Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
- destination
Replace stringFrom - destination
Replace stringTo - destinations string[]
- One or more destination path templates.
- exclude
Pattern string - flatten
Destination booleanStructure - ignore
Locked booleanFolders - on
Errors GetAutomation Definition Node Move File Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files boolean
- destination_
replace_ strfrom - destination_
replace_ strto - destinations Sequence[str]
- One or more destination path templates.
- exclude_
pattern str - flatten_
destination_ boolstructure - ignore_
locked_ boolfolders - on_
errors Sequence[GetAutomation Definition Node Move File Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- destination
Replace StringFrom - destination
Replace StringTo - destinations List<String>
- One or more destination path templates.
- exclude
Pattern String - flatten
Destination BooleanStructure - ignore
Locked BooleanFolders - on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
GetAutomationDefinitionNodeMoveFileConfigOnError
GetAutomationDefinitionNodeRunAutomation
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Run Automation Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Run Automation Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Run Automation Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Run Automation Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Run Automation Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeRunAutomationConfig
- Automation
Id int - Automation
Version int - On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Run Automation Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Automation
Id int - Automation
Version int - On
Errors []GetAutomation Definition Node Run Automation Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- automation_
id number - automation_
version number - on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- automation
Id Integer - automation
Version Integer - on
Errors List<GetAutomation Definition Node Run Automation Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- automation
Id number - automation
Version number - on
Errors GetAutomation Definition Node Run Automation Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- automation_
id int - automation_
version int - on_
errors Sequence[GetAutomation Definition Node Run Automation Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- automation
Id Number - automation
Version Number - on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeRunAutomationConfigOnError
GetAutomationDefinitionNodeRunSync
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Run Sync Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Run Sync Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Run Sync Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Run Sync Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Run Sync Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeRunSyncConfig
- Legacy
Sync List<int>Ids - On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Run Sync Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Sync
Ids List<int>
- Legacy
Sync []intIds - On
Errors []GetAutomation Definition Node Run Sync Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Sync
Ids []int
- legacy_
sync_ list(number)ids - on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- sync_
ids list(number)
- legacy
Sync List<Integer>Ids - on
Errors List<GetAutomation Definition Node Run Sync Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- sync
Ids List<Integer>
- legacy
Sync number[]Ids - on
Errors GetAutomation Definition Node Run Sync Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- sync
Ids number[]
- legacy_
sync_ Sequence[int]ids - on_
errors Sequence[GetAutomation Definition Node Run Sync Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- sync_
ids Sequence[int]
- legacy
Sync List<Number>Ids - on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- sync
Ids List<Number>
GetAutomationDefinitionNodeRunSyncConfigOnError
GetAutomationDefinitionNodeSendEmail
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Send Email Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Send Email Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Send Email Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Send Email Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Send Email Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeSendEmailConfig
- Attachments List<string>
- Bccs List<string>
- Body string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Ccs List<string>
- From string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Send Email Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Subject string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Tos List<string>
- Attachments []string
- Bccs []string
- Body string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Ccs []string
- From string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- On
Errors []GetAutomation Definition Node Send Email Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Subject string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Tos []string
- attachments list(string)
- bccs list(string)
- body string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- ccs list(string)
- from string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- subject string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- tos list(string)
- attachments List<String>
- bccs List<String>
- body String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- ccs List<String>
- from String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors List<GetAutomation Definition Node Send Email Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- subject String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- tos List<String>
- attachments string[]
- bccs string[]
- body string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- ccs string[]
- from string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors GetAutomation Definition Node Send Email Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- subject string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- tos string[]
- attachments Sequence[str]
- bccs Sequence[str]
- body str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- ccs Sequence[str]
- from_ str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on_
errors Sequence[GetAutomation Definition Node Send Email Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- subject str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- tos Sequence[str]
- attachments List<String>
- bccs List<String>
- body String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- ccs List<String>
- from String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- subject String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- tos List<String>
GetAutomationDefinitionNodeSendEmailConfigOnError
GetAutomationDefinitionNodeSetMetadata
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Set Metadata Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Set Metadata Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Set Metadata Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Set Metadata Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Set Metadata Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeSetMetadataConfig
- Metadata Dictionary<string, string>
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Set Metadata Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Metadata map[string]string
- On
Errors []GetAutomation Definition Node Set Metadata Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- metadata map(string)
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- metadata Map<String,String>
- on
Errors List<GetAutomation Definition Node Set Metadata Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- metadata {[key: string]: string}
- on
Errors GetAutomation Definition Node Set Metadata Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- metadata Mapping[str, str]
- on_
errors Sequence[GetAutomation Definition Node Set Metadata Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- metadata Map<String>
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeSetMetadataConfigOnError
GetAutomationDefinitionNodeSwitch
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Switch Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Switch Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Switch Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Switch Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Switch Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeSwitchConfig
- Cases
List<Jschady.
Filescom. Inputs. Get Automation Definition Node Switch Config Case> - Switch cases. Each item contains a unique output name and the condition that sends items to it.
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Switch Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Cases
[]Get
Automation Definition Node Switch Config Case - Switch cases. Each item contains a unique output name and the condition that sends items to it.
- On
Errors []GetAutomation Definition Node Switch Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- cases list(object)
- Switch cases. Each item contains a unique output name and the condition that sends items to it.
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- cases
List<Get
Automation Definition Node Switch Config Case> - Switch cases. Each item contains a unique output name and the condition that sends items to it.
- on
Errors List<GetAutomation Definition Node Switch Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- cases
Get
Automation Definition Node Switch Config Case[] - Switch cases. Each item contains a unique output name and the condition that sends items to it.
- on
Errors GetAutomation Definition Node Switch Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- cases
Sequence[Get
Automation Definition Node Switch Config Case] - Switch cases. Each item contains a unique output name and the condition that sends items to it.
- on_
errors Sequence[GetAutomation Definition Node Switch Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- cases List<Property Map>
- Switch cases. Each item contains a unique output name and the condition that sends items to it.
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeSwitchConfigCase
GetAutomationDefinitionNodeSwitchConfigOnError
GetAutomationDefinitionNodeTransform
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Transform Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Transform Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Transform Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Transform Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Transform Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeTransformConfig
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Fts string
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Transform Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- Fts string
- On
Errors []GetAutomation Definition Node Transform Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- fts string
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- fts String
- on
Errors List<GetAutomation Definition Node Transform Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- fts string
- on
Errors GetAutomation Definition Node Transform Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- destination str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- fts str
- on_
errors Sequence[GetAutomation Definition Node Transform Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- fts String
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeTransformConfigOnError
GetAutomationDefinitionNodeTriggerAction
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Trigger Action Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Config
Get
Automation Definition Node Trigger Action Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Action Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Action Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Action Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
GetAutomationDefinitionNodeTriggerActionConfig
- Exclude
Pattern string - Path string
- Path
Time stringZone - Source string
- Trigger
Actions List<string>
- Exclude
Pattern string - Path string
- Path
Time stringZone - Source string
- Trigger
Actions []string
- exclude_
pattern string - path string
- path_
time_ stringzone - source string
- trigger_
actions list(string)
- exclude
Pattern String - path String
- path
Time StringZone - source String
- trigger
Actions List<String>
- exclude
Pattern string - path string
- path
Time stringZone - source string
- trigger
Actions string[]
- exclude_
pattern str - path str
- path_
time_ strzone - source str
- trigger_
actions Sequence[str]
- exclude
Pattern String - path String
- path
Time StringZone - source String
- trigger
Actions List<String>
GetAutomationDefinitionNodeTriggerEmail
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Trigger Email Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Config
Get
Automation Definition Node Trigger Email Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Email Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Email Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Email Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
GetAutomationDefinitionNodeTriggerEmailConfig
- Allowed
Senders List<string> - Exclude
Pattern string - Limit int
- Path
Time stringZone - Save
Body bool - Source string
- Allowed
Senders []string - Exclude
Pattern string - Limit int
- Path
Time stringZone - Save
Body bool - Source string
- allowed_
senders list(string) - exclude_
pattern string - limit number
- path_
time_ stringzone - save_
body bool - source string
- allowed
Senders List<String> - exclude
Pattern String - limit Integer
- path
Time StringZone - save
Body Boolean - source String
- allowed
Senders string[] - exclude
Pattern string - limit number
- path
Time stringZone - save
Body boolean - source string
- allowed_
senders Sequence[str] - exclude_
pattern str - limit int
- path_
time_ strzone - save_
body bool - source str
- allowed
Senders List<String> - exclude
Pattern String - limit Number
- path
Time StringZone - save
Body Boolean - source String
GetAutomationDefinitionNodeTriggerManual
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Trigger Manual Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Config
Get
Automation Definition Node Trigger Manual Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Manual Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Manual Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Manual Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
GetAutomationDefinitionNodeTriggerManualConfig
- Exclude
Pattern string - Limit int
- Path string
- Path
Time stringZone - Source string
- Exclude
Pattern string - Limit int
- Path string
- Path
Time stringZone - Source string
- exclude_
pattern string - limit number
- path string
- path_
time_ stringzone - source string
- exclude
Pattern String - limit Integer
- path String
- path
Time StringZone - source String
- exclude
Pattern string - limit number
- path string
- path
Time stringZone - source string
- exclude_
pattern str - limit int
- path str
- path_
time_ strzone - source str
- exclude
Pattern String - limit Number
- path String
- path
Time StringZone - source String
GetAutomationDefinitionNodeTriggerScheduled
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Trigger Scheduled Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Config
Get
Automation Definition Node Trigger Scheduled Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Scheduled Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Scheduled Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Scheduled Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
GetAutomationDefinitionNodeTriggerScheduledConfig
- Exclude
Pattern string - Holiday
Region string - Interval string
- Limit int
- Path string
- Path
Time stringZone - Recurring
Day int - Recurring
Days List<int> - Schedule
Days List<int>Of Weeks - Schedule
Id int - Schedule
Time stringZone - Schedule
Times List<string>Of Days - Source string
- Exclude
Pattern string - Holiday
Region string - Interval string
- Limit int
- Path string
- Path
Time stringZone - Recurring
Day int - Recurring
Days []int - Schedule
Days []intOf Weeks - Schedule
Id int - Schedule
Time stringZone - Schedule
Times []stringOf Days - Source string
- exclude_
pattern string - holiday_
region string - interval string
- limit number
- path string
- path_
time_ stringzone - recurring_
day number - recurring_
days list(number) - schedule_
days_ list(number)of_ weeks - schedule_
id number - schedule_
time_ stringzone - schedule_
times_ list(string)of_ days - source string
- exclude
Pattern String - holiday
Region String - interval String
- limit Integer
- path String
- path
Time StringZone - recurring
Day Integer - recurring
Days List<Integer> - schedule
Days List<Integer>Of Weeks - schedule
Id Integer - schedule
Time StringZone - schedule
Times List<String>Of Days - source String
- exclude
Pattern string - holiday
Region string - interval string
- limit number
- path string
- path
Time stringZone - recurring
Day number - recurring
Days number[] - schedule
Days number[]Of Weeks - schedule
Id number - schedule
Time stringZone - schedule
Times string[]Of Days - source string
- exclude_
pattern str - holiday_
region str - interval str
- limit int
- path str
- path_
time_ strzone - recurring_
day int - recurring_
days Sequence[int] - schedule_
days_ Sequence[int]of_ weeks - schedule_
id int - schedule_
time_ strzone - schedule_
times_ Sequence[str]of_ days - source str
- exclude
Pattern String - holiday
Region String - interval String
- limit Number
- path String
- path
Time StringZone - recurring
Day Number - recurring
Days List<Number> - schedule
Days List<Number>Of Weeks - schedule
Id Number - schedule
Time StringZone - schedule
Times List<String>Of Days - source String
GetAutomationDefinitionNodeTriggerWebhook
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Trigger Webhook Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Config
Get
Automation Definition Node Trigger Webhook Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Webhook Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Webhook Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- config
Get
Automation Definition Node Trigger Webhook Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
GetAutomationDefinitionNodeTriggerWebhookConfig
- Exclude
Pattern string - Limit int
- Path string
- Path
Time stringZone - Source string
- Exclude
Pattern string - Limit int
- Path string
- Path
Time stringZone - Source string
- exclude_
pattern string - limit number
- path string
- path_
time_ stringzone - source string
- exclude
Pattern String - limit Integer
- path String
- path
Time StringZone - source String
- exclude
Pattern string - limit number
- path string
- path
Time stringZone - source string
- exclude_
pattern str - limit int
- path str
- path_
time_ strzone - source str
- exclude
Pattern String - limit Number
- path String
- path
Time StringZone - source String
GetAutomationDefinitionNodeUnzip
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Unzip Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Unzip Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Unzip Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Unzip Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Unzip Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeUnzipConfig
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Unzip Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- On
Errors []GetAutomation Definition Node Unzip Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors List<GetAutomation Definition Node Unzip Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors GetAutomation Definition Node Unzip Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files boolean
- destination str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on_
errors Sequence[GetAutomation Definition Node Unzip Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
GetAutomationDefinitionNodeUnzipConfigOnError
GetAutomationDefinitionNodeWait
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Wait Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Wait Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Wait Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Wait Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Wait Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeWaitConfig
- Delay
Seconds int - On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Wait Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Delay
Seconds int - On
Errors []GetAutomation Definition Node Wait Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- delay_
seconds number - on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- delay
Seconds Integer - on
Errors List<GetAutomation Definition Node Wait Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- delay
Seconds number - on
Errors GetAutomation Definition Node Wait Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- delay_
seconds int - on_
errors Sequence[GetAutomation Definition Node Wait Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- delay
Seconds Number - on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
GetAutomationDefinitionNodeWaitConfigOnError
GetAutomationDefinitionNodeZip
- Config
Jschady.
Filescom. Inputs. Get Automation Definition Node Zip Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- Config
Get
Automation Definition Node Zip Config - Configuration fields for this node type.
- Id string
- Unique node ID within the graph.
- Return bool
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Zip Config - Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return_ Boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Zip Config - Configuration fields for this node type.
- id string
- Unique node ID within the graph.
- return boolean
- Whether this node's output is included in the Automation result.
- config
Get
Automation Definition Node Zip Config - Configuration fields for this node type.
- id str
- Unique node ID within the graph.
- return_ bool
- Whether this node's output is included in the Automation result.
- config Property Map
- Configuration fields for this node type.
- id String
- Unique node ID within the graph.
- return Boolean
- Whether this node's output is included in the Automation result.
GetAutomationDefinitionNodeZipConfig
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- On
Errors List<Jschady.Filescom. Inputs. Get Automation Definition Node Zip Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- Destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- On
Errors []GetAutomation Definition Node Zip Config On Error - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- Overwrite
Files bool
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on_
errors list(object) - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors List<GetAutomation Definition Node Zip Config On Error> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
- destination string
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors GetAutomation Definition Node Zip Config On Error[] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files boolean
- destination str
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on_
errors Sequence[GetAutomation Definition Node Zip Config On Error] - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite_
files bool
- destination String
- A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
- on
Errors List<Property Map> - Error handlers. Each item selects an error pattern and whether to continue or propagate it.
- overwrite
Files Boolean
GetAutomationDefinitionNodeZipConfigOnError
Package Details
- Repository
- filescom jschady/pulumi-filescom
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
filescomTerraform Provider.
published on Thursday, Aug 20, 2026 by jschady