files.com 1.0.118 → 1.0.123
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/api_key.md +1 -4
- data/docs/app.md +1 -4
- data/docs/as2_key.md +1 -4
- data/docs/automation.md +1 -4
- data/docs/bandwidth_snapshot.md +1 -4
- data/docs/behavior.md +2 -8
- data/docs/bundle.md +7 -6
- data/docs/bundle_download.md +1 -4
- data/docs/bundle_recipient.md +1 -4
- data/docs/clickwrap.md +3 -5
- data/docs/dns_record.md +1 -4
- data/docs/external_event.md +1 -4
- data/docs/file_comment.md +1 -4
- data/docs/folder.md +1 -4
- data/docs/group.md +1 -4
- data/docs/group_user.md +1 -4
- data/docs/history.md +10 -30
- data/docs/history_export_result.md +1 -5
- data/docs/invoice.md +1 -4
- data/docs/ip_address.md +2 -8
- data/docs/lock.md +1 -4
- data/docs/message.md +1 -4
- data/docs/message_comment.md +1 -4
- data/docs/message_comment_reaction.md +1 -4
- data/docs/message_reaction.md +1 -4
- data/docs/notification.md +1 -4
- data/docs/payment.md +1 -4
- data/docs/permission.md +1 -4
- data/docs/project.md +1 -4
- data/docs/public_key.md +1 -4
- data/docs/remote_server.md +13 -12
- data/docs/request.md +2 -8
- data/docs/settings_change.md +1 -4
- data/docs/sso_strategy.md +5 -4
- data/docs/usage_daily_snapshot.md +1 -4
- data/docs/usage_snapshot.md +1 -4
- data/docs/user.md +9 -6
- data/docs/user_cipher_use.md +1 -4
- data/docs/user_request.md +1 -4
- data/lib/files.com/models/api_key.rb +2 -6
- data/lib/files.com/models/app.rb +2 -6
- data/lib/files.com/models/as2_key.rb +2 -6
- data/lib/files.com/models/automation.rb +2 -6
- data/lib/files.com/models/bandwidth_snapshot.rb +2 -6
- data/lib/files.com/models/behavior.rb +4 -12
- data/lib/files.com/models/bundle.rb +6 -6
- data/lib/files.com/models/bundle_download.rb +2 -6
- data/lib/files.com/models/bundle_recipient.rb +2 -6
- data/lib/files.com/models/clickwrap.rb +11 -15
- data/lib/files.com/models/dns_record.rb +2 -6
- data/lib/files.com/models/external_event.rb +2 -6
- data/lib/files.com/models/file_comment.rb +2 -6
- data/lib/files.com/models/folder.rb +2 -6
- data/lib/files.com/models/group.rb +2 -6
- data/lib/files.com/models/group_user.rb +2 -6
- data/lib/files.com/models/history.rb +10 -30
- data/lib/files.com/models/history_export_result.rb +2 -6
- data/lib/files.com/models/invoice.rb +2 -6
- data/lib/files.com/models/ip_address.rb +4 -12
- data/lib/files.com/models/lock.rb +2 -6
- data/lib/files.com/models/message.rb +2 -6
- data/lib/files.com/models/message_comment.rb +2 -6
- data/lib/files.com/models/message_comment_reaction.rb +2 -6
- data/lib/files.com/models/message_reaction.rb +2 -6
- data/lib/files.com/models/notification.rb +2 -6
- data/lib/files.com/models/payment.rb +2 -6
- data/lib/files.com/models/permission.rb +2 -6
- data/lib/files.com/models/project.rb +2 -6
- data/lib/files.com/models/public_key.rb +2 -6
- data/lib/files.com/models/remote_server.rb +17 -6
- data/lib/files.com/models/request.rb +4 -12
- data/lib/files.com/models/settings_change.rb +2 -6
- data/lib/files.com/models/sso_strategy.rb +12 -6
- data/lib/files.com/models/usage_daily_snapshot.rb +2 -6
- data/lib/files.com/models/usage_snapshot.rb +2 -6
- data/lib/files.com/models/user.rb +9 -7
- data/lib/files.com/models/user_cipher_use.rb +2 -6
- data/lib/files.com/models/user_request.rb +2 -6
- metadata +2 -2
@@ -62,9 +62,7 @@
|
|
62
62
|
```
|
63
63
|
Files::HistoryExportResult.list(
|
64
64
|
user_id: 1,
|
65
|
-
page: 1,
|
66
65
|
per_page: 1,
|
67
|
-
action: "read",
|
68
66
|
history_export_id: 1
|
69
67
|
)
|
70
68
|
```
|
@@ -72,8 +70,6 @@ Files::HistoryExportResult.list(
|
|
72
70
|
### Parameters
|
73
71
|
|
74
72
|
* `user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
|
75
|
-
* `
|
73
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
76
74
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
77
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
78
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
79
75
|
* `history_export_id` (int64): Required - ID of the associated history export.
|
data/docs/invoice.md
CHANGED
@@ -47,17 +47,14 @@
|
|
47
47
|
|
48
48
|
```
|
49
49
|
Files::Invoice.list(
|
50
|
-
page: 1,
|
51
50
|
per_page: 1
|
52
51
|
)
|
53
52
|
```
|
54
53
|
|
55
54
|
### Parameters
|
56
55
|
|
57
|
-
* `
|
56
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
58
57
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
59
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
60
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
61
58
|
|
62
59
|
|
63
60
|
---
|
data/docs/ip_address.md
CHANGED
@@ -25,17 +25,14 @@
|
|
25
25
|
|
26
26
|
```
|
27
27
|
Files::IpAddress.list(
|
28
|
-
page: 1,
|
29
28
|
per_page: 1
|
30
29
|
)
|
31
30
|
```
|
32
31
|
|
33
32
|
### Parameters
|
34
33
|
|
35
|
-
* `
|
34
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
36
35
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
37
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
38
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
39
36
|
|
40
37
|
|
41
38
|
---
|
@@ -44,14 +41,11 @@ Files::IpAddress.list(
|
|
44
41
|
|
45
42
|
```
|
46
43
|
Files::IpAddress.get_reserved(
|
47
|
-
page: 1,
|
48
44
|
per_page: 1
|
49
45
|
)
|
50
46
|
```
|
51
47
|
|
52
48
|
### Parameters
|
53
49
|
|
54
|
-
* `
|
50
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
55
51
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
56
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
57
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
data/docs/lock.md
CHANGED
@@ -33,7 +33,6 @@
|
|
33
33
|
|
34
34
|
```
|
35
35
|
Files::Lock.list_for(path,
|
36
|
-
page: 1,
|
37
36
|
per_page: 1,
|
38
37
|
include_children: true
|
39
38
|
)
|
@@ -41,10 +40,8 @@ Files::Lock.list_for(path,
|
|
41
40
|
|
42
41
|
### Parameters
|
43
42
|
|
44
|
-
* `
|
43
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
45
44
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
46
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
47
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
48
45
|
* `path` (string): Required - Path to operate on.
|
49
46
|
* `include_children` (boolean): Include locks from children objects?
|
50
47
|
|
data/docs/message.md
CHANGED
@@ -28,7 +28,6 @@
|
|
28
28
|
```
|
29
29
|
Files::Message.list(
|
30
30
|
user_id: 1,
|
31
|
-
page: 1,
|
32
31
|
per_page: 1,
|
33
32
|
project_id: 1
|
34
33
|
)
|
@@ -37,10 +36,8 @@ Files::Message.list(
|
|
37
36
|
### Parameters
|
38
37
|
|
39
38
|
* `user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
|
40
|
-
* `
|
39
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
41
40
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
42
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
43
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
44
41
|
* `project_id` (int64): Required - Project for which to return messages.
|
45
42
|
|
46
43
|
|
data/docs/message_comment.md
CHANGED
@@ -25,7 +25,6 @@
|
|
25
25
|
```
|
26
26
|
Files::MessageComment.list(
|
27
27
|
user_id: 1,
|
28
|
-
page: 1,
|
29
28
|
per_page: 1,
|
30
29
|
message_id: 1
|
31
30
|
)
|
@@ -34,10 +33,8 @@ Files::MessageComment.list(
|
|
34
33
|
### Parameters
|
35
34
|
|
36
35
|
* `user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
|
37
|
-
* `
|
36
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
38
37
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
39
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
40
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
41
38
|
* `message_id` (int64): Required - Message comment to return comments for.
|
42
39
|
|
43
40
|
|
@@ -21,7 +21,6 @@
|
|
21
21
|
```
|
22
22
|
Files::MessageCommentReaction.list(
|
23
23
|
user_id: 1,
|
24
|
-
page: 1,
|
25
24
|
per_page: 1,
|
26
25
|
message_comment_id: 1
|
27
26
|
)
|
@@ -30,10 +29,8 @@ Files::MessageCommentReaction.list(
|
|
30
29
|
### Parameters
|
31
30
|
|
32
31
|
* `user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
|
33
|
-
* `
|
32
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
34
33
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
35
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
36
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
37
34
|
* `message_comment_id` (int64): Required - Message comment to return reactions for.
|
38
35
|
|
39
36
|
|
data/docs/message_reaction.md
CHANGED
@@ -21,7 +21,6 @@
|
|
21
21
|
```
|
22
22
|
Files::MessageReaction.list(
|
23
23
|
user_id: 1,
|
24
|
-
page: 1,
|
25
24
|
per_page: 1,
|
26
25
|
message_id: 1
|
27
26
|
)
|
@@ -30,10 +29,8 @@ Files::MessageReaction.list(
|
|
30
29
|
### Parameters
|
31
30
|
|
32
31
|
* `user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
|
33
|
-
* `
|
32
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
34
33
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
35
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
36
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
37
34
|
* `message_id` (int64): Required - Message to return reactions for.
|
38
35
|
|
39
36
|
|
data/docs/notification.md
CHANGED
@@ -42,7 +42,6 @@
|
|
42
42
|
```
|
43
43
|
Files::Notification.list(
|
44
44
|
user_id: 1,
|
45
|
-
page: 1,
|
46
45
|
per_page: 1,
|
47
46
|
group_id: 1,
|
48
47
|
include_ancestors: true
|
@@ -52,10 +51,8 @@ Files::Notification.list(
|
|
52
51
|
### Parameters
|
53
52
|
|
54
53
|
* `user_id` (int64): DEPRECATED: Show notifications for this User ID. Use `filter[user_id]` instead.
|
55
|
-
* `
|
54
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
56
55
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
57
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
58
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
59
56
|
* `sort_by` (object): If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `site_id`, `path`, `user_id` or `group_id`.
|
60
57
|
* `filter` (object): If set, return records where the specifiied field is equal to the supplied value. Valid fields are `user_id`, `group_id` or `path`.
|
61
58
|
* `filter_gt` (object): If set, return records where the specifiied field is greater than the supplied value. Valid fields are `user_id`, `group_id` or `path`.
|
data/docs/payment.md
CHANGED
@@ -47,17 +47,14 @@
|
|
47
47
|
|
48
48
|
```
|
49
49
|
Files::Payment.list(
|
50
|
-
page: 1,
|
51
50
|
per_page: 1
|
52
51
|
)
|
53
52
|
```
|
54
53
|
|
55
54
|
### Parameters
|
56
55
|
|
57
|
-
* `
|
56
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
58
57
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
59
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
60
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
61
58
|
|
62
59
|
|
63
60
|
---
|
data/docs/permission.md
CHANGED
@@ -31,7 +31,6 @@
|
|
31
31
|
|
32
32
|
```
|
33
33
|
Files::Permission.list(
|
34
|
-
page: 1,
|
35
34
|
per_page: 1,
|
36
35
|
group_id: 1,
|
37
36
|
user_id: 1,
|
@@ -41,10 +40,8 @@ Files::Permission.list(
|
|
41
40
|
|
42
41
|
### Parameters
|
43
42
|
|
44
|
-
* `
|
43
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
45
44
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
46
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
47
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
48
45
|
* `sort_by` (object): If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `deleted_at`, `group_id`, `path`, `user_id` or `permission`.
|
49
46
|
* `filter` (object): If set, return records where the specifiied field is equal to the supplied value. Valid fields are `group_id`, `user_id` or `path`.
|
50
47
|
* `filter_gt` (object): If set, return records where the specifiied field is greater than the supplied value. Valid fields are `group_id`, `user_id` or `path`.
|
data/docs/project.md
CHANGED
@@ -19,17 +19,14 @@
|
|
19
19
|
|
20
20
|
```
|
21
21
|
Files::Project.list(
|
22
|
-
page: 1,
|
23
22
|
per_page: 1
|
24
23
|
)
|
25
24
|
```
|
26
25
|
|
27
26
|
### Parameters
|
28
27
|
|
29
|
-
* `
|
28
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
30
29
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
31
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
32
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
33
30
|
|
34
31
|
|
35
32
|
---
|
data/docs/public_key.md
CHANGED
@@ -26,7 +26,6 @@
|
|
26
26
|
```
|
27
27
|
Files::PublicKey.list(
|
28
28
|
user_id: 1,
|
29
|
-
page: 1,
|
30
29
|
per_page: 1
|
31
30
|
)
|
32
31
|
```
|
@@ -34,10 +33,8 @@ Files::PublicKey.list(
|
|
34
33
|
### Parameters
|
35
34
|
|
36
35
|
* `user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
|
37
|
-
* `
|
36
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
38
37
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
39
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
40
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
41
38
|
|
42
39
|
|
43
40
|
---
|
data/docs/remote_server.md
CHANGED
@@ -12,10 +12,10 @@
|
|
12
12
|
"max_connections": 1,
|
13
13
|
"s3_bucket": "my-bucket",
|
14
14
|
"s3_region": "us-east-1",
|
15
|
-
"server_certificate": "
|
15
|
+
"server_certificate": "require_match",
|
16
16
|
"server_host_key": "[public key]",
|
17
17
|
"server_type": "s3",
|
18
|
-
"ssl": "
|
18
|
+
"ssl": "if_available",
|
19
19
|
"username": "user",
|
20
20
|
"google_cloud_storage_bucket": "my-bucket",
|
21
21
|
"google_cloud_storage_project_id": "my-project",
|
@@ -67,6 +67,7 @@
|
|
67
67
|
* `aws_secret_key` (string): AWS secret key.
|
68
68
|
* `password` (string): Password if needed.
|
69
69
|
* `private_key` (string): Private key if needed.
|
70
|
+
* `ssl_certificate` (string): SSL client certificate.
|
70
71
|
* `google_cloud_storage_credentials_json` (string): A JSON file that contains the private key. To generate see https://cloud.google.com/storage/docs/json_api/v1/how-tos/authorizing#APIKey
|
71
72
|
* `wasabi_access_key` (string): Wasabi access key.
|
72
73
|
* `wasabi_secret_key` (string): Wasabi secret key.
|
@@ -83,17 +84,14 @@
|
|
83
84
|
|
84
85
|
```
|
85
86
|
Files::RemoteServer.list(
|
86
|
-
page: 1,
|
87
87
|
per_page: 1
|
88
88
|
)
|
89
89
|
```
|
90
90
|
|
91
91
|
### Parameters
|
92
92
|
|
93
|
-
* `
|
93
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
94
94
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
95
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
96
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
97
95
|
|
98
96
|
|
99
97
|
---
|
@@ -122,10 +120,10 @@ Files::RemoteServer.create(
|
|
122
120
|
port: 1,
|
123
121
|
s3_bucket: "my-bucket",
|
124
122
|
s3_region: "us-east-1",
|
125
|
-
server_certificate: "
|
123
|
+
server_certificate: "require_match",
|
126
124
|
server_host_key: "[public key]",
|
127
125
|
server_type: "s3",
|
128
|
-
ssl: "
|
126
|
+
ssl: "if_available",
|
129
127
|
username: "user",
|
130
128
|
google_cloud_storage_bucket: "my-bucket",
|
131
129
|
google_cloud_storage_project_id: "my-project",
|
@@ -148,6 +146,7 @@ Files::RemoteServer.create(
|
|
148
146
|
* `aws_secret_key` (string): AWS secret key.
|
149
147
|
* `password` (string): Password if needed.
|
150
148
|
* `private_key` (string): Private key if needed.
|
149
|
+
* `ssl_certificate` (string): SSL client certificate.
|
151
150
|
* `google_cloud_storage_credentials_json` (string): A JSON file that contains the private key. To generate see https://cloud.google.com/storage/docs/json_api/v1/how-tos/authorizing#APIKey
|
152
151
|
* `wasabi_access_key` (string): Wasabi access key.
|
153
152
|
* `wasabi_secret_key` (string): Wasabi secret key.
|
@@ -194,10 +193,10 @@ Files::RemoteServer.update(id,
|
|
194
193
|
port: 1,
|
195
194
|
s3_bucket: "my-bucket",
|
196
195
|
s3_region: "us-east-1",
|
197
|
-
server_certificate: "
|
196
|
+
server_certificate: "require_match",
|
198
197
|
server_host_key: "[public key]",
|
199
198
|
server_type: "s3",
|
200
|
-
ssl: "
|
199
|
+
ssl: "if_available",
|
201
200
|
username: "user",
|
202
201
|
google_cloud_storage_bucket: "my-bucket",
|
203
202
|
google_cloud_storage_project_id: "my-project",
|
@@ -221,6 +220,7 @@ Files::RemoteServer.update(id,
|
|
221
220
|
* `aws_secret_key` (string): AWS secret key.
|
222
221
|
* `password` (string): Password if needed.
|
223
222
|
* `private_key` (string): Private key if needed.
|
223
|
+
* `ssl_certificate` (string): SSL client certificate.
|
224
224
|
* `google_cloud_storage_credentials_json` (string): A JSON file that contains the private key. To generate see https://cloud.google.com/storage/docs/json_api/v1/how-tos/authorizing#APIKey
|
225
225
|
* `wasabi_access_key` (string): Wasabi access key.
|
226
226
|
* `wasabi_secret_key` (string): Wasabi secret key.
|
@@ -282,10 +282,10 @@ remote_server.update(
|
|
282
282
|
port: 1,
|
283
283
|
s3_bucket: "my-bucket",
|
284
284
|
s3_region: "us-east-1",
|
285
|
-
server_certificate: "
|
285
|
+
server_certificate: "require_match",
|
286
286
|
server_host_key: "[public key]",
|
287
287
|
server_type: "s3",
|
288
|
-
ssl: "
|
288
|
+
ssl: "if_available",
|
289
289
|
username: "user",
|
290
290
|
google_cloud_storage_bucket: "my-bucket",
|
291
291
|
google_cloud_storage_project_id: "my-project",
|
@@ -309,6 +309,7 @@ remote_server.update(
|
|
309
309
|
* `aws_secret_key` (string): AWS secret key.
|
310
310
|
* `password` (string): Password if needed.
|
311
311
|
* `private_key` (string): Private key if needed.
|
312
|
+
* `ssl_certificate` (string): SSL client certificate.
|
312
313
|
* `google_cloud_storage_credentials_json` (string): A JSON file that contains the private key. To generate see https://cloud.google.com/storage/docs/json_api/v1/how-tos/authorizing#APIKey
|
313
314
|
* `wasabi_access_key` (string): Wasabi access key.
|
314
315
|
* `wasabi_secret_key` (string): Wasabi secret key.
|
data/docs/request.md
CHANGED
@@ -29,7 +29,6 @@
|
|
29
29
|
|
30
30
|
```
|
31
31
|
Files::Request.list(
|
32
|
-
page: 1,
|
33
32
|
per_page: 1,
|
34
33
|
mine: true
|
35
34
|
)
|
@@ -37,10 +36,8 @@ Files::Request.list(
|
|
37
36
|
|
38
37
|
### Parameters
|
39
38
|
|
40
|
-
* `
|
39
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
41
40
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
42
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
43
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
44
41
|
* `sort_by` (object): If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `site_id`, `folder_id` or `destination`.
|
45
42
|
* `mine` (boolean): Only show requests of the current user? (Defaults to true if current user is not a site admin.)
|
46
43
|
* `path` (string): Path to show requests for. If omitted, shows all paths. Send `/` to represent the root directory.
|
@@ -52,7 +49,6 @@ Files::Request.list(
|
|
52
49
|
|
53
50
|
```
|
54
51
|
Files::Request.get_folder(path,
|
55
|
-
page: 1,
|
56
52
|
per_page: 1,
|
57
53
|
mine: true
|
58
54
|
)
|
@@ -60,10 +56,8 @@ Files::Request.get_folder(path,
|
|
60
56
|
|
61
57
|
### Parameters
|
62
58
|
|
63
|
-
* `
|
59
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
64
60
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
65
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
66
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
67
61
|
* `sort_by` (object): If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `site_id`, `folder_id` or `destination`.
|
68
62
|
* `mine` (boolean): Only show requests of the current user? (Defaults to true if current user is not a site admin.)
|
69
63
|
* `path` (string): Required - Path to show requests for. If omitted, shows all paths. Send `/` to represent the root directory.
|
data/docs/settings_change.md
CHANGED
@@ -21,17 +21,14 @@
|
|
21
21
|
|
22
22
|
```
|
23
23
|
Files::SettingsChange.list(
|
24
|
-
page: 1,
|
25
24
|
per_page: 1
|
26
25
|
)
|
27
26
|
```
|
28
27
|
|
29
28
|
### Parameters
|
30
29
|
|
31
|
-
* `
|
30
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
32
31
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
33
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
34
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
35
32
|
* `sort_by` (object): If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `site_id`, `api_key_id`, `created_at` or `user_id`.
|
36
33
|
* `filter` (object): If set, return records where the specifiied field is equal to the supplied value. Valid fields are `api_key_id` and `user_id`.
|
37
34
|
* `filter_gt` (object): If set, return records where the specifiied field is greater than the supplied value. Valid fields are `api_key_id` and `user_id`.
|
data/docs/sso_strategy.md
CHANGED
@@ -19,6 +19,8 @@
|
|
19
19
|
"saml_provider_sso_target_url": "",
|
20
20
|
"scim_authentication_method": "",
|
21
21
|
"scim_username": "",
|
22
|
+
"scim_oauth_access_token": "",
|
23
|
+
"scim_oauth_access_token_expires_at": "",
|
22
24
|
"subdomain": "my-site",
|
23
25
|
"provision_users": true,
|
24
26
|
"provision_groups": true,
|
@@ -62,6 +64,8 @@
|
|
62
64
|
* `saml_provider_sso_target_url` (string): Identity provider SSO endpoint if saml_provider_metadata_url is not available.
|
63
65
|
* `scim_authentication_method` (string): SCIM authentication type.
|
64
66
|
* `scim_username` (string): SCIM username.
|
67
|
+
* `scim_oauth_access_token` (string): SCIM OAuth Access Token.
|
68
|
+
* `scim_oauth_access_token_expires_at` (string): SCIM OAuth Access Token Expiration Time.
|
65
69
|
* `subdomain` (string): Subdomain
|
66
70
|
* `provision_users` (boolean): Auto-provision users?
|
67
71
|
* `provision_groups` (boolean): Auto-provision group membership based on group memberships on the SSO side?
|
@@ -97,17 +101,14 @@
|
|
97
101
|
|
98
102
|
```
|
99
103
|
Files::SsoStrategy.list(
|
100
|
-
page: 1,
|
101
104
|
per_page: 1
|
102
105
|
)
|
103
106
|
```
|
104
107
|
|
105
108
|
### Parameters
|
106
109
|
|
107
|
-
* `
|
110
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
108
111
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
109
|
-
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
|
110
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
111
112
|
|
112
113
|
|
113
114
|
---
|