files.com 1.1.483 → 1.1.484
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 +4 -4
- data/_VERSION +1 -1
- data/docs/automation_run.md +1 -1
- data/docs/bundle.md +1 -1
- data/docs/remote_server_credential.md +0 -16
- data/docs/user.md +2 -2
- data/lib/files.com/models/automation_run.rb +1 -1
- data/lib/files.com/models/bundle.rb +1 -1
- data/lib/files.com/models/remote_server_credential.rb +0 -30
- data/lib/files.com/models/user.rb +2 -2
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2022366dbdac0536dfeadb0b76acd19f490511643848e14d61d616752039f444
|
|
4
|
+
data.tar.gz: 97b074b724b1738956be3968a7a3bd30fb45675aaef3bfe1bcf83d494092aaf9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: acb65fe81e2fa03a17dde0a11b365da6f0b0a79ed6794a1f3d7dab6626a2ceba125f5404df243f47851c498891ba90956a5b04013f0b4bd71b8794c1a69416a8
|
|
7
|
+
data.tar.gz: 3c353f46eb46ecd1f551869dca1a908e7ba309342ce84a27f18af65c0447df6d522cfaadf45368e822de0102831aac5ea856f6bbe6aa63acb33e69df74fd0afc
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.484
|
data/docs/automation_run.md
CHANGED
|
@@ -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 `[ 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 `[ workspace_id, status ]`, `[ 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
|
|
data/docs/bundle.md
CHANGED
|
@@ -154,7 +154,7 @@ Files::Bundle.list(
|
|
|
154
154
|
* `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.
|
|
155
155
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
156
156
|
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
|
|
157
|
-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id,
|
|
157
|
+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
|
|
158
158
|
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
159
159
|
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
160
160
|
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
|
|
@@ -12,8 +12,6 @@
|
|
|
12
12
|
"aws_access_key": "example",
|
|
13
13
|
"google_cloud_storage_s3_compatible_access_key": "example",
|
|
14
14
|
"wasabi_access_key": "example",
|
|
15
|
-
"azure_blob_storage_account": "storage-account-name",
|
|
16
|
-
"azure_files_storage_account": "storage-account-name",
|
|
17
15
|
"s3_compatible_access_key": "example",
|
|
18
16
|
"filebase_access_key": "example",
|
|
19
17
|
"cloudflare_access_key": "example",
|
|
@@ -30,8 +28,6 @@
|
|
|
30
28
|
* `aws_access_key` (string): AWS Access Key.
|
|
31
29
|
* `google_cloud_storage_s3_compatible_access_key` (string): Google Cloud Storage: S3-compatible Access Key.
|
|
32
30
|
* `wasabi_access_key` (string): Wasabi: Access Key.
|
|
33
|
-
* `azure_blob_storage_account` (string): Azure Blob Storage: Account name
|
|
34
|
-
* `azure_files_storage_account` (string): Azure Files: Storage Account name
|
|
35
31
|
* `s3_compatible_access_key` (string): S3-compatible: Access Key
|
|
36
32
|
* `filebase_access_key` (string): Filebase: Access Key.
|
|
37
33
|
* `cloudflare_access_key` (string): Cloudflare: Access Key.
|
|
@@ -96,8 +92,6 @@ Files::RemoteServerCredential.create(
|
|
|
96
92
|
description: "More information or notes about this credential.",
|
|
97
93
|
server_type: "s3",
|
|
98
94
|
aws_access_key: "example",
|
|
99
|
-
azure_blob_storage_account: "storage-account-name",
|
|
100
|
-
azure_files_storage_account: "storage-account-name",
|
|
101
95
|
cloudflare_access_key: "example",
|
|
102
96
|
filebase_access_key: "example",
|
|
103
97
|
google_cloud_storage_s3_compatible_access_key: "example",
|
|
@@ -115,8 +109,6 @@ Files::RemoteServerCredential.create(
|
|
|
115
109
|
* `description` (string): Internal description for your reference
|
|
116
110
|
* `server_type` (string): Remote server type. Remote Server Credentials are only valid for a single type of Remote Server.
|
|
117
111
|
* `aws_access_key` (string): AWS Access Key.
|
|
118
|
-
* `azure_blob_storage_account` (string): Azure Blob Storage: Account name
|
|
119
|
-
* `azure_files_storage_account` (string): Azure Files: Storage Account name
|
|
120
112
|
* `cloudflare_access_key` (string): Cloudflare: Access Key.
|
|
121
113
|
* `filebase_access_key` (string): Filebase: Access Key.
|
|
122
114
|
* `google_cloud_storage_s3_compatible_access_key` (string): Google Cloud Storage: S3-compatible Access Key.
|
|
@@ -154,8 +146,6 @@ Files::RemoteServerCredential.update(id,
|
|
|
154
146
|
description: "More information or notes about this credential.",
|
|
155
147
|
server_type: "s3",
|
|
156
148
|
aws_access_key: "example",
|
|
157
|
-
azure_blob_storage_account: "storage-account-name",
|
|
158
|
-
azure_files_storage_account: "storage-account-name",
|
|
159
149
|
cloudflare_access_key: "example",
|
|
160
150
|
filebase_access_key: "example",
|
|
161
151
|
google_cloud_storage_s3_compatible_access_key: "example",
|
|
@@ -173,8 +163,6 @@ Files::RemoteServerCredential.update(id,
|
|
|
173
163
|
* `description` (string): Internal description for your reference
|
|
174
164
|
* `server_type` (string): Remote server type. Remote Server Credentials are only valid for a single type of Remote Server.
|
|
175
165
|
* `aws_access_key` (string): AWS Access Key.
|
|
176
|
-
* `azure_blob_storage_account` (string): Azure Blob Storage: Account name
|
|
177
|
-
* `azure_files_storage_account` (string): Azure Files: Storage Account name
|
|
178
166
|
* `cloudflare_access_key` (string): Cloudflare: Access Key.
|
|
179
167
|
* `filebase_access_key` (string): Filebase: Access Key.
|
|
180
168
|
* `google_cloud_storage_s3_compatible_access_key` (string): Google Cloud Storage: S3-compatible Access Key.
|
|
@@ -226,8 +214,6 @@ remote_server_credential.update(
|
|
|
226
214
|
description: "More information or notes about this credential.",
|
|
227
215
|
server_type: "s3",
|
|
228
216
|
aws_access_key: "example",
|
|
229
|
-
azure_blob_storage_account: "storage-account-name",
|
|
230
|
-
azure_files_storage_account: "storage-account-name",
|
|
231
217
|
cloudflare_access_key: "example",
|
|
232
218
|
filebase_access_key: "example",
|
|
233
219
|
google_cloud_storage_s3_compatible_access_key: "example",
|
|
@@ -245,8 +231,6 @@ remote_server_credential.update(
|
|
|
245
231
|
* `description` (string): Internal description for your reference
|
|
246
232
|
* `server_type` (string): Remote server type. Remote Server Credentials are only valid for a single type of Remote Server.
|
|
247
233
|
* `aws_access_key` (string): AWS Access Key.
|
|
248
|
-
* `azure_blob_storage_account` (string): Azure Blob Storage: Account name
|
|
249
|
-
* `azure_files_storage_account` (string): Azure Files: Storage Account name
|
|
250
234
|
* `cloudflare_access_key` (string): Cloudflare: Access Key.
|
|
251
235
|
* `filebase_access_key` (string): Filebase: Access Key.
|
|
252
236
|
* `google_cloud_storage_s3_compatible_access_key` (string): Google Cloud Storage: S3-compatible Access Key.
|
data/docs/user.md
CHANGED
|
@@ -184,10 +184,10 @@ Files::User.list(
|
|
|
184
184
|
* `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.
|
|
185
185
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
186
186
|
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `workspace_id`, `company`, `name`, `disabled`, `authenticate_until`, `username`, `email`, `last_desktop_login_at`, `last_login_at`, `site_admin`, `password_validity_days` or `ssl_required`.
|
|
187
|
-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until`, `not_site_admin`, `disabled`, `partner_id` or `workspace_id`. Valid field combinations are `[ site_admin, username ]`.
|
|
187
|
+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until`, `not_site_admin`, `disabled`, `partner_id` or `workspace_id`. Valid field combinations are `[ site_admin, username ]`, `[ not_site_admin, username ]`, `[ workspace_id, username ]`, `[ company, name ]`, `[ workspace_id, name ]`, `[ workspace_id, email ]`, `[ workspace_id, company ]`, `[ workspace_id, disabled ]`, `[ workspace_id, disabled, username ]` or `[ workspace_id, company, name ]`.
|
|
188
188
|
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
|
189
189
|
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
|
190
|
-
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `username`, `name`, `email` or `company`.
|
|
190
|
+
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `username`, `name`, `email` or `company`. Valid field combinations are `[ company, name ]`.
|
|
191
191
|
* `filter_lt` (object): If set, return records where the specified field is less than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
|
192
192
|
* `filter_lteq` (object): If set, return records where the specified field is less than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
|
193
193
|
* `ids` (string): comma-separated list of User IDs
|
|
@@ -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 `[ 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 `[ workspace_id, status ]`, `[ 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)
|
|
@@ -531,7 +531,7 @@ module Files
|
|
|
531
531
|
# 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.
|
|
532
532
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
533
533
|
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
|
|
534
|
-
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id,
|
|
534
|
+
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
|
|
535
535
|
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
536
536
|
# filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
537
537
|
# filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
|
|
@@ -81,24 +81,6 @@ module Files
|
|
|
81
81
|
@attributes[:wasabi_access_key] = value
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
# string - Azure Blob Storage: Account name
|
|
85
|
-
def azure_blob_storage_account
|
|
86
|
-
@attributes[:azure_blob_storage_account]
|
|
87
|
-
end
|
|
88
|
-
|
|
89
|
-
def azure_blob_storage_account=(value)
|
|
90
|
-
@attributes[:azure_blob_storage_account] = value
|
|
91
|
-
end
|
|
92
|
-
|
|
93
|
-
# string - Azure Files: Storage Account name
|
|
94
|
-
def azure_files_storage_account
|
|
95
|
-
@attributes[:azure_files_storage_account]
|
|
96
|
-
end
|
|
97
|
-
|
|
98
|
-
def azure_files_storage_account=(value)
|
|
99
|
-
@attributes[:azure_files_storage_account] = value
|
|
100
|
-
end
|
|
101
|
-
|
|
102
84
|
# string - S3-compatible: Access Key
|
|
103
85
|
def s3_compatible_access_key
|
|
104
86
|
@attributes[:s3_compatible_access_key]
|
|
@@ -302,8 +284,6 @@ module Files
|
|
|
302
284
|
# description - string - Internal description for your reference
|
|
303
285
|
# server_type - string - Remote server type. Remote Server Credentials are only valid for a single type of Remote Server.
|
|
304
286
|
# aws_access_key - string - AWS Access Key.
|
|
305
|
-
# azure_blob_storage_account - string - Azure Blob Storage: Account name
|
|
306
|
-
# azure_files_storage_account - string - Azure Files: Storage Account name
|
|
307
287
|
# cloudflare_access_key - string - Cloudflare: Access Key.
|
|
308
288
|
# filebase_access_key - string - Filebase: Access Key.
|
|
309
289
|
# google_cloud_storage_s3_compatible_access_key - string - Google Cloud Storage: S3-compatible Access Key.
|
|
@@ -337,8 +317,6 @@ module Files
|
|
|
337
317
|
raise InvalidParameterError.new("Bad parameter: description must be an String") if params[:description] and !params[:description].is_a?(String)
|
|
338
318
|
raise InvalidParameterError.new("Bad parameter: server_type must be an String") if params[:server_type] and !params[:server_type].is_a?(String)
|
|
339
319
|
raise InvalidParameterError.new("Bad parameter: aws_access_key must be an String") if params[:aws_access_key] and !params[:aws_access_key].is_a?(String)
|
|
340
|
-
raise InvalidParameterError.new("Bad parameter: azure_blob_storage_account must be an String") if params[:azure_blob_storage_account] and !params[:azure_blob_storage_account].is_a?(String)
|
|
341
|
-
raise InvalidParameterError.new("Bad parameter: azure_files_storage_account must be an String") if params[:azure_files_storage_account] and !params[:azure_files_storage_account].is_a?(String)
|
|
342
320
|
raise InvalidParameterError.new("Bad parameter: cloudflare_access_key must be an String") if params[:cloudflare_access_key] and !params[:cloudflare_access_key].is_a?(String)
|
|
343
321
|
raise InvalidParameterError.new("Bad parameter: filebase_access_key must be an String") if params[:filebase_access_key] and !params[:filebase_access_key].is_a?(String)
|
|
344
322
|
raise InvalidParameterError.new("Bad parameter: google_cloud_storage_s3_compatible_access_key must be an String") if params[:google_cloud_storage_s3_compatible_access_key] and !params[:google_cloud_storage_s3_compatible_access_key].is_a?(String)
|
|
@@ -437,8 +415,6 @@ module Files
|
|
|
437
415
|
# description - string - Internal description for your reference
|
|
438
416
|
# server_type - string - Remote server type. Remote Server Credentials are only valid for a single type of Remote Server.
|
|
439
417
|
# aws_access_key - string - AWS Access Key.
|
|
440
|
-
# azure_blob_storage_account - string - Azure Blob Storage: Account name
|
|
441
|
-
# azure_files_storage_account - string - Azure Files: Storage Account name
|
|
442
418
|
# cloudflare_access_key - string - Cloudflare: Access Key.
|
|
443
419
|
# filebase_access_key - string - Filebase: Access Key.
|
|
444
420
|
# google_cloud_storage_s3_compatible_access_key - string - Google Cloud Storage: S3-compatible Access Key.
|
|
@@ -469,8 +445,6 @@ module Files
|
|
|
469
445
|
raise InvalidParameterError.new("Bad parameter: description must be an String") if params[:description] and !params[:description].is_a?(String)
|
|
470
446
|
raise InvalidParameterError.new("Bad parameter: server_type must be an String") if params[:server_type] and !params[:server_type].is_a?(String)
|
|
471
447
|
raise InvalidParameterError.new("Bad parameter: aws_access_key must be an String") if params[:aws_access_key] and !params[:aws_access_key].is_a?(String)
|
|
472
|
-
raise InvalidParameterError.new("Bad parameter: azure_blob_storage_account must be an String") if params[:azure_blob_storage_account] and !params[:azure_blob_storage_account].is_a?(String)
|
|
473
|
-
raise InvalidParameterError.new("Bad parameter: azure_files_storage_account must be an String") if params[:azure_files_storage_account] and !params[:azure_files_storage_account].is_a?(String)
|
|
474
448
|
raise InvalidParameterError.new("Bad parameter: cloudflare_access_key must be an String") if params[:cloudflare_access_key] and !params[:cloudflare_access_key].is_a?(String)
|
|
475
449
|
raise InvalidParameterError.new("Bad parameter: filebase_access_key must be an String") if params[:filebase_access_key] and !params[:filebase_access_key].is_a?(String)
|
|
476
450
|
raise InvalidParameterError.new("Bad parameter: google_cloud_storage_s3_compatible_access_key must be an String") if params[:google_cloud_storage_s3_compatible_access_key] and !params[:google_cloud_storage_s3_compatible_access_key].is_a?(String)
|
|
@@ -506,8 +480,6 @@ module Files
|
|
|
506
480
|
# description - string - Internal description for your reference
|
|
507
481
|
# server_type - string - Remote server type. Remote Server Credentials are only valid for a single type of Remote Server.
|
|
508
482
|
# aws_access_key - string - AWS Access Key.
|
|
509
|
-
# azure_blob_storage_account - string - Azure Blob Storage: Account name
|
|
510
|
-
# azure_files_storage_account - string - Azure Files: Storage Account name
|
|
511
483
|
# cloudflare_access_key - string - Cloudflare: Access Key.
|
|
512
484
|
# filebase_access_key - string - Filebase: Access Key.
|
|
513
485
|
# google_cloud_storage_s3_compatible_access_key - string - Google Cloud Storage: S3-compatible Access Key.
|
|
@@ -540,8 +512,6 @@ module Files
|
|
|
540
512
|
raise InvalidParameterError.new("Bad parameter: description must be an String") if params[:description] and !params[:description].is_a?(String)
|
|
541
513
|
raise InvalidParameterError.new("Bad parameter: server_type must be an String") if params[:server_type] and !params[:server_type].is_a?(String)
|
|
542
514
|
raise InvalidParameterError.new("Bad parameter: aws_access_key must be an String") if params[:aws_access_key] and !params[:aws_access_key].is_a?(String)
|
|
543
|
-
raise InvalidParameterError.new("Bad parameter: azure_blob_storage_account must be an String") if params[:azure_blob_storage_account] and !params[:azure_blob_storage_account].is_a?(String)
|
|
544
|
-
raise InvalidParameterError.new("Bad parameter: azure_files_storage_account must be an String") if params[:azure_files_storage_account] and !params[:azure_files_storage_account].is_a?(String)
|
|
545
515
|
raise InvalidParameterError.new("Bad parameter: cloudflare_access_key must be an String") if params[:cloudflare_access_key] and !params[:cloudflare_access_key].is_a?(String)
|
|
546
516
|
raise InvalidParameterError.new("Bad parameter: filebase_access_key must be an String") if params[:filebase_access_key] and !params[:filebase_access_key].is_a?(String)
|
|
547
517
|
raise InvalidParameterError.new("Bad parameter: google_cloud_storage_s3_compatible_access_key must be an String") if params[:google_cloud_storage_s3_compatible_access_key] and !params[:google_cloud_storage_s3_compatible_access_key].is_a?(String)
|
|
@@ -931,10 +931,10 @@ module Files
|
|
|
931
931
|
# 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.
|
|
932
932
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
933
933
|
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `workspace_id`, `company`, `name`, `disabled`, `authenticate_until`, `username`, `email`, `last_desktop_login_at`, `last_login_at`, `site_admin`, `password_validity_days` or `ssl_required`.
|
|
934
|
-
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until`, `not_site_admin`, `disabled`, `partner_id` or `workspace_id`. Valid field combinations are `[ site_admin, username ]`.
|
|
934
|
+
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until`, `not_site_admin`, `disabled`, `partner_id` or `workspace_id`. Valid field combinations are `[ site_admin, username ]`, `[ not_site_admin, username ]`, `[ workspace_id, username ]`, `[ company, name ]`, `[ workspace_id, name ]`, `[ workspace_id, email ]`, `[ workspace_id, company ]`, `[ workspace_id, disabled ]`, `[ workspace_id, disabled, username ]` or `[ workspace_id, company, name ]`.
|
|
935
935
|
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
|
936
936
|
# filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
|
937
|
-
# filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `username`, `name`, `email` or `company`.
|
|
937
|
+
# filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `username`, `name`, `email` or `company`. Valid field combinations are `[ company, name ]`.
|
|
938
938
|
# filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
|
939
939
|
# filter_lteq - object - If set, return records where the specified field is less than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
|
940
940
|
# ids - string - comma-separated list of User IDs
|
data/lib/files.com/version.rb
CHANGED