You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/models/AutomationRun.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ await AutomationRun.list({
54
54
*`cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
55
55
*`per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
56
56
*`sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
57
-
*`filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
57
+
*`filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
58
58
*`automation_id` (int64): Required - ID of the associated Automation.
Copy file name to clipboardExpand all lines: docs/models/RemoteServer.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
"authentication_method": "password",
10
10
"hostname": "remote-server.com",
11
11
"remote_home_path": "/home/user1",
12
+
"upload_staging_path": "/tmp/uploads",
12
13
"name": "My Remote server",
13
14
"description": "More information or notes about my server",
14
15
"port": 1,
@@ -70,11 +71,12 @@
70
71
}
71
72
```
72
73
73
-
*`id` (int64): Remote server ID
74
-
*`disabled` (boolean): If true, this server has been disabled due to failures. Make any change or set disabled to false to clear this flag.
75
-
*`authentication_method` (string): Type of authentication method
74
+
*`id` (int64): Remote Server ID
75
+
*`disabled` (boolean): If true, this Remote Server has been disabled due to failures. Make any change or set disabled to false to clear this flag.
76
+
*`authentication_method` (string): Type of authentication method to use
76
77
*`hostname` (string): Hostname or IP address
77
78
*`remote_home_path` (string): Initial home folder on remote server
79
+
*`upload_staging_path` (string): Upload staging path. Applies to SFTP only. If a path is provided here, files will first be uploaded to this path on the remote folder and the moved into the final correct path via an SFTP move command. This is required by some remote MFT systems to emulate atomic uploads, which are otherwise not supoprted by SFTP.
78
80
*`name` (string): Internal name for your reference
79
81
*`description` (string): Internal description for your reference
80
82
*`port` (int64): Port for remote server.
@@ -238,6 +240,7 @@ await RemoteServer.create({
238
240
'one_drive_account_type': "personal",
239
241
'pin_to_site_region': true,
240
242
'port': 1,
243
+
'upload_staging_path': "/tmp/uploads",
241
244
'remote_server_credential_id': 1,
242
245
's3_bucket': "my-bucket",
243
246
's3_compatible_access_key': "example",
@@ -314,6 +317,7 @@ await RemoteServer.create({
314
317
*`one_drive_account_type` (string): OneDrive: Either personal or business_other account types
315
318
*`pin_to_site_region` (boolean): If true, we will ensure that all communications with this remote server are made through the primary region of the site. This setting can also be overridden by a site-wide setting which will force it to true.
316
319
*`port` (int64): Port for remote server.
320
+
*`upload_staging_path` (string): Upload staging path. Applies to SFTP only. If a path is provided here, files will first be uploaded to this path on the remote folder and the moved into the final correct path via an SFTP move command. This is required by some remote MFT systems to emulate atomic uploads, which are otherwise not supoprted by SFTP.
317
321
*`remote_server_credential_id` (int64): ID of Remote Server Credential, if applicable.
*`one_drive_account_type` (string): OneDrive: Either personal or business_other account types
547
552
*`pin_to_site_region` (boolean): If true, we will ensure that all communications with this remote server are made through the primary region of the site. This setting can also be overridden by a site-wide setting which will force it to true.
548
553
*`port` (int64): Port for remote server.
554
+
*`upload_staging_path` (string): Upload staging path. Applies to SFTP only. If a path is provided here, files will first be uploaded to this path on the remote folder and the moved into the final correct path via an SFTP move command. This is required by some remote MFT systems to emulate atomic uploads, which are otherwise not supoprted by SFTP.
549
555
*`remote_server_credential_id` (int64): ID of Remote Server Credential, if applicable.
// cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
108
108
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
109
109
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
110
-
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
110
+
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
111
111
// automation_id (required) - int64 - ID of the associated Automation.
0 commit comments