1. Registry
  2. Packages
  3. Files.com
  4. API Docs
  5. getAutomation
Viewing docs for Files.com v0.1.1
published on Thursday, Aug 20, 2026 by jschady
filescom logo
Viewing docs for Files.com v0.1.1
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 by scheduleId or its own custom schedule fields for daysOfWeek (0-based) and timesOfDay. A time zone may be specified via timeZone in Rails TimeZone name format.

    • daily : The automation will run in a picked interval. You can specify recurringDay or recurringDays to 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: daily

    • Interval: quarterEnd

    • Path: 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 either get or post (case insensitive). Defaults to get.

    • 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 dictionary
    data "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:

    AlwaysOverwriteSizeMatchingFiles bool
    Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is true we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless overwriteFiles is also set to true.
    AlwaysSerializeJobs bool
    Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is true we 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.GetAutomationDefinition
    Automation v2 graph definition.
    Deleted bool
    Indicates if the automation has been deleted.
    Description string
    Description for the this Automation.
    DestinationReplaceFrom string
    If set, this string in the destination path will be replaced with the value in destinationReplaceTo.
    DestinationReplaceTo string
    If set, this string will replace the value destinationReplaceFrom in the destination filename. You can use special patterns here.
    Destinations List<string>
    Destination Paths
    Disabled bool
    If true, this automation will not run.
    ExcludePattern string
    If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
    FlattenDestinationStructure bool
    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.
    GroupIds List<int>
    IDs of Groups for the Automation (i.e. who to Request File from)
    HolidayRegion string
    Skip the automation if there is a formal, observed holiday for this region.
    HumanReadableSchedule string
    If trigger is customSchedule or daily with times, Human readable schedule description for when the automation should be run.
    Id int
    Automation ID
    IgnoreLockedFolders bool
    If true, the Lock Folders behavior will be disregarded for automated actions.
    ImportUrls object
    List of URLs to be imported and names to be used.
    InboundEmailAddress string
    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
    LastModifiedAt string
    Time when automation was last modified. Does not change for name or description updates.
    LegacyFolderMatching bool
    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.
    LegacySyncIds List<int>
    IDs of remote sync folder behaviors to run by this Automation
    Name string
    Name for this automation.
    OverwriteFiles 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 alwaysOverwriteSizeMatchingFiles option in conjunction with overwriteFiles to 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.
    PathTimeZone string
    Timezone to use when rendering timestamps in paths.
    RecurringDay int
    If trigger type is daily, this specifies a day number to run in one of the supported intervals: week, month, quarter, year.
    RecurringDays 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.
    RetryOnFailureIntervalInMinutes int
    If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
    RetryOnFailureNumberOfAttempts int
    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.
    ScheduleDaysOfWeeks List<int>
    If trigger is customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc.
    ScheduleId int
    If trigger is customSchedule, the reusable Schedule used instead of the automation's schedule fields.
    ScheduleTimeZone string
    Time zone for the schedule. If not set, times are interpreted as UTC.
    ScheduleTimesOfDays List<string>
    Times of day to run in HH:MM format (24-hour). For customSchedule, run at these times on specified days of week. For daily, 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 path to find files to operate on. Supports globs, except on remote mounts.
    SyncIds 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.
    TriggerActions 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
    UserId int
    User ID of the Automation's creator.
    UserIds 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.
    WebhookUrl string
    If trigger is webhook, this is the URL of the webhook to trigger the Automation.
    WorkspaceId int
    Workspace ID
    AlwaysOverwriteSizeMatchingFiles bool
    Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is true we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless overwriteFiles is also set to true.
    AlwaysSerializeJobs bool
    Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is true we 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 GetAutomationDefinition
    Automation v2 graph definition.
    Deleted bool
    Indicates if the automation has been deleted.
    Description string
    Description for the this Automation.
    DestinationReplaceFrom string
    If set, this string in the destination path will be replaced with the value in destinationReplaceTo.
    DestinationReplaceTo string
    If set, this string will replace the value destinationReplaceFrom in the destination filename. You can use special patterns here.
    Destinations []string
    Destination Paths
    Disabled bool
    If true, this automation will not run.
    ExcludePattern string
    If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
    FlattenDestinationStructure bool
    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.
    GroupIds []int
    IDs of Groups for the Automation (i.e. who to Request File from)
    HolidayRegion string
    Skip the automation if there is a formal, observed holiday for this region.
    HumanReadableSchedule string
    If trigger is customSchedule or daily with times, Human readable schedule description for when the automation should be run.
    Id int
    Automation ID
    IgnoreLockedFolders bool
    If true, the Lock Folders behavior will be disregarded for automated actions.
    ImportUrls interface{}
    List of URLs to be imported and names to be used.
    InboundEmailAddress string
    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
    LastModifiedAt string
    Time when automation was last modified. Does not change for name or description updates.
    LegacyFolderMatching bool
    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.
    LegacySyncIds []int
    IDs of remote sync folder behaviors to run by this Automation
    Name string
    Name for this automation.
    OverwriteFiles 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 alwaysOverwriteSizeMatchingFiles option in conjunction with overwriteFiles to 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.
    PathTimeZone string
    Timezone to use when rendering timestamps in paths.
    RecurringDay int
    If trigger type is daily, this specifies a day number to run in one of the supported intervals: week, month, quarter, year.
    RecurringDays []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.
    RetryOnFailureIntervalInMinutes int
    If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
    RetryOnFailureNumberOfAttempts int
    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.
    ScheduleDaysOfWeeks []int
    If trigger is customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc.
    ScheduleId int
    If trigger is customSchedule, the reusable Schedule used instead of the automation's schedule fields.
    ScheduleTimeZone string
    Time zone for the schedule. If not set, times are interpreted as UTC.
    ScheduleTimesOfDays []string
    Times of day to run in HH:MM format (24-hour). For customSchedule, run at these times on specified days of week. For daily, 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 path to find files to operate on. Supports globs, except on remote mounts.
    SyncIds []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.
    TriggerActions []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
    UserId int
    User ID of the Automation's creator.
    UserIds []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.
    WebhookUrl string
    If trigger is webhook, this is the URL of the webhook to trigger the Automation.
    WorkspaceId int
    Workspace ID
    always_overwrite_size_matching_files bool
    Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is true we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless overwriteFiles is also set to true.
    always_serialize_jobs bool
    Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is true we 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_from string
    If set, this string in the destination path will be replaced with the value in destinationReplaceTo.
    destination_replace_to string
    If set, this string will replace the value destinationReplaceFrom in 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_structure bool
    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_schedule string
    If trigger is customSchedule or daily with times, Human readable schedule description for when the automation should be run.
    id number
    Automation ID
    ignore_locked_folders bool
    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_address string
    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_at string
    Time when automation was last modified. Does not change for name or description updates.
    legacy_folder_matching bool
    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_ids list(number)
    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 alwaysOverwriteSizeMatchingFiles option in conjunction with overwriteFiles to 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_zone string
    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_failure_interval_in_minutes number
    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_failure_number_of_attempts number
    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_of_weeks list(number)
    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_zone string
    Time zone for the schedule. If not set, times are interpreted as UTC.
    schedule_times_of_days list(string)
    Times of day to run in HH:MM format (24-hour). For customSchedule, run at these times on specified days of week. For daily, 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 path to 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
    alwaysOverwriteSizeMatchingFiles Boolean
    Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is true we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless overwriteFiles is also set to true.
    alwaysSerializeJobs Boolean
    Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is true we 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 GetAutomationDefinition
    Automation v2 graph definition.
    deleted Boolean
    Indicates if the automation has been deleted.
    description String
    Description for the this Automation.
    destinationReplaceFrom String
    If set, this string in the destination path will be replaced with the value in destinationReplaceTo.
    destinationReplaceTo String
    If set, this string will replace the value destinationReplaceFrom in the destination filename. You can use special patterns here.
    destinations List<String>
    Destination Paths
    disabled Boolean
    If true, this automation will not run.
    excludePattern String
    If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
    flattenDestinationStructure Boolean
    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.
    groupIds List<Integer>
    IDs of Groups for the Automation (i.e. who to Request File from)
    holidayRegion String
    Skip the automation if there is a formal, observed holiday for this region.
    humanReadableSchedule String
    If trigger is customSchedule or daily with times, Human readable schedule description for when the automation should be run.
    id Integer
    Automation ID
    ignoreLockedFolders Boolean
    If true, the Lock Folders behavior will be disregarded for automated actions.
    importUrls Object
    List of URLs to be imported and names to be used.
    inboundEmailAddress String
    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
    lastModifiedAt String
    Time when automation was last modified. Does not change for name or description updates.
    legacyFolderMatching Boolean
    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.
    legacySyncIds List<Integer>
    IDs of remote sync folder behaviors to run by this Automation
    name String
    Name for this automation.
    overwriteFiles 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 alwaysOverwriteSizeMatchingFiles option in conjunction with overwriteFiles to 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.
    pathTimeZone String
    Timezone to use when rendering timestamps in paths.
    recurringDay Integer
    If trigger type is daily, this specifies a day number to run in one of the supported intervals: week, month, quarter, year.
    recurringDays 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.
    retryOnFailureIntervalInMinutes Integer
    If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
    retryOnFailureNumberOfAttempts Integer
    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.
    scheduleDaysOfWeeks List<Integer>
    If trigger is customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc.
    scheduleId Integer
    If trigger is customSchedule, the reusable Schedule used instead of the automation's schedule fields.
    scheduleTimeZone String
    Time zone for the schedule. If not set, times are interpreted as UTC.
    scheduleTimesOfDays List<String>
    Times of day to run in HH:MM format (24-hour). For customSchedule, run at these times on specified days of week. For daily, 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 path to find files to operate on. Supports globs, except on remote mounts.
    syncIds 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.
    triggerActions 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
    userId Integer
    User ID of the Automation's creator.
    userIds 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.
    webhookUrl String
    If trigger is webhook, this is the URL of the webhook to trigger the Automation.
    workspaceId Integer
    Workspace ID
    alwaysOverwriteSizeMatchingFiles boolean
    Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is true we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless overwriteFiles is also set to true.
    alwaysSerializeJobs boolean
    Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is true we 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 GetAutomationDefinition
    Automation v2 graph definition.
    deleted boolean
    Indicates if the automation has been deleted.
    description string
    Description for the this Automation.
    destinationReplaceFrom string
    If set, this string in the destination path will be replaced with the value in destinationReplaceTo.
    destinationReplaceTo string
    If set, this string will replace the value destinationReplaceFrom in the destination filename. You can use special patterns here.
    destinations string[]
    Destination Paths
    disabled boolean
    If true, this automation will not run.
    excludePattern string
    If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
    flattenDestinationStructure boolean
    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.
    groupIds number[]
    IDs of Groups for the Automation (i.e. who to Request File from)
    holidayRegion string
    Skip the automation if there is a formal, observed holiday for this region.
    humanReadableSchedule string
    If trigger is customSchedule or daily with times, Human readable schedule description for when the automation should be run.
    id number
    Automation ID
    ignoreLockedFolders boolean
    If true, the Lock Folders behavior will be disregarded for automated actions.
    importUrls any
    List of URLs to be imported and names to be used.
    inboundEmailAddress string
    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
    lastModifiedAt string
    Time when automation was last modified. Does not change for name or description updates.
    legacyFolderMatching boolean
    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.
    legacySyncIds number[]
    IDs of remote sync folder behaviors to run by this Automation
    name string
    Name for this automation.
    overwriteFiles 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 alwaysOverwriteSizeMatchingFiles option in conjunction with overwriteFiles to 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.
    pathTimeZone string
    Timezone to use when rendering timestamps in paths.
    recurringDay number
    If trigger type is daily, this specifies a day number to run in one of the supported intervals: week, month, quarter, year.
    recurringDays 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.
    retryOnFailureIntervalInMinutes number
    If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
    retryOnFailureNumberOfAttempts number
    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.
    scheduleDaysOfWeeks number[]
    If trigger is customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc.
    scheduleId number
    If trigger is customSchedule, the reusable Schedule used instead of the automation's schedule fields.
    scheduleTimeZone string
    Time zone for the schedule. If not set, times are interpreted as UTC.
    scheduleTimesOfDays string[]
    Times of day to run in HH:MM format (24-hour). For customSchedule, run at these times on specified days of week. For daily, 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 path to find files to operate on. Supports globs, except on remote mounts.
    syncIds 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.
    triggerActions 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
    userId number
    User ID of the Automation's creator.
    userIds 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.
    webhookUrl string
    If trigger is webhook, this is the URL of the webhook to trigger the Automation.
    workspaceId number
    Workspace ID
    always_overwrite_size_matching_files bool
    Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is true we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless overwriteFiles is also set to true.
    always_serialize_jobs bool
    Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is true we 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 GetAutomationDefinition
    Automation v2 graph definition.
    deleted bool
    Indicates if the automation has been deleted.
    description str
    Description for the this Automation.
    destination_replace_from str
    If set, this string in the destination path will be replaced with the value in destinationReplaceTo.
    destination_replace_to str
    If set, this string will replace the value destinationReplaceFrom in 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_structure bool
    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_schedule str
    If trigger is customSchedule or daily with times, Human readable schedule description for when the automation should be run.
    id int
    Automation ID
    ignore_locked_folders bool
    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_address str
    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_at str
    Time when automation was last modified. Does not change for name or description updates.
    legacy_folder_matching bool
    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_ids Sequence[int]
    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 alwaysOverwriteSizeMatchingFiles option in conjunction with overwriteFiles to 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_zone str
    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_failure_interval_in_minutes int
    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_failure_number_of_attempts int
    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_of_weeks Sequence[int]
    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_zone str
    Time zone for the schedule. If not set, times are interpreted as UTC.
    schedule_times_of_days Sequence[str]
    Times of day to run in HH:MM format (24-hour). For customSchedule, run at these times on specified days of week. For daily, 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 path to 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
    alwaysOverwriteSizeMatchingFiles Boolean
    Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is true we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless overwriteFiles is also set to true.
    alwaysSerializeJobs Boolean
    Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is true we 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.
    destinationReplaceFrom String
    If set, this string in the destination path will be replaced with the value in destinationReplaceTo.
    destinationReplaceTo String
    If set, this string will replace the value destinationReplaceFrom in the destination filename. You can use special patterns here.
    destinations List<String>
    Destination Paths
    disabled Boolean
    If true, this automation will not run.
    excludePattern String
    If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
    flattenDestinationStructure Boolean
    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.
    groupIds List<Number>
    IDs of Groups for the Automation (i.e. who to Request File from)
    holidayRegion String
    Skip the automation if there is a formal, observed holiday for this region.
    humanReadableSchedule String
    If trigger is customSchedule or daily with times, Human readable schedule description for when the automation should be run.
    id Number
    Automation ID
    ignoreLockedFolders Boolean
    If true, the Lock Folders behavior will be disregarded for automated actions.
    importUrls Any
    List of URLs to be imported and names to be used.
    inboundEmailAddress String
    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
    lastModifiedAt String
    Time when automation was last modified. Does not change for name or description updates.
    legacyFolderMatching Boolean
    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.
    legacySyncIds List<Number>
    IDs of remote sync folder behaviors to run by this Automation
    name String
    Name for this automation.
    overwriteFiles 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 alwaysOverwriteSizeMatchingFiles option in conjunction with overwriteFiles to 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.
    pathTimeZone String
    Timezone to use when rendering timestamps in paths.
    recurringDay Number
    If trigger type is daily, this specifies a day number to run in one of the supported intervals: week, month, quarter, year.
    recurringDays 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.
    retryOnFailureIntervalInMinutes Number
    If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
    retryOnFailureNumberOfAttempts Number
    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.
    scheduleDaysOfWeeks List<Number>
    If trigger is customSchedule, Custom schedule description for when the automation should be run. 0 is Sunday, 1 is Monday, etc.
    scheduleId Number
    If trigger is customSchedule, the reusable Schedule used instead of the automation's schedule fields.
    scheduleTimeZone String
    Time zone for the schedule. If not set, times are interpreted as UTC.
    scheduleTimesOfDays List<String>
    Times of day to run in HH:MM format (24-hour). For customSchedule, run at these times on specified days of week. For daily, 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 path to find files to operate on. Supports globs, except on remote mounts.
    syncIds 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.
    triggerActions 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
    userId Number
    User ID of the Automation's creator.
    userIds 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.
    webhookUrl String
    If trigger is webhook, this is the URL of the webhook to trigger the Automation.
    workspaceId Number
    Workspace ID

    Supporting Types

    GetAutomationDefinition

    Edges List<Jschady.Filescom.Inputs.GetAutomationDefinitionEdge>
    Directed connections between nodes.
    Nodes List<Jschady.Filescom.Inputs.GetAutomationDefinitionNode>
    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.
    SchemaVersion int
    Automation definition schema version.
    Edges []GetAutomationDefinitionEdge
    Directed connections between nodes.
    Nodes []GetAutomationDefinitionNode
    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.
    SchemaVersion 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<GetAutomationDefinitionEdge>
    Directed connections between nodes.
    nodes List<GetAutomationDefinitionNode>
    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.
    schemaVersion Integer
    Automation definition schema version.
    edges GetAutomationDefinitionEdge[]
    Directed connections between nodes.
    nodes GetAutomationDefinitionNode[]
    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.
    schemaVersion number
    Automation definition schema version.
    edges Sequence[GetAutomationDefinitionEdge]
    Directed connections between nodes.
    nodes Sequence[GetAutomationDefinitionNode]
    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.
    schemaVersion Number
    Automation definition schema version.

    GetAutomationDefinitionEdge

    From string
    Source node ID.
    Input string
    Named destination input. Omit for the main input.
    Output string
    Named source output. Omit for the main output.
    To string
    Destination node ID.
    From string
    Source node ID.
    Input string
    Named destination input. Omit for the main input.
    Output string
    Named source output. Omit for the main output.
    To string
    Destination node ID.
    from string
    Source node ID.
    input string
    Named destination input. Omit for the main input.
    output string
    Named source output. Omit for the main output.
    to string
    Destination node ID.
    from String
    Source node ID.
    input String
    Named destination input. Omit for the main input.
    output String
    Named source output. Omit for the main output.
    to String
    Destination node ID.
    from string
    Source node ID.
    input string
    Named destination input. Omit for the main input.
    output string
    Named source output. Omit for the main output.
    to string
    Destination node ID.
    from_ str
    Source node ID.
    input str
    Named destination input. Omit for the main input.
    output str
    Named source output. Omit for the main output.
    to str
    Destination node ID.
    from String
    Source node ID.
    input String
    Named destination input. Omit for the main input.
    output String
    Named source output. Omit for the main output.
    to String
    Destination node ID.

    GetAutomationDefinitionNode

    AgentCompute Jschady.Filescom.Inputs.GetAutomationDefinitionNodeAgentCompute
    Aggregate Jschady.Filescom.Inputs.GetAutomationDefinitionNodeAggregate
    As2Send Jschady.Filescom.Inputs.GetAutomationDefinitionNodeAs2Send
    CopyFile Jschady.Filescom.Inputs.GetAutomationDefinitionNodeCopyFile
    CreateFolder Jschady.Filescom.Inputs.GetAutomationDefinitionNodeCreateFolder
    DeleteFile Jschady.Filescom.Inputs.GetAutomationDefinitionNodeDeleteFile
    DocumentConvert Jschady.Filescom.Inputs.GetAutomationDefinitionNodeDocumentConvert
    Extract Jschady.Filescom.Inputs.GetAutomationDefinitionNodeExtract
    Filter Jschady.Filescom.Inputs.GetAutomationDefinitionNodeFilter
    GpgDecrypt Jschady.Filescom.Inputs.GetAutomationDefinitionNodeGpgDecrypt
    GpgEncrypt Jschady.Filescom.Inputs.GetAutomationDefinitionNodeGpgEncrypt
    If Jschady.Filescom.Inputs.GetAutomationDefinitionNodeIf
    ImageConvert Jschady.Filescom.Inputs.GetAutomationDefinitionNodeImageConvert
    ImportFile Jschady.Filescom.Inputs.GetAutomationDefinitionNodeImportFile
    Join Jschady.Filescom.Inputs.GetAutomationDefinitionNodeJoin
    MoveFile Jschady.Filescom.Inputs.GetAutomationDefinitionNodeMoveFile
    RunAutomation Jschady.Filescom.Inputs.GetAutomationDefinitionNodeRunAutomation
    RunSync Jschady.Filescom.Inputs.GetAutomationDefinitionNodeRunSync
    SendEmail Jschady.Filescom.Inputs.GetAutomationDefinitionNodeSendEmail
    SetMetadata Jschady.Filescom.Inputs.GetAutomationDefinitionNodeSetMetadata
    Switch Jschady.Filescom.Inputs.GetAutomationDefinitionNodeSwitch
    Transform Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTransform
    TriggerAction Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTriggerAction
    TriggerEmail Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTriggerEmail
    TriggerManual Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTriggerManual
    TriggerScheduled Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTriggerScheduled
    TriggerWebhook Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTriggerWebhook
    Unzip Jschady.Filescom.Inputs.GetAutomationDefinitionNodeUnzip
    Wait Jschady.Filescom.Inputs.GetAutomationDefinitionNodeWait
    Zip Jschady.Filescom.Inputs.GetAutomationDefinitionNodeZip
    AgentCompute GetAutomationDefinitionNodeAgentCompute
    Aggregate GetAutomationDefinitionNodeAggregate
    As2Send GetAutomationDefinitionNodeAs2Send
    CopyFile GetAutomationDefinitionNodeCopyFile
    CreateFolder GetAutomationDefinitionNodeCreateFolder
    DeleteFile GetAutomationDefinitionNodeDeleteFile
    DocumentConvert GetAutomationDefinitionNodeDocumentConvert
    Extract GetAutomationDefinitionNodeExtract
    Filter GetAutomationDefinitionNodeFilter
    GpgDecrypt GetAutomationDefinitionNodeGpgDecrypt
    GpgEncrypt GetAutomationDefinitionNodeGpgEncrypt
    If GetAutomationDefinitionNodeIf
    ImageConvert GetAutomationDefinitionNodeImageConvert
    ImportFile GetAutomationDefinitionNodeImportFile
    Join GetAutomationDefinitionNodeJoin
    MoveFile GetAutomationDefinitionNodeMoveFile
    RunAutomation GetAutomationDefinitionNodeRunAutomation
    RunSync GetAutomationDefinitionNodeRunSync
    SendEmail GetAutomationDefinitionNodeSendEmail
    SetMetadata GetAutomationDefinitionNodeSetMetadata
    Switch GetAutomationDefinitionNodeSwitch
    Transform GetAutomationDefinitionNodeTransform
    TriggerAction GetAutomationDefinitionNodeTriggerAction
    TriggerEmail GetAutomationDefinitionNodeTriggerEmail
    TriggerManual GetAutomationDefinitionNodeTriggerManual
    TriggerScheduled GetAutomationDefinitionNodeTriggerScheduled
    TriggerWebhook GetAutomationDefinitionNodeTriggerWebhook
    Unzip GetAutomationDefinitionNodeUnzip
    Wait GetAutomationDefinitionNodeWait
    Zip GetAutomationDefinitionNodeZip
    agentCompute GetAutomationDefinitionNodeAgentCompute
    aggregate GetAutomationDefinitionNodeAggregate
    as2Send GetAutomationDefinitionNodeAs2Send
    copyFile GetAutomationDefinitionNodeCopyFile
    createFolder GetAutomationDefinitionNodeCreateFolder
    deleteFile GetAutomationDefinitionNodeDeleteFile
    documentConvert GetAutomationDefinitionNodeDocumentConvert
    extract GetAutomationDefinitionNodeExtract
    filter GetAutomationDefinitionNodeFilter
    gpgDecrypt GetAutomationDefinitionNodeGpgDecrypt
    gpgEncrypt GetAutomationDefinitionNodeGpgEncrypt
    if_ GetAutomationDefinitionNodeIf
    imageConvert GetAutomationDefinitionNodeImageConvert
    importFile GetAutomationDefinitionNodeImportFile
    join GetAutomationDefinitionNodeJoin
    moveFile GetAutomationDefinitionNodeMoveFile
    runAutomation GetAutomationDefinitionNodeRunAutomation
    runSync GetAutomationDefinitionNodeRunSync
    sendEmail GetAutomationDefinitionNodeSendEmail
    setMetadata GetAutomationDefinitionNodeSetMetadata
    switch_ GetAutomationDefinitionNodeSwitch
    transform GetAutomationDefinitionNodeTransform
    triggerAction GetAutomationDefinitionNodeTriggerAction
    triggerEmail GetAutomationDefinitionNodeTriggerEmail
    triggerManual GetAutomationDefinitionNodeTriggerManual
    triggerScheduled GetAutomationDefinitionNodeTriggerScheduled
    triggerWebhook GetAutomationDefinitionNodeTriggerWebhook
    unzip GetAutomationDefinitionNodeUnzip
    wait_ GetAutomationDefinitionNodeWait
    zip GetAutomationDefinitionNodeZip
    agentCompute GetAutomationDefinitionNodeAgentCompute
    aggregate GetAutomationDefinitionNodeAggregate
    as2Send GetAutomationDefinitionNodeAs2Send
    copyFile GetAutomationDefinitionNodeCopyFile
    createFolder GetAutomationDefinitionNodeCreateFolder
    deleteFile GetAutomationDefinitionNodeDeleteFile
    documentConvert GetAutomationDefinitionNodeDocumentConvert
    extract GetAutomationDefinitionNodeExtract
    filter GetAutomationDefinitionNodeFilter
    gpgDecrypt GetAutomationDefinitionNodeGpgDecrypt
    gpgEncrypt GetAutomationDefinitionNodeGpgEncrypt
    if GetAutomationDefinitionNodeIf
    imageConvert GetAutomationDefinitionNodeImageConvert
    importFile GetAutomationDefinitionNodeImportFile
    join GetAutomationDefinitionNodeJoin
    moveFile GetAutomationDefinitionNodeMoveFile
    runAutomation GetAutomationDefinitionNodeRunAutomation
    runSync GetAutomationDefinitionNodeRunSync
    sendEmail GetAutomationDefinitionNodeSendEmail
    setMetadata GetAutomationDefinitionNodeSetMetadata
    switch GetAutomationDefinitionNodeSwitch
    transform GetAutomationDefinitionNodeTransform
    triggerAction GetAutomationDefinitionNodeTriggerAction
    triggerEmail GetAutomationDefinitionNodeTriggerEmail
    triggerManual GetAutomationDefinitionNodeTriggerManual
    triggerScheduled GetAutomationDefinitionNodeTriggerScheduled
    triggerWebhook GetAutomationDefinitionNodeTriggerWebhook
    unzip GetAutomationDefinitionNodeUnzip
    wait GetAutomationDefinitionNodeWait
    zip GetAutomationDefinitionNodeZip
    agent_compute GetAutomationDefinitionNodeAgentCompute
    aggregate GetAutomationDefinitionNodeAggregate
    as2_send GetAutomationDefinitionNodeAs2Send
    copy_file GetAutomationDefinitionNodeCopyFile
    create_folder GetAutomationDefinitionNodeCreateFolder
    delete_file GetAutomationDefinitionNodeDeleteFile
    document_convert GetAutomationDefinitionNodeDocumentConvert
    extract GetAutomationDefinitionNodeExtract
    filter GetAutomationDefinitionNodeFilter
    gpg_decrypt GetAutomationDefinitionNodeGpgDecrypt
    gpg_encrypt GetAutomationDefinitionNodeGpgEncrypt
    if_ GetAutomationDefinitionNodeIf
    image_convert GetAutomationDefinitionNodeImageConvert
    import_file GetAutomationDefinitionNodeImportFile
    join GetAutomationDefinitionNodeJoin
    move_file GetAutomationDefinitionNodeMoveFile
    run_automation GetAutomationDefinitionNodeRunAutomation
    run_sync GetAutomationDefinitionNodeRunSync
    send_email GetAutomationDefinitionNodeSendEmail
    set_metadata GetAutomationDefinitionNodeSetMetadata
    switch GetAutomationDefinitionNodeSwitch
    transform GetAutomationDefinitionNodeTransform
    trigger_action GetAutomationDefinitionNodeTriggerAction
    trigger_email GetAutomationDefinitionNodeTriggerEmail
    trigger_manual GetAutomationDefinitionNodeTriggerManual
    trigger_scheduled GetAutomationDefinitionNodeTriggerScheduled
    trigger_webhook GetAutomationDefinitionNodeTriggerWebhook
    unzip GetAutomationDefinitionNodeUnzip
    wait GetAutomationDefinitionNodeWait
    zip GetAutomationDefinitionNodeZip

    GetAutomationDefinitionNodeAgentCompute

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeAgentComputeConfig
    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 GetAutomationDefinitionNodeAgentComputeConfig
    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 object
    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 GetAutomationDefinitionNodeAgentComputeConfig
    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 GetAutomationDefinitionNodeAgentComputeConfig
    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 GetAutomationDefinitionNodeAgentComputeConfig
    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
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeAgentComputeConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    RemoteServerId int
    Arguments map[string]string
    Command string
    OnErrors []GetAutomationDefinitionNodeAgentComputeConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    RemoteServerId int
    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_id number
    arguments Map<String,String>
    command String
    onErrors List<GetAutomationDefinitionNodeAgentComputeConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    remoteServerId Integer
    arguments {[key: string]: string}
    command string
    onErrors GetAutomationDefinitionNodeAgentComputeConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    remoteServerId number
    arguments Mapping[str, str]
    command str
    on_errors Sequence[GetAutomationDefinitionNodeAgentComputeConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    remote_server_id int
    arguments Map<String>
    command String
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    remoteServerId Number

    GetAutomationDefinitionNodeAgentComputeConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeAggregate

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeAggregateConfig
    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 GetAutomationDefinitionNodeAggregateConfig
    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 object
    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 GetAutomationDefinitionNodeAggregateConfig
    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 GetAutomationDefinitionNodeAggregateConfig
    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 GetAutomationDefinitionNodeAggregateConfig
    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

    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeAggregateConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OnErrors []GetAutomationDefinitionNodeAggregateConfigOnError
    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.
    onErrors List<GetAutomationDefinitionNodeAggregateConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    onErrors GetAutomationDefinitionNodeAggregateConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    on_errors Sequence[GetAutomationDefinitionNodeAggregateConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeAggregateConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeAs2Send

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeAs2SendConfig
    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 GetAutomationDefinitionNodeAs2SendConfig
    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 object
    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 GetAutomationDefinitionNodeAs2SendConfig
    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 GetAutomationDefinitionNodeAs2SendConfig
    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 GetAutomationDefinitionNodeAs2SendConfig
    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

    As2PartnerId int
    As2StationId int
    As2Subject string
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeAs2SendConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    As2PartnerId int
    As2StationId int
    As2Subject string
    OnErrors []GetAutomationDefinitionNodeAs2SendConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    as2_partner_id number
    as2_station_id number
    as2_subject string
    on_errors list(object)
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    as2PartnerId Integer
    as2StationId Integer
    as2Subject String
    onErrors List<GetAutomationDefinitionNodeAs2SendConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    as2PartnerId number
    as2StationId number
    as2Subject string
    onErrors GetAutomationDefinitionNodeAs2SendConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    as2_partner_id int
    as2_station_id int
    as2_subject str
    on_errors Sequence[GetAutomationDefinitionNodeAs2SendConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    as2PartnerId Number
    as2StationId Number
    as2Subject String
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeAs2SendConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeCopyFile

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeCopyFileConfig
    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 GetAutomationDefinitionNodeCopyFileConfig
    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 object
    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 GetAutomationDefinitionNodeCopyFileConfig
    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 GetAutomationDefinitionNodeCopyFileConfig
    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 GetAutomationDefinitionNodeCopyFileConfig
    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

    AlwaysOverwriteSizeMatchingFiles bool
    DestinationReplaceFrom string
    DestinationReplaceTo string
    Destinations List<string>
    One or more destination path templates.
    ExcludePattern string
    FlattenDestinationStructure bool
    IgnoreLockedFolders bool
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeCopyFileConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    AlwaysOverwriteSizeMatchingFiles bool
    DestinationReplaceFrom string
    DestinationReplaceTo string
    Destinations []string
    One or more destination path templates.
    ExcludePattern string
    FlattenDestinationStructure bool
    IgnoreLockedFolders bool
    OnErrors []GetAutomationDefinitionNodeCopyFileConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    always_overwrite_size_matching_files bool
    destination_replace_from string
    destination_replace_to string
    destinations list(string)
    One or more destination path templates.
    exclude_pattern string
    flatten_destination_structure bool
    ignore_locked_folders bool
    on_errors list(object)
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwrite_files bool
    alwaysOverwriteSizeMatchingFiles Boolean
    destinationReplaceFrom String
    destinationReplaceTo String
    destinations List<String>
    One or more destination path templates.
    excludePattern String
    flattenDestinationStructure Boolean
    ignoreLockedFolders Boolean
    onErrors List<GetAutomationDefinitionNodeCopyFileConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean
    alwaysOverwriteSizeMatchingFiles boolean
    destinationReplaceFrom string
    destinationReplaceTo string
    destinations string[]
    One or more destination path templates.
    excludePattern string
    flattenDestinationStructure boolean
    ignoreLockedFolders boolean
    onErrors GetAutomationDefinitionNodeCopyFileConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles boolean
    always_overwrite_size_matching_files bool
    destination_replace_from str
    destination_replace_to str
    destinations Sequence[str]
    One or more destination path templates.
    exclude_pattern str
    flatten_destination_structure bool
    ignore_locked_folders bool
    on_errors Sequence[GetAutomationDefinitionNodeCopyFileConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwrite_files bool
    alwaysOverwriteSizeMatchingFiles Boolean
    destinationReplaceFrom String
    destinationReplaceTo String
    destinations List<String>
    One or more destination path templates.
    excludePattern String
    flattenDestinationStructure Boolean
    ignoreLockedFolders Boolean
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean

    GetAutomationDefinitionNodeCopyFileConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeCreateFolder

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeCreateFolderConfig
    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 GetAutomationDefinitionNodeCreateFolderConfig
    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 object
    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 GetAutomationDefinitionNodeCreateFolderConfig
    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 GetAutomationDefinitionNodeCreateFolderConfig
    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 GetAutomationDefinitionNodeCreateFolderConfig
    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.
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeCreateFolderConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    Destinations []string
    One or more destination path templates.
    OnErrors []GetAutomationDefinitionNodeCreateFolderConfigOnError
    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.
    onErrors List<GetAutomationDefinitionNodeCreateFolderConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    destinations string[]
    One or more destination path templates.
    onErrors GetAutomationDefinitionNodeCreateFolderConfigOnError[]
    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[GetAutomationDefinitionNodeCreateFolderConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    destinations List<String>
    One or more destination path templates.
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeCreateFolderConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeDeleteFile

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeDeleteFileConfig
    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 GetAutomationDefinitionNodeDeleteFileConfig
    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 object
    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 GetAutomationDefinitionNodeDeleteFileConfig
    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 GetAutomationDefinitionNodeDeleteFileConfig
    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 GetAutomationDefinitionNodeDeleteFileConfig
    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

    ExcludePattern string
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeDeleteFileConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    ExcludePattern string
    OnErrors []GetAutomationDefinitionNodeDeleteFileConfigOnError
    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.
    excludePattern String
    onErrors List<GetAutomationDefinitionNodeDeleteFileConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    excludePattern string
    onErrors GetAutomationDefinitionNodeDeleteFileConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    exclude_pattern str
    on_errors Sequence[GetAutomationDefinitionNodeDeleteFileConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    excludePattern String
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeDeleteFileConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeDocumentConvert

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeDocumentConvertConfig
    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 GetAutomationDefinitionNodeDocumentConvertConfig
    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 object
    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 GetAutomationDefinitionNodeDocumentConvertConfig
    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 GetAutomationDefinitionNodeDocumentConvertConfig
    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 GetAutomationDefinitionNodeDocumentConvertConfig
    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.
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeDocumentConvertConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    TargetFormat string
    Destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    OnErrors []GetAutomationDefinitionNodeDocumentConvertConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    TargetFormat 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.
    onErrors List<GetAutomationDefinitionNodeDocumentConvertConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean
    targetFormat String
    destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    onErrors GetAutomationDefinitionNodeDocumentConvertConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles boolean
    targetFormat string
    destination str
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    on_errors Sequence[GetAutomationDefinitionNodeDocumentConvertConfigOnError]
    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.
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean
    targetFormat String

    GetAutomationDefinitionNodeDocumentConvertConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeExtract

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeExtractConfig
    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 GetAutomationDefinitionNodeExtractConfig
    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 object
    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 GetAutomationDefinitionNodeExtractConfig
    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 GetAutomationDefinitionNodeExtractConfig
    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 GetAutomationDefinitionNodeExtractConfig
    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

    ContentMode string
    IncludeContent bool
    IncludeMetadata bool
    MaxChars int
    MaxPages int
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeExtractConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    ContentMode string
    IncludeContent bool
    IncludeMetadata bool
    MaxChars int
    MaxPages int
    OnErrors []GetAutomationDefinitionNodeExtractConfigOnError
    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.
    contentMode String
    includeContent Boolean
    includeMetadata Boolean
    maxChars Integer
    maxPages Integer
    onErrors List<GetAutomationDefinitionNodeExtractConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    contentMode string
    includeContent boolean
    includeMetadata boolean
    maxChars number
    maxPages number
    onErrors GetAutomationDefinitionNodeExtractConfigOnError[]
    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[GetAutomationDefinitionNodeExtractConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    contentMode String
    includeContent Boolean
    includeMetadata Boolean
    maxChars Number
    maxPages Number
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeExtractConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeFilter

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeFilterConfig
    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 GetAutomationDefinitionNodeFilterConfig
    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 object
    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 GetAutomationDefinitionNodeFilterConfig
    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 GetAutomationDefinitionNodeFilterConfig
    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 GetAutomationDefinitionNodeFilterConfig
    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.
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeFilterConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    Condition string
    A bare Files TransformScript expression, no braces.
    OnErrors []GetAutomationDefinitionNodeFilterConfigOnError
    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.
    onErrors List<GetAutomationDefinitionNodeFilterConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    condition string
    A bare Files TransformScript expression, no braces.
    onErrors GetAutomationDefinitionNodeFilterConfigOnError[]
    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[GetAutomationDefinitionNodeFilterConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    condition String
    A bare Files TransformScript expression, no braces.
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeFilterConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeGpgDecrypt

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeGpgDecryptConfig
    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 GetAutomationDefinitionNodeGpgDecryptConfig
    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 object
    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 GetAutomationDefinitionNodeGpgDecryptConfig
    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 GetAutomationDefinitionNodeGpgDecryptConfig
    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 GetAutomationDefinitionNodeGpgDecryptConfig
    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.
    GpgKeyId int
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeGpgDecryptConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    Destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    GpgKeyId int
    OnErrors []GetAutomationDefinitionNodeGpgDecryptConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    gpg_key_id number
    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.
    gpgKeyId Integer
    onErrors List<GetAutomationDefinitionNodeGpgDecryptConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean
    destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    gpgKeyId number
    onErrors GetAutomationDefinitionNodeGpgDecryptConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles boolean
    destination str
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    gpg_key_id int
    on_errors Sequence[GetAutomationDefinitionNodeGpgDecryptConfigOnError]
    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.
    gpgKeyId Number
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean

    GetAutomationDefinitionNodeGpgDecryptConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeGpgEncrypt

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeGpgEncryptConfig
    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 GetAutomationDefinitionNodeGpgEncryptConfig
    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 object
    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 GetAutomationDefinitionNodeGpgEncryptConfig
    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 GetAutomationDefinitionNodeGpgEncryptConfig
    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 GetAutomationDefinitionNodeGpgEncryptConfig
    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.
    GpgKeyId int
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeGpgEncryptConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    Destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    GpgKeyId int
    OnErrors []GetAutomationDefinitionNodeGpgEncryptConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    gpg_key_id number
    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.
    gpgKeyId Integer
    onErrors List<GetAutomationDefinitionNodeGpgEncryptConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean
    destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    gpgKeyId number
    onErrors GetAutomationDefinitionNodeGpgEncryptConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles boolean
    destination str
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    gpg_key_id int
    on_errors Sequence[GetAutomationDefinitionNodeGpgEncryptConfigOnError]
    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.
    gpgKeyId Number
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean

    GetAutomationDefinitionNodeGpgEncryptConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeIf

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeIfConfig
    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 GetAutomationDefinitionNodeIfConfig
    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 object
    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 GetAutomationDefinitionNodeIfConfig
    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 GetAutomationDefinitionNodeIfConfig
    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 GetAutomationDefinitionNodeIfConfig
    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.
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeIfConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    Condition string
    A bare Files TransformScript expression, no braces.
    OnErrors []GetAutomationDefinitionNodeIfConfigOnError
    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.
    onErrors List<GetAutomationDefinitionNodeIfConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    condition string
    A bare Files TransformScript expression, no braces.
    onErrors GetAutomationDefinitionNodeIfConfigOnError[]
    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[GetAutomationDefinitionNodeIfConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    condition String
    A bare Files TransformScript expression, no braces.
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeIfConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeImageConvert

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeImageConvertConfig
    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 GetAutomationDefinitionNodeImageConvertConfig
    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 object
    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 GetAutomationDefinitionNodeImageConvertConfig
    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 GetAutomationDefinitionNodeImageConvertConfig
    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 GetAutomationDefinitionNodeImageConvertConfig
    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
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeImageConvertConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    TargetFormat string
    Width int
    Destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    Height int
    OnErrors []GetAutomationDefinitionNodeImageConvertConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    TargetFormat 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
    onErrors List<GetAutomationDefinitionNodeImageConvertConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean
    targetFormat String
    width Integer
    destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    height number
    onErrors GetAutomationDefinitionNodeImageConvertConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles boolean
    targetFormat string
    width number
    destination str
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    height int
    on_errors Sequence[GetAutomationDefinitionNodeImageConvertConfigOnError]
    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
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean
    targetFormat String
    width Number

    GetAutomationDefinitionNodeImageConvertConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeImportFile

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeImportFileConfig
    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 GetAutomationDefinitionNodeImportFileConfig
    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 object
    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 GetAutomationDefinitionNodeImportFileConfig
    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 GetAutomationDefinitionNodeImportFileConfig
    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 GetAutomationDefinitionNodeImportFileConfig
    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
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeImportFileConfigOnError>
    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
    OnErrors []GetAutomationDefinitionNodeImportFileConfigOnError
    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
    onErrors List<GetAutomationDefinitionNodeImportFileConfigOnError>
    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
    onErrors GetAutomationDefinitionNodeImportFileConfigOnError[]
    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[GetAutomationDefinitionNodeImportFileConfigOnError]
    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
    onErrors 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

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeJoin

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeJoinConfig
    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 GetAutomationDefinitionNodeJoinConfig
    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 object
    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 GetAutomationDefinitionNodeJoinConfig
    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 GetAutomationDefinitionNodeJoinConfig
    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 GetAutomationDefinitionNodeJoinConfig
    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

    JoinType string
    LeftKey string
    A bare Files TransformScript expression, no braces.
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeJoinConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    RightKey string
    A bare Files TransformScript expression, no braces.
    JoinType string
    LeftKey string
    A bare Files TransformScript expression, no braces.
    OnErrors []GetAutomationDefinitionNodeJoinConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    RightKey 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.
    joinType String
    leftKey String
    A bare Files TransformScript expression, no braces.
    onErrors List<GetAutomationDefinitionNodeJoinConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    rightKey String
    A bare Files TransformScript expression, no braces.
    joinType string
    leftKey string
    A bare Files TransformScript expression, no braces.
    onErrors GetAutomationDefinitionNodeJoinConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    rightKey string
    A bare Files TransformScript expression, no braces.
    join_type str
    left_key str
    A bare Files TransformScript expression, no braces.
    on_errors Sequence[GetAutomationDefinitionNodeJoinConfigOnError]
    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.
    joinType String
    leftKey String
    A bare Files TransformScript expression, no braces.
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    rightKey String
    A bare Files TransformScript expression, no braces.

    GetAutomationDefinitionNodeJoinConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeMoveFile

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeMoveFileConfig
    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 GetAutomationDefinitionNodeMoveFileConfig
    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 object
    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 GetAutomationDefinitionNodeMoveFileConfig
    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 GetAutomationDefinitionNodeMoveFileConfig
    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 GetAutomationDefinitionNodeMoveFileConfig
    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

    DestinationReplaceFrom string
    DestinationReplaceTo string
    Destinations List<string>
    One or more destination path templates.
    ExcludePattern string
    FlattenDestinationStructure bool
    IgnoreLockedFolders bool
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeMoveFileConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    DestinationReplaceFrom string
    DestinationReplaceTo string
    Destinations []string
    One or more destination path templates.
    ExcludePattern string
    FlattenDestinationStructure bool
    IgnoreLockedFolders bool
    OnErrors []GetAutomationDefinitionNodeMoveFileConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    destination_replace_from string
    destination_replace_to string
    destinations list(string)
    One or more destination path templates.
    exclude_pattern string
    flatten_destination_structure bool
    ignore_locked_folders bool
    on_errors list(object)
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwrite_files bool
    destinationReplaceFrom String
    destinationReplaceTo String
    destinations List<String>
    One or more destination path templates.
    excludePattern String
    flattenDestinationStructure Boolean
    ignoreLockedFolders Boolean
    onErrors List<GetAutomationDefinitionNodeMoveFileConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean
    destinationReplaceFrom string
    destinationReplaceTo string
    destinations string[]
    One or more destination path templates.
    excludePattern string
    flattenDestinationStructure boolean
    ignoreLockedFolders boolean
    onErrors GetAutomationDefinitionNodeMoveFileConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles boolean
    destination_replace_from str
    destination_replace_to str
    destinations Sequence[str]
    One or more destination path templates.
    exclude_pattern str
    flatten_destination_structure bool
    ignore_locked_folders bool
    on_errors Sequence[GetAutomationDefinitionNodeMoveFileConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwrite_files bool
    destinationReplaceFrom String
    destinationReplaceTo String
    destinations List<String>
    One or more destination path templates.
    excludePattern String
    flattenDestinationStructure Boolean
    ignoreLockedFolders Boolean
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean

    GetAutomationDefinitionNodeMoveFileConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeRunAutomation

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeRunAutomationConfig
    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 GetAutomationDefinitionNodeRunAutomationConfig
    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 object
    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 GetAutomationDefinitionNodeRunAutomationConfig
    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 GetAutomationDefinitionNodeRunAutomationConfig
    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 GetAutomationDefinitionNodeRunAutomationConfig
    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

    AutomationId int
    AutomationVersion int
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeRunAutomationConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    AutomationId int
    AutomationVersion int
    OnErrors []GetAutomationDefinitionNodeRunAutomationConfigOnError
    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.
    automationId Integer
    automationVersion Integer
    onErrors List<GetAutomationDefinitionNodeRunAutomationConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    automationId number
    automationVersion number
    onErrors GetAutomationDefinitionNodeRunAutomationConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    automation_id int
    automation_version int
    on_errors Sequence[GetAutomationDefinitionNodeRunAutomationConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    automationId Number
    automationVersion Number
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeRunAutomationConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeRunSync

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeRunSyncConfig
    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 GetAutomationDefinitionNodeRunSyncConfig
    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 object
    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 GetAutomationDefinitionNodeRunSyncConfig
    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 GetAutomationDefinitionNodeRunSyncConfig
    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 GetAutomationDefinitionNodeRunSyncConfig
    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

    LegacySyncIds List<int>
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeRunSyncConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    SyncIds List<int>
    LegacySyncIds []int
    OnErrors []GetAutomationDefinitionNodeRunSyncConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    SyncIds []int
    legacy_sync_ids list(number)
    on_errors list(object)
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    sync_ids list(number)
    legacySyncIds List<Integer>
    onErrors List<GetAutomationDefinitionNodeRunSyncConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    syncIds List<Integer>
    legacySyncIds number[]
    onErrors GetAutomationDefinitionNodeRunSyncConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    syncIds number[]
    legacy_sync_ids Sequence[int]
    on_errors Sequence[GetAutomationDefinitionNodeRunSyncConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    sync_ids Sequence[int]
    legacySyncIds List<Number>
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    syncIds List<Number>

    GetAutomationDefinitionNodeRunSyncConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeSendEmail

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeSendEmailConfig
    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 GetAutomationDefinitionNodeSendEmailConfig
    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 object
    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 GetAutomationDefinitionNodeSendEmailConfig
    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 GetAutomationDefinitionNodeSendEmailConfig
    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 GetAutomationDefinitionNodeSendEmailConfig
    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.
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeSendEmailConfigOnError>
    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.
    OnErrors []GetAutomationDefinitionNodeSendEmailConfigOnError
    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.
    onErrors List<GetAutomationDefinitionNodeSendEmailConfigOnError>
    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.
    onErrors GetAutomationDefinitionNodeSendEmailConfigOnError[]
    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[GetAutomationDefinitionNodeSendEmailConfigOnError]
    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.
    onErrors 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

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeSetMetadata

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeSetMetadataConfig
    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 GetAutomationDefinitionNodeSetMetadataConfig
    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 object
    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 GetAutomationDefinitionNodeSetMetadataConfig
    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 GetAutomationDefinitionNodeSetMetadataConfig
    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 GetAutomationDefinitionNodeSetMetadataConfig
    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>
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeSetMetadataConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    Metadata map[string]string
    OnErrors []GetAutomationDefinitionNodeSetMetadataConfigOnError
    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>
    onErrors List<GetAutomationDefinitionNodeSetMetadataConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    metadata {[key: string]: string}
    onErrors GetAutomationDefinitionNodeSetMetadataConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    metadata Mapping[str, str]
    on_errors Sequence[GetAutomationDefinitionNodeSetMetadataConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    metadata Map<String>
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeSetMetadataConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeSwitch

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeSwitchConfig
    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 GetAutomationDefinitionNodeSwitchConfig
    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 object
    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 GetAutomationDefinitionNodeSwitchConfig
    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 GetAutomationDefinitionNodeSwitchConfig
    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 GetAutomationDefinitionNodeSwitchConfig
    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.GetAutomationDefinitionNodeSwitchConfigCase>
    Switch cases. Each item contains a unique output name and the condition that sends items to it.
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeSwitchConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    Cases []GetAutomationDefinitionNodeSwitchConfigCase
    Switch cases. Each item contains a unique output name and the condition that sends items to it.
    OnErrors []GetAutomationDefinitionNodeSwitchConfigOnError
    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<GetAutomationDefinitionNodeSwitchConfigCase>
    Switch cases. Each item contains a unique output name and the condition that sends items to it.
    onErrors List<GetAutomationDefinitionNodeSwitchConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    cases GetAutomationDefinitionNodeSwitchConfigCase[]
    Switch cases. Each item contains a unique output name and the condition that sends items to it.
    onErrors GetAutomationDefinitionNodeSwitchConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    cases Sequence[GetAutomationDefinitionNodeSwitchConfigCase]
    Switch cases. Each item contains a unique output name and the condition that sends items to it.
    on_errors Sequence[GetAutomationDefinitionNodeSwitchConfigOnError]
    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.
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeSwitchConfigCase

    Condition string
    A bare Files TransformScript expression, no braces.
    Name string
    Identifier used to connect nodes and named inputs or outputs.
    Condition string
    A bare Files TransformScript expression, no braces.
    Name string
    Identifier used to connect nodes and named inputs or outputs.
    condition string
    A bare Files TransformScript expression, no braces.
    name string
    Identifier used to connect nodes and named inputs or outputs.
    condition String
    A bare Files TransformScript expression, no braces.
    name String
    Identifier used to connect nodes and named inputs or outputs.
    condition string
    A bare Files TransformScript expression, no braces.
    name string
    Identifier used to connect nodes and named inputs or outputs.
    condition str
    A bare Files TransformScript expression, no braces.
    name str
    Identifier used to connect nodes and named inputs or outputs.
    condition String
    A bare Files TransformScript expression, no braces.
    name String
    Identifier used to connect nodes and named inputs or outputs.

    GetAutomationDefinitionNodeSwitchConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeTransform

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTransformConfig
    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 GetAutomationDefinitionNodeTransformConfig
    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 object
    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 GetAutomationDefinitionNodeTransformConfig
    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 GetAutomationDefinitionNodeTransformConfig
    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 GetAutomationDefinitionNodeTransformConfig
    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
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTransformConfigOnError>
    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
    OnErrors []GetAutomationDefinitionNodeTransformConfigOnError
    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
    onErrors List<GetAutomationDefinitionNodeTransformConfigOnError>
    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
    onErrors GetAutomationDefinitionNodeTransformConfigOnError[]
    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[GetAutomationDefinitionNodeTransformConfigOnError]
    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
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeTransformConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeTriggerAction

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTriggerActionConfig
    Configuration fields for this node type.
    Id string
    Unique node ID within the graph.
    Config GetAutomationDefinitionNodeTriggerActionConfig
    Configuration fields for this node type.
    Id string
    Unique node ID within the graph.
    config object
    Configuration fields for this node type.
    id string
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerActionConfig
    Configuration fields for this node type.
    id String
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerActionConfig
    Configuration fields for this node type.
    id string
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerActionConfig
    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

    ExcludePattern string
    Path string
    PathTimeZone string
    Source string
    TriggerActions List<string>
    ExcludePattern string
    Path string
    PathTimeZone string
    Source string
    TriggerActions []string
    exclude_pattern string
    path string
    path_time_zone string
    source string
    trigger_actions list(string)
    excludePattern String
    path String
    pathTimeZone String
    source String
    triggerActions List<String>
    excludePattern string
    path string
    pathTimeZone string
    source string
    triggerActions string[]
    excludePattern String
    path String
    pathTimeZone String
    source String
    triggerActions List<String>

    GetAutomationDefinitionNodeTriggerEmail

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTriggerEmailConfig
    Configuration fields for this node type.
    Id string
    Unique node ID within the graph.
    Config GetAutomationDefinitionNodeTriggerEmailConfig
    Configuration fields for this node type.
    Id string
    Unique node ID within the graph.
    config object
    Configuration fields for this node type.
    id string
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerEmailConfig
    Configuration fields for this node type.
    id String
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerEmailConfig
    Configuration fields for this node type.
    id string
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerEmailConfig
    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

    AllowedSenders List<string>
    ExcludePattern string
    Limit int
    PathTimeZone string
    SaveBody bool
    Source string
    allowed_senders list(string)
    exclude_pattern string
    limit number
    path_time_zone string
    save_body bool
    source string
    allowedSenders List<String>
    excludePattern String
    limit Integer
    pathTimeZone String
    saveBody Boolean
    source String
    allowedSenders string[]
    excludePattern string
    limit number
    pathTimeZone string
    saveBody boolean
    source string
    allowedSenders List<String>
    excludePattern String
    limit Number
    pathTimeZone String
    saveBody Boolean
    source String

    GetAutomationDefinitionNodeTriggerManual

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTriggerManualConfig
    Configuration fields for this node type.
    Id string
    Unique node ID within the graph.
    Config GetAutomationDefinitionNodeTriggerManualConfig
    Configuration fields for this node type.
    Id string
    Unique node ID within the graph.
    config object
    Configuration fields for this node type.
    id string
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerManualConfig
    Configuration fields for this node type.
    id String
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerManualConfig
    Configuration fields for this node type.
    id string
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerManualConfig
    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

    ExcludePattern string
    Limit int
    Path string
    PathTimeZone string
    Source string
    ExcludePattern string
    Limit int
    Path string
    PathTimeZone string
    Source string
    exclude_pattern string
    limit number
    path string
    path_time_zone string
    source string
    excludePattern String
    limit Integer
    path String
    pathTimeZone String
    source String
    excludePattern string
    limit number
    path string
    pathTimeZone string
    source string
    excludePattern String
    limit Number
    path String
    pathTimeZone String
    source String

    GetAutomationDefinitionNodeTriggerScheduled

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTriggerScheduledConfig
    Configuration fields for this node type.
    Id string
    Unique node ID within the graph.
    Config GetAutomationDefinitionNodeTriggerScheduledConfig
    Configuration fields for this node type.
    Id string
    Unique node ID within the graph.
    config object
    Configuration fields for this node type.
    id string
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerScheduledConfig
    Configuration fields for this node type.
    id String
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerScheduledConfig
    Configuration fields for this node type.
    id string
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerScheduledConfig
    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

    excludePattern String
    holidayRegion String
    interval String
    limit Integer
    path String
    pathTimeZone String
    recurringDay Integer
    recurringDays List<Integer>
    scheduleDaysOfWeeks List<Integer>
    scheduleId Integer
    scheduleTimeZone String
    scheduleTimesOfDays List<String>
    source String
    excludePattern String
    holidayRegion String
    interval String
    limit Number
    path String
    pathTimeZone String
    recurringDay Number
    recurringDays List<Number>
    scheduleDaysOfWeeks List<Number>
    scheduleId Number
    scheduleTimeZone String
    scheduleTimesOfDays List<String>
    source String

    GetAutomationDefinitionNodeTriggerWebhook

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeTriggerWebhookConfig
    Configuration fields for this node type.
    Id string
    Unique node ID within the graph.
    Config GetAutomationDefinitionNodeTriggerWebhookConfig
    Configuration fields for this node type.
    Id string
    Unique node ID within the graph.
    config object
    Configuration fields for this node type.
    id string
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerWebhookConfig
    Configuration fields for this node type.
    id String
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerWebhookConfig
    Configuration fields for this node type.
    id string
    Unique node ID within the graph.
    config GetAutomationDefinitionNodeTriggerWebhookConfig
    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

    ExcludePattern string
    Limit int
    Path string
    PathTimeZone string
    Source string
    ExcludePattern string
    Limit int
    Path string
    PathTimeZone string
    Source string
    exclude_pattern string
    limit number
    path string
    path_time_zone string
    source string
    excludePattern String
    limit Integer
    path String
    pathTimeZone String
    source String
    excludePattern string
    limit number
    path string
    pathTimeZone string
    source string
    excludePattern String
    limit Number
    path String
    pathTimeZone String
    source String

    GetAutomationDefinitionNodeUnzip

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeUnzipConfig
    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 GetAutomationDefinitionNodeUnzipConfig
    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 object
    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 GetAutomationDefinitionNodeUnzipConfig
    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 GetAutomationDefinitionNodeUnzipConfig
    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 GetAutomationDefinitionNodeUnzipConfig
    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.
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeUnzipConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    Destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    OnErrors []GetAutomationDefinitionNodeUnzipConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles 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.
    onErrors List<GetAutomationDefinitionNodeUnzipConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean
    destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    onErrors GetAutomationDefinitionNodeUnzipConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles boolean
    destination str
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    on_errors Sequence[GetAutomationDefinitionNodeUnzipConfigOnError]
    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.
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean

    GetAutomationDefinitionNodeUnzipConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeWait

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeWaitConfig
    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 GetAutomationDefinitionNodeWaitConfig
    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 object
    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 GetAutomationDefinitionNodeWaitConfig
    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 GetAutomationDefinitionNodeWaitConfig
    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 GetAutomationDefinitionNodeWaitConfig
    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

    DelaySeconds int
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeWaitConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    DelaySeconds int
    OnErrors []GetAutomationDefinitionNodeWaitConfigOnError
    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.
    delaySeconds Integer
    onErrors List<GetAutomationDefinitionNodeWaitConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    delaySeconds number
    onErrors GetAutomationDefinitionNodeWaitConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    delay_seconds int
    on_errors Sequence[GetAutomationDefinitionNodeWaitConfigOnError]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    delaySeconds Number
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.

    GetAutomationDefinitionNodeWaitConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    GetAutomationDefinitionNodeZip

    Config Jschady.Filescom.Inputs.GetAutomationDefinitionNodeZipConfig
    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 GetAutomationDefinitionNodeZipConfig
    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 object
    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 GetAutomationDefinitionNodeZipConfig
    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 GetAutomationDefinitionNodeZipConfig
    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 GetAutomationDefinitionNodeZipConfig
    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.
    OnErrors List<Jschady.Filescom.Inputs.GetAutomationDefinitionNodeZipConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles bool
    Destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    OnErrors []GetAutomationDefinitionNodeZipConfigOnError
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    OverwriteFiles 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.
    onErrors List<GetAutomationDefinitionNodeZipConfigOnError>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean
    destination string
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    onErrors GetAutomationDefinitionNodeZipConfigOnError[]
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles boolean
    destination str
    A string value. Supports {{ fts }} interpolation, evaluated per item at execution time.
    on_errors Sequence[GetAutomationDefinitionNodeZipConfigOnError]
    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.
    onErrors List<Property Map>
    Error handlers. Each item selects an error pattern and whether to continue or propagate it.
    overwriteFiles Boolean

    GetAutomationDefinitionNodeZipConfigOnError

    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    Action string
    Error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action string
    error string
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action str
    error str
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.
    action String
    error String
    A typed error family (not-found, processing-failure, service-unavailable), family/specific-error, or * for all.

    Package Details

    Repository
    filescom jschady/pulumi-filescom
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the filescom Terraform Provider.
    filescom logo
    Viewing docs for Files.com v0.1.1
    published on Thursday, Aug 20, 2026 by jschady

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial