files.com 1.1.191 → 1.1.192
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/remote_server.md +4 -4
- data/docs/user.md +2 -2
- data/lib/files.com/models/remote_server.rb +4 -4
- 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: 54ec8e23105d81ed4db8d3fc7c78cd01349582f6330b64f51297c20c4f55375b
|
4
|
+
data.tar.gz: dca5adcd4150b8944672a09dc0f4f3368ddcbad2d99c91cc3ba15cc18245f22e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d2e34609532c523bdd2f6cf02b8ac1e6368c68d04893b2a9752ac74ffa530803375bb9b283b711a32dcbf4f69de91b1f11ff5da9bf181504120124cf89f5b85
|
7
|
+
data.tar.gz: f31fa1e916de6852f895fc25cc6bb14daa528cac25a5174d6d4eb9fdc39f850e68051ba60763a207be539d91f5c7eed1fd220b25fa65d270389b9aedf77b0c00
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.192
|
data/docs/remote_server.md
CHANGED
@@ -71,7 +71,7 @@
|
|
71
71
|
* `name` (string): Internal name for your reference
|
72
72
|
* `port` (int64): Port for remote server. Not needed for S3.
|
73
73
|
* `max_connections` (int64): Max number of parallel connections. Ignored for S3 connections (we will parallelize these as much as possible).
|
74
|
-
* `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
|
74
|
+
* `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.
|
75
75
|
* `pinned_region` (string): If set, all communications with this remote server are made through the provided region.
|
76
76
|
* `s3_bucket` (string): S3 bucket name
|
77
77
|
* `s3_region` (string): S3 region
|
@@ -259,7 +259,7 @@ Files::RemoteServer.create(
|
|
259
259
|
* `hostname` (string): Hostname or IP address
|
260
260
|
* `name` (string): Internal name for your reference
|
261
261
|
* `max_connections` (int64): Max number of parallel connections. Ignored for S3 connections (we will parallelize these as much as possible).
|
262
|
-
* `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
|
262
|
+
* `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.
|
263
263
|
* `port` (int64): Port for remote server. Not needed for S3.
|
264
264
|
* `s3_bucket` (string): S3 bucket name
|
265
265
|
* `s3_region` (string): S3 region
|
@@ -421,7 +421,7 @@ Files::RemoteServer.update(id,
|
|
421
421
|
* `hostname` (string): Hostname or IP address
|
422
422
|
* `name` (string): Internal name for your reference
|
423
423
|
* `max_connections` (int64): Max number of parallel connections. Ignored for S3 connections (we will parallelize these as much as possible).
|
424
|
-
* `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
|
424
|
+
* `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.
|
425
425
|
* `port` (int64): Port for remote server. Not needed for S3.
|
426
426
|
* `s3_bucket` (string): S3 bucket name
|
427
427
|
* `s3_region` (string): S3 region
|
@@ -600,7 +600,7 @@ remote_server.update(
|
|
600
600
|
* `hostname` (string): Hostname or IP address
|
601
601
|
* `name` (string): Internal name for your reference
|
602
602
|
* `max_connections` (int64): Max number of parallel connections. Ignored for S3 connections (we will parallelize these as much as possible).
|
603
|
-
* `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
|
603
|
+
* `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.
|
604
604
|
* `port` (int64): Port for remote server. Not needed for S3.
|
605
605
|
* `s3_bucket` (string): S3 bucket name
|
606
606
|
* `s3_region` (string): S3 region
|
data/docs/user.md
CHANGED
@@ -167,8 +167,8 @@ Files::User.list(
|
|
167
167
|
|
168
168
|
* `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.
|
169
169
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
170
|
-
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `name`, `company`, `password_validity_days`, `ssl_required` or `
|
171
|
-
* `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` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`
|
170
|
+
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `name`, `company`, `password_validity_days`, `ssl_required`, `username` or `site_admin`.
|
171
|
+
* `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` or `not_site_admin`. Valid field combinations are `[ site_admin, username ]`, `[ not_site_admin, username ]` or `[ company, name ]`.
|
172
172
|
* `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`.
|
173
173
|
* `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`.
|
174
174
|
* `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 ]`.
|
@@ -81,7 +81,7 @@ module Files
|
|
81
81
|
@attributes[:max_connections] = value
|
82
82
|
end
|
83
83
|
|
84
|
-
# 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
|
84
|
+
# 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.
|
85
85
|
def pin_to_site_region
|
86
86
|
@attributes[:pin_to_site_region]
|
87
87
|
end
|
@@ -738,7 +738,7 @@ module Files
|
|
738
738
|
# hostname - string - Hostname or IP address
|
739
739
|
# name - string - Internal name for your reference
|
740
740
|
# max_connections - int64 - Max number of parallel connections. Ignored for S3 connections (we will parallelize these as much as possible).
|
741
|
-
# 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
|
741
|
+
# 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.
|
742
742
|
# port - int64 - Port for remote server. Not needed for S3.
|
743
743
|
# s3_bucket - string - S3 bucket name
|
744
744
|
# s3_region - string - S3 region
|
@@ -950,7 +950,7 @@ module Files
|
|
950
950
|
# hostname - string - Hostname or IP address
|
951
951
|
# name - string - Internal name for your reference
|
952
952
|
# max_connections - int64 - Max number of parallel connections. Ignored for S3 connections (we will parallelize these as much as possible).
|
953
|
-
# 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
|
953
|
+
# 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.
|
954
954
|
# port - int64 - Port for remote server. Not needed for S3.
|
955
955
|
# s3_bucket - string - S3 bucket name
|
956
956
|
# s3_region - string - S3 region
|
@@ -1117,7 +1117,7 @@ module Files
|
|
1117
1117
|
# hostname - string - Hostname or IP address
|
1118
1118
|
# name - string - Internal name for your reference
|
1119
1119
|
# max_connections - int64 - Max number of parallel connections. Ignored for S3 connections (we will parallelize these as much as possible).
|
1120
|
-
# 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
|
1120
|
+
# 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.
|
1121
1121
|
# port - int64 - Port for remote server. Not needed for S3.
|
1122
1122
|
# s3_bucket - string - S3 bucket name
|
1123
1123
|
# s3_region - string - S3 region
|
@@ -836,8 +836,8 @@ module Files
|
|
836
836
|
# Parameters:
|
837
837
|
# 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.
|
838
838
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
839
|
-
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `name`, `company`, `password_validity_days`, `ssl_required` or `
|
840
|
-
# 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` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`
|
839
|
+
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `name`, `company`, `password_validity_days`, `ssl_required`, `username` or `site_admin`.
|
840
|
+
# 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` or `not_site_admin`. Valid field combinations are `[ site_admin, username ]`, `[ not_site_admin, username ]` or `[ company, name ]`.
|
841
841
|
# 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`.
|
842
842
|
# 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`.
|
843
843
|
# 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 ]`.
|
data/lib/files.com/version.rb
CHANGED