files.com 1.1.525 → 1.1.527

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1448f3cae0247246accba3e890e28e36a94642312783ef9c02b602eea1b7d1a6
4
- data.tar.gz: 421481cec949a7072cbff5630f0ce706586e42aecb09aeef190d0b2049f43c1b
3
+ metadata.gz: bc602b7efd3c6407ba0f75f0dbc2cc5eda5e4291f16ce52e4127bf0f4f90bdec
4
+ data.tar.gz: b7c86c1f0a8335f419f01affc8ca1f44f4d99aa31497ab38e623b7156d69457e
5
5
  SHA512:
6
- metadata.gz: cd471e2e92068a1597bf99f5d180ef62ccedc847e20bdfd629f16cf8e99e5accd90f842f608efeeb405a3ae84df692b67f6ae66ab1af203691db14270c2527e4
7
- data.tar.gz: 53990a19f2391ddc7e0896f86340685a9f94ace6d848ee6b13f583010b3d83ad91177a356be6091144d9770942f6071eebdb2e873232e32649a5d41e5dac7daf
6
+ metadata.gz: 504f8c54124b27022bde100f08eef96467007d4ff9359bb1cab4363f1a5c4c11dc781ab051aa2f8577d582ea26a697408089aa77f1fe2eef1afbe4c908071b3a
7
+ data.tar.gz: f9b1558178c9fcd17f48163cc252a04caed99a058321f77b7cfd2994f2b7a57ea97a7907e9b424fe52713a8bfbf053475486932fc35a9e2dbc1d1b4c1d600247
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.525
1
+ 1.1.527
@@ -54,7 +54,7 @@ Files::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.
59
59
 
60
60
 
@@ -10,6 +10,7 @@
10
10
  "hostname": "remote-server.com",
11
11
  "remote_home_path": "/home/user1",
12
12
  "upload_staging_path": "/tmp/uploads",
13
+ "allow_relative_paths": true,
13
14
  "name": "My Remote server",
14
15
  "description": "More information or notes about my server",
15
16
  "port": 1,
@@ -77,6 +78,7 @@
77
78
  * `hostname` (string): Hostname or IP address
78
79
  * `remote_home_path` (string): Initial home folder on remote server
79
80
  * `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.
81
+ * `allow_relative_paths` (boolean): Allow relative paths in SFTP. If true, paths will not be forced to be absolute, allowing operations relative to the user's home directory.
80
82
  * `name` (string): Internal name for your reference
81
83
  * `description` (string): Internal description for your reference
82
84
  * `port` (int64): Port for remote server.
@@ -206,6 +208,7 @@ Files::RemoteServer.find_configuration_file(id)
206
208
  ```
207
209
  Files::RemoteServer.create(
208
210
  reset_authentication: false,
211
+ allow_relative_paths: true,
209
212
  aws_access_key: "example",
210
213
  azure_blob_storage_account: "storage-account-name",
211
214
  azure_blob_storage_container: "container-name",
@@ -282,6 +285,7 @@ Files::RemoteServer.create(
282
285
  * `linode_secret_key` (string): Linode: Secret Key
283
286
  * `s3_compatible_secret_key` (string): S3-compatible: Secret Key
284
287
  * `wasabi_secret_key` (string): Wasabi: Secret Key
288
+ * `allow_relative_paths` (boolean): Allow relative paths in SFTP. If true, paths will not be forced to be absolute, allowing operations relative to the user's home directory.
285
289
  * `aws_access_key` (string): AWS Access Key.
286
290
  * `azure_blob_storage_account` (string): Azure Blob Storage: Account name
287
291
  * `azure_blob_storage_container` (string): Azure Blob Storage: Container name
@@ -392,6 +396,7 @@ Files::RemoteServer.configuration_file(id,
392
396
  ```
393
397
  Files::RemoteServer.update(id,
394
398
  reset_authentication: false,
399
+ allow_relative_paths: true,
395
400
  aws_access_key: "example",
396
401
  azure_blob_storage_account: "storage-account-name",
397
402
  azure_blob_storage_container: "container-name",
@@ -468,6 +473,7 @@ Files::RemoteServer.update(id,
468
473
  * `linode_secret_key` (string): Linode: Secret Key
469
474
  * `s3_compatible_secret_key` (string): S3-compatible: Secret Key
470
475
  * `wasabi_secret_key` (string): Wasabi: Secret Key
476
+ * `allow_relative_paths` (boolean): Allow relative paths in SFTP. If true, paths will not be forced to be absolute, allowing operations relative to the user's home directory.
471
477
  * `aws_access_key` (string): AWS Access Key.
472
478
  * `azure_blob_storage_account` (string): Azure Blob Storage: Account name
473
479
  * `azure_blob_storage_container` (string): Azure Blob Storage: Container name
@@ -596,6 +602,7 @@ remote_server = Files::RemoteServer.find(id)
596
602
 
597
603
  remote_server.update(
598
604
  reset_authentication: false,
605
+ allow_relative_paths: true,
599
606
  aws_access_key: "example",
600
607
  azure_blob_storage_account: "storage-account-name",
601
608
  azure_blob_storage_container: "container-name",
@@ -672,6 +679,7 @@ remote_server.update(
672
679
  * `linode_secret_key` (string): Linode: Secret Key
673
680
  * `s3_compatible_secret_key` (string): S3-compatible: Secret Key
674
681
  * `wasabi_secret_key` (string): Wasabi: Secret Key
682
+ * `allow_relative_paths` (boolean): Allow relative paths in SFTP. If true, paths will not be forced to be absolute, allowing operations relative to the user's home directory.
675
683
  * `aws_access_key` (string): AWS Access Key.
676
684
  * `azure_blob_storage_account` (string): Azure Blob Storage: Account name
677
685
  * `azure_blob_storage_container` (string): Azure Blob Storage: Container name
@@ -84,7 +84,7 @@ module Files
84
84
  # 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.
85
85
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
86
86
  # 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`.
87
- # 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 ]`.
87
+ # 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 ]`.
88
88
  # automation_id (required) - int64 - ID of the associated Automation.
89
89
  def self.list(params = {}, options = {})
90
90
  raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params[:user_id] and !params[:user_id].is_a?(Integer)
@@ -63,6 +63,15 @@ module Files
63
63
  @attributes[:upload_staging_path] = value
64
64
  end
65
65
 
66
+ # boolean - Allow relative paths in SFTP. If true, paths will not be forced to be absolute, allowing operations relative to the user's home directory.
67
+ def allow_relative_paths
68
+ @attributes[:allow_relative_paths]
69
+ end
70
+
71
+ def allow_relative_paths=(value)
72
+ @attributes[:allow_relative_paths] = value
73
+ end
74
+
66
75
  # string - Internal name for your reference
67
76
  def name
68
77
  @attributes[:name]
@@ -822,6 +831,7 @@ module Files
822
831
  # linode_secret_key - string - Linode: Secret Key
823
832
  # s3_compatible_secret_key - string - S3-compatible: Secret Key
824
833
  # wasabi_secret_key - string - Wasabi: Secret Key
834
+ # allow_relative_paths - boolean - Allow relative paths in SFTP. If true, paths will not be forced to be absolute, allowing operations relative to the user's home directory.
825
835
  # aws_access_key - string - AWS Access Key.
826
836
  # azure_blob_storage_account - string - Azure Blob Storage: Account name
827
837
  # azure_blob_storage_container - string - Azure Blob Storage: Container name
@@ -1044,6 +1054,7 @@ module Files
1044
1054
  # linode_secret_key - string - Linode: Secret Key
1045
1055
  # s3_compatible_secret_key - string - S3-compatible: Secret Key
1046
1056
  # wasabi_secret_key - string - Wasabi: Secret Key
1057
+ # allow_relative_paths - boolean - Allow relative paths in SFTP. If true, paths will not be forced to be absolute, allowing operations relative to the user's home directory.
1047
1058
  # aws_access_key - string - AWS Access Key.
1048
1059
  # azure_blob_storage_account - string - Azure Blob Storage: Account name
1049
1060
  # azure_blob_storage_container - string - Azure Blob Storage: Container name
@@ -1234,6 +1245,7 @@ module Files
1234
1245
  # linode_secret_key - string - Linode: Secret Key
1235
1246
  # s3_compatible_secret_key - string - S3-compatible: Secret Key
1236
1247
  # wasabi_secret_key - string - Wasabi: Secret Key
1248
+ # allow_relative_paths - boolean - Allow relative paths in SFTP. If true, paths will not be forced to be absolute, allowing operations relative to the user's home directory.
1237
1249
  # aws_access_key - string - AWS Access Key.
1238
1250
  # azure_blob_storage_account - string - Azure Blob Storage: Account name
1239
1251
  # azure_blob_storage_container - string - Azure Blob Storage: Container name
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.525"
4
+ VERSION = "1.1.527"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.525
4
+ version: 1.1.527
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-26 00:00:00.000000000 Z
11
+ date: 2026-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable