files.com 1.1.246 → 1.1.248
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 +330 -318
- data/docs/settings_change.md +5 -5
- data/docs/siem_http_destination.md +13 -1
- data/lib/files.com/models/remote_server.rb +436 -406
- data/lib/files.com/models/settings_change.rb +8 -8
- data/lib/files.com/models/siem_http_destination.rb +22 -0
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
data/docs/remote_server.md
CHANGED
@@ -24,6 +24,7 @@
|
|
24
24
|
"username": "user",
|
25
25
|
"google_cloud_storage_bucket": "my-bucket",
|
26
26
|
"google_cloud_storage_project_id": "my-project",
|
27
|
+
"google_cloud_storage_s3_compatible_access_key": "example",
|
27
28
|
"backblaze_b2_s3_endpoint": "s3.us-west-001.backblazeb2.com",
|
28
29
|
"backblaze_b2_bucket": "my-bucket",
|
29
30
|
"wasabi_bucket": "my-bucket",
|
@@ -82,64 +83,66 @@
|
|
82
83
|
* `server_type` (string): Remote server type.
|
83
84
|
* `ssl` (string): Should we require SSL?
|
84
85
|
* `username` (string): Remote server username. Not needed for S3 buckets.
|
85
|
-
* `google_cloud_storage_bucket` (string): Google Cloud Storage
|
86
|
-
* `google_cloud_storage_project_id` (string): Google Cloud Project ID
|
87
|
-
* `
|
88
|
-
* `
|
89
|
-
* `
|
90
|
-
* `
|
91
|
-
* `
|
92
|
-
* `
|
93
|
-
* `
|
94
|
-
* `
|
86
|
+
* `google_cloud_storage_bucket` (string): Google Cloud Storage: Bucket Name
|
87
|
+
* `google_cloud_storage_project_id` (string): Google Cloud Storage: Project ID
|
88
|
+
* `google_cloud_storage_s3_compatible_access_key` (string): Google Cloud Storage: S3-compatible Access Key.
|
89
|
+
* `backblaze_b2_s3_endpoint` (string): Backblaze B2 Cloud Storage: S3 Endpoint
|
90
|
+
* `backblaze_b2_bucket` (string): Backblaze B2 Cloud Storage: Bucket name
|
91
|
+
* `wasabi_bucket` (string): Wasabi: Bucket name
|
92
|
+
* `wasabi_region` (string): Wasabi: Region
|
93
|
+
* `wasabi_access_key` (string): Wasabi: Access Key.
|
94
|
+
* `rackspace_username` (string): Rackspace: username used to login to the Rackspace Cloud Control Panel.
|
95
|
+
* `rackspace_region` (string): Rackspace: Three letter code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
|
96
|
+
* `rackspace_container` (string): Rackspace: The name of the container (top level directory) where files will sync.
|
95
97
|
* `auth_status` (string): Either `in_setup` or `complete`
|
96
98
|
* `auth_account_name` (string): Describes the authorized account
|
97
|
-
* `one_drive_account_type` (string): Either personal or business_other account types
|
98
|
-
* `azure_blob_storage_account` (string): Azure Blob Storage Account name
|
99
|
-
* `azure_blob_storage_container` (string): Azure Blob Storage Container name
|
100
|
-
* `azure_blob_storage_hierarchical_namespace` (boolean):
|
101
|
-
* `azure_blob_storage_dns_suffix` (string): Custom DNS suffix
|
102
|
-
* `azure_files_storage_account` (string): Azure
|
103
|
-
* `azure_files_storage_share_name` (string): Azure
|
104
|
-
* `azure_files_storage_dns_suffix` (string): Custom DNS suffix
|
105
|
-
* `s3_compatible_bucket` (string): S3-compatible Bucket name
|
106
|
-
* `s3_compatible_endpoint` (string): S3-compatible endpoint
|
107
|
-
* `s3_compatible_region` (string): S3-compatible
|
108
|
-
* `s3_compatible_access_key` (string): S3-compatible Access Key
|
99
|
+
* `one_drive_account_type` (string): OneDrive: Either personal or business_other account types
|
100
|
+
* `azure_blob_storage_account` (string): Azure Blob Storage: Account name
|
101
|
+
* `azure_blob_storage_container` (string): Azure Blob Storage: Container name
|
102
|
+
* `azure_blob_storage_hierarchical_namespace` (boolean): Azure Blob Storage: Does the storage account has hierarchical namespace feature enabled?
|
103
|
+
* `azure_blob_storage_dns_suffix` (string): Azure Blob Storage: Custom DNS suffix
|
104
|
+
* `azure_files_storage_account` (string): Azure Files: Storage Account name
|
105
|
+
* `azure_files_storage_share_name` (string): Azure Files: Storage Share name
|
106
|
+
* `azure_files_storage_dns_suffix` (string): Azure Files: Custom DNS suffix
|
107
|
+
* `s3_compatible_bucket` (string): S3-compatible: Bucket name
|
108
|
+
* `s3_compatible_endpoint` (string): S3-compatible: endpoint
|
109
|
+
* `s3_compatible_region` (string): S3-compatible: region
|
110
|
+
* `s3_compatible_access_key` (string): S3-compatible: Access Key
|
109
111
|
* `enable_dedicated_ips` (boolean): `true` if remote server only accepts connections from dedicated IPs
|
110
112
|
* `files_agent_permission_set` (string): Local permissions for files agent. read_only, write_only, or read_write
|
111
113
|
* `files_agent_root` (string): Agent local root path
|
112
114
|
* `files_agent_api_token` (string): Files Agent API Token
|
113
115
|
* `files_agent_version` (string): Files Agent version
|
114
|
-
* `filebase_bucket` (string): Filebase Bucket name
|
115
|
-
* `filebase_access_key` (string): Filebase Access Key.
|
116
|
-
* `cloudflare_bucket` (string): Cloudflare Bucket name
|
117
|
-
* `cloudflare_access_key` (string): Cloudflare Access Key.
|
118
|
-
* `cloudflare_endpoint` (string): Cloudflare endpoint
|
119
|
-
* `dropbox_teams` (boolean):
|
120
|
-
* `linode_bucket` (string): Linode Bucket name
|
121
|
-
* `linode_access_key` (string): Linode Access Key
|
122
|
-
* `linode_region` (string): Linode region
|
116
|
+
* `filebase_bucket` (string): Filebase: Bucket name
|
117
|
+
* `filebase_access_key` (string): Filebase: Access Key.
|
118
|
+
* `cloudflare_bucket` (string): Cloudflare: Bucket name
|
119
|
+
* `cloudflare_access_key` (string): Cloudflare: Access Key.
|
120
|
+
* `cloudflare_endpoint` (string): Cloudflare: endpoint
|
121
|
+
* `dropbox_teams` (boolean): Dropbox: If true, list Team folders in root?
|
122
|
+
* `linode_bucket` (string): Linode: Bucket name
|
123
|
+
* `linode_access_key` (string): Linode: Access Key
|
124
|
+
* `linode_region` (string): Linode: region
|
123
125
|
* `supports_versioning` (boolean): If true, this remote server supports file versioning. This value is determined automatically by Files.com.
|
124
|
-
* `
|
125
|
-
* `
|
126
|
-
* `private_key` (string): Private key if needed.
|
126
|
+
* `password` (string): Password, if needed.
|
127
|
+
* `private_key` (string): Private key, if needed.
|
127
128
|
* `private_key_passphrase` (string): Passphrase for private key if needed.
|
129
|
+
* `reset_authentication` (boolean): Reset authenticated account?
|
128
130
|
* `ssl_certificate` (string): SSL client certificate.
|
129
|
-
* `
|
130
|
-
* `
|
131
|
-
* `
|
132
|
-
* `
|
133
|
-
* `
|
134
|
-
* `
|
135
|
-
* `
|
136
|
-
* `
|
137
|
-
* `
|
138
|
-
* `
|
139
|
-
* `
|
140
|
-
* `
|
141
|
-
* `
|
142
|
-
* `
|
131
|
+
* `aws_secret_key` (string): AWS: secret key.
|
132
|
+
* `azure_blob_storage_access_key` (string): Azure Blob Storage: Access Key
|
133
|
+
* `azure_blob_storage_sas_token` (string): Azure Blob Storage: Shared Access Signature (SAS) token
|
134
|
+
* `azure_files_storage_access_key` (string): Azure File Storage: Access Key
|
135
|
+
* `azure_files_storage_sas_token` (string): Azure File Storage: Shared Access Signature (SAS) token
|
136
|
+
* `backblaze_b2_application_key` (string): Backblaze B2 Cloud Storage: applicationKey
|
137
|
+
* `backblaze_b2_key_id` (string): Backblaze B2 Cloud Storage: keyID
|
138
|
+
* `cloudflare_secret_key` (string): Cloudflare: Secret Key
|
139
|
+
* `filebase_secret_key` (string): Filebase: Secret Key
|
140
|
+
* `google_cloud_storage_credentials_json` (string): Google Cloud Storage: JSON file that contains the private key. To generate see https://cloud.google.com/storage/docs/json_api/v1/how-tos/authorizing#APIKey
|
141
|
+
* `google_cloud_storage_s3_compatible_secret_key` (string): Google Cloud Storage: S3-compatible secret key
|
142
|
+
* `linode_secret_key` (string): Linode: Secret Key
|
143
|
+
* `rackspace_api_key` (string): Rackspace: API key from the Rackspace Cloud Control Panel
|
144
|
+
* `s3_compatible_secret_key` (string): S3-compatible: Secret Key
|
145
|
+
* `wasabi_secret_key` (string): Wasabi: Secret Key
|
143
146
|
|
144
147
|
|
145
148
|
---
|
@@ -191,127 +194,130 @@ Files::RemoteServer.find_configuration_file(id)
|
|
191
194
|
|
192
195
|
```
|
193
196
|
Files::RemoteServer.create(
|
194
|
-
aws_access_key: "example",
|
195
|
-
wasabi_access_key: "example",
|
196
197
|
reset_authentication: false,
|
198
|
+
aws_access_key: "example",
|
199
|
+
azure_blob_storage_account: "storage-account-name",
|
200
|
+
azure_blob_storage_container: "container-name",
|
201
|
+
azure_blob_storage_dns_suffix: "usgovcloudapi.net",
|
202
|
+
azure_blob_storage_hierarchical_namespace: true,
|
203
|
+
azure_files_storage_account: "storage-account-name",
|
204
|
+
azure_files_storage_dns_suffix: "file.core.windows.net",
|
205
|
+
azure_files_storage_share_name: "share-name",
|
206
|
+
backblaze_b2_bucket: "my-bucket",
|
207
|
+
backblaze_b2_s3_endpoint: "s3.us-west-001.backblazeb2.com",
|
208
|
+
cloudflare_access_key: "example",
|
209
|
+
cloudflare_bucket: "my-bucket",
|
210
|
+
cloudflare_endpoint: "https://<ACCOUNT_ID>.r2.cloudflarestorage.com",
|
211
|
+
dropbox_teams: true,
|
212
|
+
enable_dedicated_ips: true,
|
213
|
+
filebase_access_key: "example",
|
214
|
+
filebase_bucket: "my-bucket",
|
215
|
+
files_agent_permission_set: "read_write",
|
216
|
+
files_agent_root: "example",
|
217
|
+
files_agent_version: "example",
|
218
|
+
google_cloud_storage_bucket: "my-bucket",
|
219
|
+
google_cloud_storage_project_id: "my-project",
|
220
|
+
google_cloud_storage_s3_compatible_access_key: "example",
|
197
221
|
hostname: "remote-server.com",
|
198
|
-
|
222
|
+
linode_access_key: "example",
|
223
|
+
linode_bucket: "my-bucket",
|
224
|
+
linode_region: "us-east-1",
|
199
225
|
max_connections: 1,
|
226
|
+
name: "My Remote server",
|
227
|
+
one_drive_account_type: "personal",
|
200
228
|
pin_to_site_region: true,
|
201
229
|
port: 1,
|
230
|
+
rackspace_container: "my-container",
|
231
|
+
rackspace_region: "dfw",
|
232
|
+
rackspace_username: "rackspaceuser",
|
202
233
|
s3_bucket: "my-bucket",
|
234
|
+
s3_compatible_access_key: "example",
|
235
|
+
s3_compatible_bucket: "my-bucket",
|
236
|
+
s3_compatible_endpoint: "mys3platform.com",
|
237
|
+
s3_compatible_region: "us-east-1",
|
203
238
|
s3_region: "us-east-1",
|
204
239
|
server_certificate: "require_match",
|
205
240
|
server_host_key: "[public key]",
|
206
241
|
server_type: "s3",
|
207
242
|
ssl: "if_available",
|
208
243
|
username: "user",
|
209
|
-
|
210
|
-
google_cloud_storage_project_id: "my-project",
|
211
|
-
backblaze_b2_bucket: "my-bucket",
|
212
|
-
backblaze_b2_s3_endpoint: "s3.us-west-001.backblazeb2.com",
|
244
|
+
wasabi_access_key: "example",
|
213
245
|
wasabi_bucket: "my-bucket",
|
214
|
-
wasabi_region: "us-west-1"
|
215
|
-
rackspace_username: "rackspaceuser",
|
216
|
-
rackspace_region: "dfw",
|
217
|
-
rackspace_container: "my-container",
|
218
|
-
one_drive_account_type: "personal",
|
219
|
-
azure_blob_storage_account: "storage-account-name",
|
220
|
-
azure_blob_storage_container: "container-name",
|
221
|
-
azure_blob_storage_hierarchical_namespace: true,
|
222
|
-
azure_blob_storage_dns_suffix: "usgovcloudapi.net",
|
223
|
-
azure_files_storage_account: "storage-account-name",
|
224
|
-
azure_files_storage_share_name: "share-name",
|
225
|
-
azure_files_storage_dns_suffix: "file.core.windows.net",
|
226
|
-
s3_compatible_bucket: "my-bucket",
|
227
|
-
s3_compatible_endpoint: "mys3platform.com",
|
228
|
-
s3_compatible_region: "us-east-1",
|
229
|
-
enable_dedicated_ips: true,
|
230
|
-
s3_compatible_access_key: "example",
|
231
|
-
files_agent_root: "example",
|
232
|
-
files_agent_permission_set: "read_write",
|
233
|
-
files_agent_version: "example",
|
234
|
-
filebase_access_key: "example",
|
235
|
-
filebase_bucket: "my-bucket",
|
236
|
-
cloudflare_access_key: "example",
|
237
|
-
cloudflare_bucket: "my-bucket",
|
238
|
-
cloudflare_endpoint: "https://<ACCOUNT_ID>.r2.cloudflarestorage.com",
|
239
|
-
dropbox_teams: true,
|
240
|
-
linode_access_key: "example",
|
241
|
-
linode_bucket: "my-bucket",
|
242
|
-
linode_region: "us-east-1"
|
246
|
+
wasabi_region: "us-west-1"
|
243
247
|
)
|
244
248
|
```
|
245
249
|
|
246
250
|
### Parameters
|
247
251
|
|
248
|
-
* `
|
249
|
-
* `
|
250
|
-
* `password` (string): Password if needed.
|
251
|
-
* `private_key` (string): Private key if needed.
|
252
|
+
* `password` (string): Password, if needed.
|
253
|
+
* `private_key` (string): Private key, if needed.
|
252
254
|
* `private_key_passphrase` (string): Passphrase for private key if needed.
|
255
|
+
* `reset_authentication` (boolean): Reset authenticated account?
|
253
256
|
* `ssl_certificate` (string): SSL client certificate.
|
254
|
-
* `
|
255
|
-
* `
|
256
|
-
* `
|
257
|
-
* `
|
258
|
-
* `
|
259
|
-
* `
|
260
|
-
* `
|
261
|
-
* `
|
262
|
-
* `
|
257
|
+
* `aws_secret_key` (string): AWS: secret key.
|
258
|
+
* `azure_blob_storage_access_key` (string): Azure Blob Storage: Access Key
|
259
|
+
* `azure_blob_storage_sas_token` (string): Azure Blob Storage: Shared Access Signature (SAS) token
|
260
|
+
* `azure_files_storage_access_key` (string): Azure File Storage: Access Key
|
261
|
+
* `azure_files_storage_sas_token` (string): Azure File Storage: Shared Access Signature (SAS) token
|
262
|
+
* `backblaze_b2_application_key` (string): Backblaze B2 Cloud Storage: applicationKey
|
263
|
+
* `backblaze_b2_key_id` (string): Backblaze B2 Cloud Storage: keyID
|
264
|
+
* `cloudflare_secret_key` (string): Cloudflare: Secret Key
|
265
|
+
* `filebase_secret_key` (string): Filebase: Secret Key
|
266
|
+
* `google_cloud_storage_credentials_json` (string): Google Cloud Storage: JSON file that contains the private key. To generate see https://cloud.google.com/storage/docs/json_api/v1/how-tos/authorizing#APIKey
|
267
|
+
* `google_cloud_storage_s3_compatible_secret_key` (string): Google Cloud Storage: S3-compatible secret key
|
268
|
+
* `linode_secret_key` (string): Linode: Secret Key
|
269
|
+
* `rackspace_api_key` (string): Rackspace: API key from the Rackspace Cloud Control Panel
|
270
|
+
* `s3_compatible_secret_key` (string): S3-compatible: Secret Key
|
271
|
+
* `wasabi_secret_key` (string): Wasabi: Secret Key
|
272
|
+
* `aws_access_key` (string): AWS Access Key.
|
273
|
+
* `azure_blob_storage_account` (string): Azure Blob Storage: Account name
|
274
|
+
* `azure_blob_storage_container` (string): Azure Blob Storage: Container name
|
275
|
+
* `azure_blob_storage_dns_suffix` (string): Azure Blob Storage: Custom DNS suffix
|
276
|
+
* `azure_blob_storage_hierarchical_namespace` (boolean): Azure Blob Storage: Does the storage account has hierarchical namespace feature enabled?
|
277
|
+
* `azure_files_storage_account` (string): Azure Files: Storage Account name
|
278
|
+
* `azure_files_storage_dns_suffix` (string): Azure Files: Custom DNS suffix
|
279
|
+
* `azure_files_storage_share_name` (string): Azure Files: Storage Share name
|
280
|
+
* `backblaze_b2_bucket` (string): Backblaze B2 Cloud Storage: Bucket name
|
281
|
+
* `backblaze_b2_s3_endpoint` (string): Backblaze B2 Cloud Storage: S3 Endpoint
|
282
|
+
* `cloudflare_access_key` (string): Cloudflare: Access Key.
|
283
|
+
* `cloudflare_bucket` (string): Cloudflare: Bucket name
|
284
|
+
* `cloudflare_endpoint` (string): Cloudflare: endpoint
|
285
|
+
* `dropbox_teams` (boolean): Dropbox: If true, list Team folders in root?
|
286
|
+
* `enable_dedicated_ips` (boolean): `true` if remote server only accepts connections from dedicated IPs
|
287
|
+
* `filebase_access_key` (string): Filebase: Access Key.
|
288
|
+
* `filebase_bucket` (string): Filebase: Bucket name
|
289
|
+
* `files_agent_permission_set` (string): Local permissions for files agent. read_only, write_only, or read_write
|
290
|
+
* `files_agent_root` (string): Agent local root path
|
291
|
+
* `files_agent_version` (string): Files Agent version
|
292
|
+
* `google_cloud_storage_bucket` (string): Google Cloud Storage: Bucket Name
|
293
|
+
* `google_cloud_storage_project_id` (string): Google Cloud Storage: Project ID
|
294
|
+
* `google_cloud_storage_s3_compatible_access_key` (string): Google Cloud Storage: S3-compatible Access Key.
|
263
295
|
* `hostname` (string): Hostname or IP address
|
264
|
-
* `
|
296
|
+
* `linode_access_key` (string): Linode: Access Key
|
297
|
+
* `linode_bucket` (string): Linode: Bucket name
|
298
|
+
* `linode_region` (string): Linode: region
|
265
299
|
* `max_connections` (int64): Max number of parallel connections. Ignored for S3 connections (we will parallelize these as much as possible).
|
300
|
+
* `name` (string): Internal name for your reference
|
301
|
+
* `one_drive_account_type` (string): OneDrive: Either personal or business_other account types
|
266
302
|
* `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.
|
267
303
|
* `port` (int64): Port for remote server. Not needed for S3.
|
304
|
+
* `rackspace_container` (string): Rackspace: The name of the container (top level directory) where files will sync.
|
305
|
+
* `rackspace_region` (string): Rackspace: Three letter code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
|
306
|
+
* `rackspace_username` (string): Rackspace: username used to login to the Rackspace Cloud Control Panel.
|
268
307
|
* `s3_bucket` (string): S3 bucket name
|
308
|
+
* `s3_compatible_access_key` (string): S3-compatible: Access Key
|
309
|
+
* `s3_compatible_bucket` (string): S3-compatible: Bucket name
|
310
|
+
* `s3_compatible_endpoint` (string): S3-compatible: endpoint
|
311
|
+
* `s3_compatible_region` (string): S3-compatible: region
|
269
312
|
* `s3_region` (string): S3 region
|
270
313
|
* `server_certificate` (string): Remote server certificate
|
271
314
|
* `server_host_key` (string): Remote server SSH Host Key. If provided, we will require that the server host key matches the provided key. Uses OpenSSH format similar to what would go into ~/.ssh/known_hosts
|
272
315
|
* `server_type` (string): Remote server type.
|
273
316
|
* `ssl` (string): Should we require SSL?
|
274
317
|
* `username` (string): Remote server username. Not needed for S3 buckets.
|
275
|
-
* `
|
276
|
-
* `
|
277
|
-
* `
|
278
|
-
* `backblaze_b2_s3_endpoint` (string): Backblaze B2 Cloud Storage S3 Endpoint
|
279
|
-
* `wasabi_bucket` (string): Wasabi Bucket name
|
280
|
-
* `wasabi_region` (string): Wasabi region
|
281
|
-
* `rackspace_username` (string): Rackspace username used to login to the Rackspace Cloud Control Panel.
|
282
|
-
* `rackspace_region` (string): Three letter airport code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
|
283
|
-
* `rackspace_container` (string): The name of the container (top level directory) where files will sync.
|
284
|
-
* `one_drive_account_type` (string): Either personal or business_other account types
|
285
|
-
* `azure_blob_storage_account` (string): Azure Blob Storage Account name
|
286
|
-
* `azure_blob_storage_container` (string): Azure Blob Storage Container name
|
287
|
-
* `azure_blob_storage_hierarchical_namespace` (boolean): Enable when storage account has hierarchical namespace feature enabled
|
288
|
-
* `azure_blob_storage_sas_token` (string): Shared Access Signature (SAS) token
|
289
|
-
* `azure_blob_storage_dns_suffix` (string): Custom DNS suffix
|
290
|
-
* `azure_files_storage_account` (string): Azure File Storage Account name
|
291
|
-
* `azure_files_storage_share_name` (string): Azure File Storage Share name
|
292
|
-
* `azure_files_storage_dns_suffix` (string): Custom DNS suffix
|
293
|
-
* `azure_files_storage_sas_token` (string): Shared Access Signature (SAS) token
|
294
|
-
* `s3_compatible_bucket` (string): S3-compatible Bucket name
|
295
|
-
* `s3_compatible_endpoint` (string): S3-compatible endpoint
|
296
|
-
* `s3_compatible_region` (string): S3-compatible endpoint
|
297
|
-
* `enable_dedicated_ips` (boolean): `true` if remote server only accepts connections from dedicated IPs
|
298
|
-
* `s3_compatible_access_key` (string): S3-compatible Access Key.
|
299
|
-
* `s3_compatible_secret_key` (string): S3-compatible secret key
|
300
|
-
* `files_agent_root` (string): Agent local root path
|
301
|
-
* `files_agent_permission_set` (string): Local permissions for files agent. read_only, write_only, or read_write
|
302
|
-
* `files_agent_version` (string): Files Agent version
|
303
|
-
* `filebase_access_key` (string): Filebase Access Key.
|
304
|
-
* `filebase_secret_key` (string): Filebase secret key
|
305
|
-
* `filebase_bucket` (string): Filebase Bucket name
|
306
|
-
* `cloudflare_access_key` (string): Cloudflare Access Key.
|
307
|
-
* `cloudflare_secret_key` (string): Cloudflare secret key
|
308
|
-
* `cloudflare_bucket` (string): Cloudflare Bucket name
|
309
|
-
* `cloudflare_endpoint` (string): Cloudflare endpoint
|
310
|
-
* `dropbox_teams` (boolean): List Team folders in root
|
311
|
-
* `linode_access_key` (string): Linode Access Key.
|
312
|
-
* `linode_secret_key` (string): Linode secret key
|
313
|
-
* `linode_bucket` (string): Linode Bucket name
|
314
|
-
* `linode_region` (string): Linode region
|
318
|
+
* `wasabi_access_key` (string): Wasabi: Access Key.
|
319
|
+
* `wasabi_bucket` (string): Wasabi: Bucket name
|
320
|
+
* `wasabi_region` (string): Wasabi: Region
|
315
321
|
|
316
322
|
|
317
323
|
---
|
@@ -356,128 +362,131 @@ Files::RemoteServer.configuration_file(id,
|
|
356
362
|
|
357
363
|
```
|
358
364
|
Files::RemoteServer.update(id,
|
359
|
-
aws_access_key: "example",
|
360
|
-
wasabi_access_key: "example",
|
361
365
|
reset_authentication: false,
|
366
|
+
aws_access_key: "example",
|
367
|
+
azure_blob_storage_account: "storage-account-name",
|
368
|
+
azure_blob_storage_container: "container-name",
|
369
|
+
azure_blob_storage_dns_suffix: "usgovcloudapi.net",
|
370
|
+
azure_blob_storage_hierarchical_namespace: true,
|
371
|
+
azure_files_storage_account: "storage-account-name",
|
372
|
+
azure_files_storage_dns_suffix: "file.core.windows.net",
|
373
|
+
azure_files_storage_share_name: "share-name",
|
374
|
+
backblaze_b2_bucket: "my-bucket",
|
375
|
+
backblaze_b2_s3_endpoint: "s3.us-west-001.backblazeb2.com",
|
376
|
+
cloudflare_access_key: "example",
|
377
|
+
cloudflare_bucket: "my-bucket",
|
378
|
+
cloudflare_endpoint: "https://<ACCOUNT_ID>.r2.cloudflarestorage.com",
|
379
|
+
dropbox_teams: true,
|
380
|
+
enable_dedicated_ips: true,
|
381
|
+
filebase_access_key: "example",
|
382
|
+
filebase_bucket: "my-bucket",
|
383
|
+
files_agent_permission_set: "read_write",
|
384
|
+
files_agent_root: "example",
|
385
|
+
files_agent_version: "example",
|
386
|
+
google_cloud_storage_bucket: "my-bucket",
|
387
|
+
google_cloud_storage_project_id: "my-project",
|
388
|
+
google_cloud_storage_s3_compatible_access_key: "example",
|
362
389
|
hostname: "remote-server.com",
|
363
|
-
|
390
|
+
linode_access_key: "example",
|
391
|
+
linode_bucket: "my-bucket",
|
392
|
+
linode_region: "us-east-1",
|
364
393
|
max_connections: 1,
|
394
|
+
name: "My Remote server",
|
395
|
+
one_drive_account_type: "personal",
|
365
396
|
pin_to_site_region: true,
|
366
397
|
port: 1,
|
398
|
+
rackspace_container: "my-container",
|
399
|
+
rackspace_region: "dfw",
|
400
|
+
rackspace_username: "rackspaceuser",
|
367
401
|
s3_bucket: "my-bucket",
|
402
|
+
s3_compatible_access_key: "example",
|
403
|
+
s3_compatible_bucket: "my-bucket",
|
404
|
+
s3_compatible_endpoint: "mys3platform.com",
|
405
|
+
s3_compatible_region: "us-east-1",
|
368
406
|
s3_region: "us-east-1",
|
369
407
|
server_certificate: "require_match",
|
370
408
|
server_host_key: "[public key]",
|
371
409
|
server_type: "s3",
|
372
410
|
ssl: "if_available",
|
373
411
|
username: "user",
|
374
|
-
|
375
|
-
google_cloud_storage_project_id: "my-project",
|
376
|
-
backblaze_b2_bucket: "my-bucket",
|
377
|
-
backblaze_b2_s3_endpoint: "s3.us-west-001.backblazeb2.com",
|
412
|
+
wasabi_access_key: "example",
|
378
413
|
wasabi_bucket: "my-bucket",
|
379
|
-
wasabi_region: "us-west-1"
|
380
|
-
rackspace_username: "rackspaceuser",
|
381
|
-
rackspace_region: "dfw",
|
382
|
-
rackspace_container: "my-container",
|
383
|
-
one_drive_account_type: "personal",
|
384
|
-
azure_blob_storage_account: "storage-account-name",
|
385
|
-
azure_blob_storage_container: "container-name",
|
386
|
-
azure_blob_storage_hierarchical_namespace: true,
|
387
|
-
azure_blob_storage_dns_suffix: "usgovcloudapi.net",
|
388
|
-
azure_files_storage_account: "storage-account-name",
|
389
|
-
azure_files_storage_share_name: "share-name",
|
390
|
-
azure_files_storage_dns_suffix: "file.core.windows.net",
|
391
|
-
s3_compatible_bucket: "my-bucket",
|
392
|
-
s3_compatible_endpoint: "mys3platform.com",
|
393
|
-
s3_compatible_region: "us-east-1",
|
394
|
-
enable_dedicated_ips: true,
|
395
|
-
s3_compatible_access_key: "example",
|
396
|
-
files_agent_root: "example",
|
397
|
-
files_agent_permission_set: "read_write",
|
398
|
-
files_agent_version: "example",
|
399
|
-
filebase_access_key: "example",
|
400
|
-
filebase_bucket: "my-bucket",
|
401
|
-
cloudflare_access_key: "example",
|
402
|
-
cloudflare_bucket: "my-bucket",
|
403
|
-
cloudflare_endpoint: "https://<ACCOUNT_ID>.r2.cloudflarestorage.com",
|
404
|
-
dropbox_teams: true,
|
405
|
-
linode_access_key: "example",
|
406
|
-
linode_bucket: "my-bucket",
|
407
|
-
linode_region: "us-east-1"
|
414
|
+
wasabi_region: "us-west-1"
|
408
415
|
)
|
409
416
|
```
|
410
417
|
|
411
418
|
### Parameters
|
412
419
|
|
413
420
|
* `id` (int64): Required - Remote Server ID.
|
414
|
-
* `
|
415
|
-
* `
|
416
|
-
* `password` (string): Password if needed.
|
417
|
-
* `private_key` (string): Private key if needed.
|
421
|
+
* `password` (string): Password, if needed.
|
422
|
+
* `private_key` (string): Private key, if needed.
|
418
423
|
* `private_key_passphrase` (string): Passphrase for private key if needed.
|
424
|
+
* `reset_authentication` (boolean): Reset authenticated account?
|
419
425
|
* `ssl_certificate` (string): SSL client certificate.
|
420
|
-
* `
|
421
|
-
* `
|
422
|
-
* `
|
423
|
-
* `
|
424
|
-
* `
|
425
|
-
* `
|
426
|
-
* `
|
427
|
-
* `
|
428
|
-
* `
|
426
|
+
* `aws_secret_key` (string): AWS: secret key.
|
427
|
+
* `azure_blob_storage_access_key` (string): Azure Blob Storage: Access Key
|
428
|
+
* `azure_blob_storage_sas_token` (string): Azure Blob Storage: Shared Access Signature (SAS) token
|
429
|
+
* `azure_files_storage_access_key` (string): Azure File Storage: Access Key
|
430
|
+
* `azure_files_storage_sas_token` (string): Azure File Storage: Shared Access Signature (SAS) token
|
431
|
+
* `backblaze_b2_application_key` (string): Backblaze B2 Cloud Storage: applicationKey
|
432
|
+
* `backblaze_b2_key_id` (string): Backblaze B2 Cloud Storage: keyID
|
433
|
+
* `cloudflare_secret_key` (string): Cloudflare: Secret Key
|
434
|
+
* `filebase_secret_key` (string): Filebase: Secret Key
|
435
|
+
* `google_cloud_storage_credentials_json` (string): Google Cloud Storage: JSON file that contains the private key. To generate see https://cloud.google.com/storage/docs/json_api/v1/how-tos/authorizing#APIKey
|
436
|
+
* `google_cloud_storage_s3_compatible_secret_key` (string): Google Cloud Storage: S3-compatible secret key
|
437
|
+
* `linode_secret_key` (string): Linode: Secret Key
|
438
|
+
* `rackspace_api_key` (string): Rackspace: API key from the Rackspace Cloud Control Panel
|
439
|
+
* `s3_compatible_secret_key` (string): S3-compatible: Secret Key
|
440
|
+
* `wasabi_secret_key` (string): Wasabi: Secret Key
|
441
|
+
* `aws_access_key` (string): AWS Access Key.
|
442
|
+
* `azure_blob_storage_account` (string): Azure Blob Storage: Account name
|
443
|
+
* `azure_blob_storage_container` (string): Azure Blob Storage: Container name
|
444
|
+
* `azure_blob_storage_dns_suffix` (string): Azure Blob Storage: Custom DNS suffix
|
445
|
+
* `azure_blob_storage_hierarchical_namespace` (boolean): Azure Blob Storage: Does the storage account has hierarchical namespace feature enabled?
|
446
|
+
* `azure_files_storage_account` (string): Azure Files: Storage Account name
|
447
|
+
* `azure_files_storage_dns_suffix` (string): Azure Files: Custom DNS suffix
|
448
|
+
* `azure_files_storage_share_name` (string): Azure Files: Storage Share name
|
449
|
+
* `backblaze_b2_bucket` (string): Backblaze B2 Cloud Storage: Bucket name
|
450
|
+
* `backblaze_b2_s3_endpoint` (string): Backblaze B2 Cloud Storage: S3 Endpoint
|
451
|
+
* `cloudflare_access_key` (string): Cloudflare: Access Key.
|
452
|
+
* `cloudflare_bucket` (string): Cloudflare: Bucket name
|
453
|
+
* `cloudflare_endpoint` (string): Cloudflare: endpoint
|
454
|
+
* `dropbox_teams` (boolean): Dropbox: If true, list Team folders in root?
|
455
|
+
* `enable_dedicated_ips` (boolean): `true` if remote server only accepts connections from dedicated IPs
|
456
|
+
* `filebase_access_key` (string): Filebase: Access Key.
|
457
|
+
* `filebase_bucket` (string): Filebase: Bucket name
|
458
|
+
* `files_agent_permission_set` (string): Local permissions for files agent. read_only, write_only, or read_write
|
459
|
+
* `files_agent_root` (string): Agent local root path
|
460
|
+
* `files_agent_version` (string): Files Agent version
|
461
|
+
* `google_cloud_storage_bucket` (string): Google Cloud Storage: Bucket Name
|
462
|
+
* `google_cloud_storage_project_id` (string): Google Cloud Storage: Project ID
|
463
|
+
* `google_cloud_storage_s3_compatible_access_key` (string): Google Cloud Storage: S3-compatible Access Key.
|
429
464
|
* `hostname` (string): Hostname or IP address
|
430
|
-
* `
|
465
|
+
* `linode_access_key` (string): Linode: Access Key
|
466
|
+
* `linode_bucket` (string): Linode: Bucket name
|
467
|
+
* `linode_region` (string): Linode: region
|
431
468
|
* `max_connections` (int64): Max number of parallel connections. Ignored for S3 connections (we will parallelize these as much as possible).
|
469
|
+
* `name` (string): Internal name for your reference
|
470
|
+
* `one_drive_account_type` (string): OneDrive: Either personal or business_other account types
|
432
471
|
* `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.
|
433
472
|
* `port` (int64): Port for remote server. Not needed for S3.
|
473
|
+
* `rackspace_container` (string): Rackspace: The name of the container (top level directory) where files will sync.
|
474
|
+
* `rackspace_region` (string): Rackspace: Three letter code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
|
475
|
+
* `rackspace_username` (string): Rackspace: username used to login to the Rackspace Cloud Control Panel.
|
434
476
|
* `s3_bucket` (string): S3 bucket name
|
477
|
+
* `s3_compatible_access_key` (string): S3-compatible: Access Key
|
478
|
+
* `s3_compatible_bucket` (string): S3-compatible: Bucket name
|
479
|
+
* `s3_compatible_endpoint` (string): S3-compatible: endpoint
|
480
|
+
* `s3_compatible_region` (string): S3-compatible: region
|
435
481
|
* `s3_region` (string): S3 region
|
436
482
|
* `server_certificate` (string): Remote server certificate
|
437
483
|
* `server_host_key` (string): Remote server SSH Host Key. If provided, we will require that the server host key matches the provided key. Uses OpenSSH format similar to what would go into ~/.ssh/known_hosts
|
438
484
|
* `server_type` (string): Remote server type.
|
439
485
|
* `ssl` (string): Should we require SSL?
|
440
486
|
* `username` (string): Remote server username. Not needed for S3 buckets.
|
441
|
-
* `
|
442
|
-
* `
|
443
|
-
* `
|
444
|
-
* `backblaze_b2_s3_endpoint` (string): Backblaze B2 Cloud Storage S3 Endpoint
|
445
|
-
* `wasabi_bucket` (string): Wasabi Bucket name
|
446
|
-
* `wasabi_region` (string): Wasabi region
|
447
|
-
* `rackspace_username` (string): Rackspace username used to login to the Rackspace Cloud Control Panel.
|
448
|
-
* `rackspace_region` (string): Three letter airport code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
|
449
|
-
* `rackspace_container` (string): The name of the container (top level directory) where files will sync.
|
450
|
-
* `one_drive_account_type` (string): Either personal or business_other account types
|
451
|
-
* `azure_blob_storage_account` (string): Azure Blob Storage Account name
|
452
|
-
* `azure_blob_storage_container` (string): Azure Blob Storage Container name
|
453
|
-
* `azure_blob_storage_hierarchical_namespace` (boolean): Enable when storage account has hierarchical namespace feature enabled
|
454
|
-
* `azure_blob_storage_sas_token` (string): Shared Access Signature (SAS) token
|
455
|
-
* `azure_blob_storage_dns_suffix` (string): Custom DNS suffix
|
456
|
-
* `azure_files_storage_account` (string): Azure File Storage Account name
|
457
|
-
* `azure_files_storage_share_name` (string): Azure File Storage Share name
|
458
|
-
* `azure_files_storage_dns_suffix` (string): Custom DNS suffix
|
459
|
-
* `azure_files_storage_sas_token` (string): Shared Access Signature (SAS) token
|
460
|
-
* `s3_compatible_bucket` (string): S3-compatible Bucket name
|
461
|
-
* `s3_compatible_endpoint` (string): S3-compatible endpoint
|
462
|
-
* `s3_compatible_region` (string): S3-compatible endpoint
|
463
|
-
* `enable_dedicated_ips` (boolean): `true` if remote server only accepts connections from dedicated IPs
|
464
|
-
* `s3_compatible_access_key` (string): S3-compatible Access Key.
|
465
|
-
* `s3_compatible_secret_key` (string): S3-compatible secret key
|
466
|
-
* `files_agent_root` (string): Agent local root path
|
467
|
-
* `files_agent_permission_set` (string): Local permissions for files agent. read_only, write_only, or read_write
|
468
|
-
* `files_agent_version` (string): Files Agent version
|
469
|
-
* `filebase_access_key` (string): Filebase Access Key.
|
470
|
-
* `filebase_secret_key` (string): Filebase secret key
|
471
|
-
* `filebase_bucket` (string): Filebase Bucket name
|
472
|
-
* `cloudflare_access_key` (string): Cloudflare Access Key.
|
473
|
-
* `cloudflare_secret_key` (string): Cloudflare secret key
|
474
|
-
* `cloudflare_bucket` (string): Cloudflare Bucket name
|
475
|
-
* `cloudflare_endpoint` (string): Cloudflare endpoint
|
476
|
-
* `dropbox_teams` (boolean): List Team folders in root
|
477
|
-
* `linode_access_key` (string): Linode Access Key.
|
478
|
-
* `linode_secret_key` (string): Linode secret key
|
479
|
-
* `linode_bucket` (string): Linode Bucket name
|
480
|
-
* `linode_region` (string): Linode region
|
487
|
+
* `wasabi_access_key` (string): Wasabi: Access Key.
|
488
|
+
* `wasabi_bucket` (string): Wasabi: Bucket name
|
489
|
+
* `wasabi_region` (string): Wasabi: Region
|
481
490
|
|
482
491
|
|
483
492
|
---
|
@@ -539,128 +548,131 @@ remote_server.configuration_file(
|
|
539
548
|
remote_server = Files::RemoteServer.find(id)
|
540
549
|
|
541
550
|
remote_server.update(
|
542
|
-
aws_access_key: "example",
|
543
|
-
wasabi_access_key: "example",
|
544
551
|
reset_authentication: false,
|
552
|
+
aws_access_key: "example",
|
553
|
+
azure_blob_storage_account: "storage-account-name",
|
554
|
+
azure_blob_storage_container: "container-name",
|
555
|
+
azure_blob_storage_dns_suffix: "usgovcloudapi.net",
|
556
|
+
azure_blob_storage_hierarchical_namespace: true,
|
557
|
+
azure_files_storage_account: "storage-account-name",
|
558
|
+
azure_files_storage_dns_suffix: "file.core.windows.net",
|
559
|
+
azure_files_storage_share_name: "share-name",
|
560
|
+
backblaze_b2_bucket: "my-bucket",
|
561
|
+
backblaze_b2_s3_endpoint: "s3.us-west-001.backblazeb2.com",
|
562
|
+
cloudflare_access_key: "example",
|
563
|
+
cloudflare_bucket: "my-bucket",
|
564
|
+
cloudflare_endpoint: "https://<ACCOUNT_ID>.r2.cloudflarestorage.com",
|
565
|
+
dropbox_teams: true,
|
566
|
+
enable_dedicated_ips: true,
|
567
|
+
filebase_access_key: "example",
|
568
|
+
filebase_bucket: "my-bucket",
|
569
|
+
files_agent_permission_set: "read_write",
|
570
|
+
files_agent_root: "example",
|
571
|
+
files_agent_version: "example",
|
572
|
+
google_cloud_storage_bucket: "my-bucket",
|
573
|
+
google_cloud_storage_project_id: "my-project",
|
574
|
+
google_cloud_storage_s3_compatible_access_key: "example",
|
545
575
|
hostname: "remote-server.com",
|
546
|
-
|
576
|
+
linode_access_key: "example",
|
577
|
+
linode_bucket: "my-bucket",
|
578
|
+
linode_region: "us-east-1",
|
547
579
|
max_connections: 1,
|
580
|
+
name: "My Remote server",
|
581
|
+
one_drive_account_type: "personal",
|
548
582
|
pin_to_site_region: true,
|
549
583
|
port: 1,
|
584
|
+
rackspace_container: "my-container",
|
585
|
+
rackspace_region: "dfw",
|
586
|
+
rackspace_username: "rackspaceuser",
|
550
587
|
s3_bucket: "my-bucket",
|
588
|
+
s3_compatible_access_key: "example",
|
589
|
+
s3_compatible_bucket: "my-bucket",
|
590
|
+
s3_compatible_endpoint: "mys3platform.com",
|
591
|
+
s3_compatible_region: "us-east-1",
|
551
592
|
s3_region: "us-east-1",
|
552
593
|
server_certificate: "require_match",
|
553
594
|
server_host_key: "[public key]",
|
554
595
|
server_type: "s3",
|
555
596
|
ssl: "if_available",
|
556
597
|
username: "user",
|
557
|
-
|
558
|
-
google_cloud_storage_project_id: "my-project",
|
559
|
-
backblaze_b2_bucket: "my-bucket",
|
560
|
-
backblaze_b2_s3_endpoint: "s3.us-west-001.backblazeb2.com",
|
598
|
+
wasabi_access_key: "example",
|
561
599
|
wasabi_bucket: "my-bucket",
|
562
|
-
wasabi_region: "us-west-1"
|
563
|
-
rackspace_username: "rackspaceuser",
|
564
|
-
rackspace_region: "dfw",
|
565
|
-
rackspace_container: "my-container",
|
566
|
-
one_drive_account_type: "personal",
|
567
|
-
azure_blob_storage_account: "storage-account-name",
|
568
|
-
azure_blob_storage_container: "container-name",
|
569
|
-
azure_blob_storage_hierarchical_namespace: true,
|
570
|
-
azure_blob_storage_dns_suffix: "usgovcloudapi.net",
|
571
|
-
azure_files_storage_account: "storage-account-name",
|
572
|
-
azure_files_storage_share_name: "share-name",
|
573
|
-
azure_files_storage_dns_suffix: "file.core.windows.net",
|
574
|
-
s3_compatible_bucket: "my-bucket",
|
575
|
-
s3_compatible_endpoint: "mys3platform.com",
|
576
|
-
s3_compatible_region: "us-east-1",
|
577
|
-
enable_dedicated_ips: true,
|
578
|
-
s3_compatible_access_key: "example",
|
579
|
-
files_agent_root: "example",
|
580
|
-
files_agent_permission_set: "read_write",
|
581
|
-
files_agent_version: "example",
|
582
|
-
filebase_access_key: "example",
|
583
|
-
filebase_bucket: "my-bucket",
|
584
|
-
cloudflare_access_key: "example",
|
585
|
-
cloudflare_bucket: "my-bucket",
|
586
|
-
cloudflare_endpoint: "https://<ACCOUNT_ID>.r2.cloudflarestorage.com",
|
587
|
-
dropbox_teams: true,
|
588
|
-
linode_access_key: "example",
|
589
|
-
linode_bucket: "my-bucket",
|
590
|
-
linode_region: "us-east-1"
|
600
|
+
wasabi_region: "us-west-1"
|
591
601
|
)
|
592
602
|
```
|
593
603
|
|
594
604
|
### Parameters
|
595
605
|
|
596
606
|
* `id` (int64): Required - Remote Server ID.
|
597
|
-
* `
|
598
|
-
* `
|
599
|
-
* `password` (string): Password if needed.
|
600
|
-
* `private_key` (string): Private key if needed.
|
607
|
+
* `password` (string): Password, if needed.
|
608
|
+
* `private_key` (string): Private key, if needed.
|
601
609
|
* `private_key_passphrase` (string): Passphrase for private key if needed.
|
610
|
+
* `reset_authentication` (boolean): Reset authenticated account?
|
602
611
|
* `ssl_certificate` (string): SSL client certificate.
|
603
|
-
* `
|
604
|
-
* `
|
605
|
-
* `
|
606
|
-
* `
|
607
|
-
* `
|
608
|
-
* `
|
609
|
-
* `
|
610
|
-
* `
|
611
|
-
* `
|
612
|
+
* `aws_secret_key` (string): AWS: secret key.
|
613
|
+
* `azure_blob_storage_access_key` (string): Azure Blob Storage: Access Key
|
614
|
+
* `azure_blob_storage_sas_token` (string): Azure Blob Storage: Shared Access Signature (SAS) token
|
615
|
+
* `azure_files_storage_access_key` (string): Azure File Storage: Access Key
|
616
|
+
* `azure_files_storage_sas_token` (string): Azure File Storage: Shared Access Signature (SAS) token
|
617
|
+
* `backblaze_b2_application_key` (string): Backblaze B2 Cloud Storage: applicationKey
|
618
|
+
* `backblaze_b2_key_id` (string): Backblaze B2 Cloud Storage: keyID
|
619
|
+
* `cloudflare_secret_key` (string): Cloudflare: Secret Key
|
620
|
+
* `filebase_secret_key` (string): Filebase: Secret Key
|
621
|
+
* `google_cloud_storage_credentials_json` (string): Google Cloud Storage: JSON file that contains the private key. To generate see https://cloud.google.com/storage/docs/json_api/v1/how-tos/authorizing#APIKey
|
622
|
+
* `google_cloud_storage_s3_compatible_secret_key` (string): Google Cloud Storage: S3-compatible secret key
|
623
|
+
* `linode_secret_key` (string): Linode: Secret Key
|
624
|
+
* `rackspace_api_key` (string): Rackspace: API key from the Rackspace Cloud Control Panel
|
625
|
+
* `s3_compatible_secret_key` (string): S3-compatible: Secret Key
|
626
|
+
* `wasabi_secret_key` (string): Wasabi: Secret Key
|
627
|
+
* `aws_access_key` (string): AWS Access Key.
|
628
|
+
* `azure_blob_storage_account` (string): Azure Blob Storage: Account name
|
629
|
+
* `azure_blob_storage_container` (string): Azure Blob Storage: Container name
|
630
|
+
* `azure_blob_storage_dns_suffix` (string): Azure Blob Storage: Custom DNS suffix
|
631
|
+
* `azure_blob_storage_hierarchical_namespace` (boolean): Azure Blob Storage: Does the storage account has hierarchical namespace feature enabled?
|
632
|
+
* `azure_files_storage_account` (string): Azure Files: Storage Account name
|
633
|
+
* `azure_files_storage_dns_suffix` (string): Azure Files: Custom DNS suffix
|
634
|
+
* `azure_files_storage_share_name` (string): Azure Files: Storage Share name
|
635
|
+
* `backblaze_b2_bucket` (string): Backblaze B2 Cloud Storage: Bucket name
|
636
|
+
* `backblaze_b2_s3_endpoint` (string): Backblaze B2 Cloud Storage: S3 Endpoint
|
637
|
+
* `cloudflare_access_key` (string): Cloudflare: Access Key.
|
638
|
+
* `cloudflare_bucket` (string): Cloudflare: Bucket name
|
639
|
+
* `cloudflare_endpoint` (string): Cloudflare: endpoint
|
640
|
+
* `dropbox_teams` (boolean): Dropbox: If true, list Team folders in root?
|
641
|
+
* `enable_dedicated_ips` (boolean): `true` if remote server only accepts connections from dedicated IPs
|
642
|
+
* `filebase_access_key` (string): Filebase: Access Key.
|
643
|
+
* `filebase_bucket` (string): Filebase: Bucket name
|
644
|
+
* `files_agent_permission_set` (string): Local permissions for files agent. read_only, write_only, or read_write
|
645
|
+
* `files_agent_root` (string): Agent local root path
|
646
|
+
* `files_agent_version` (string): Files Agent version
|
647
|
+
* `google_cloud_storage_bucket` (string): Google Cloud Storage: Bucket Name
|
648
|
+
* `google_cloud_storage_project_id` (string): Google Cloud Storage: Project ID
|
649
|
+
* `google_cloud_storage_s3_compatible_access_key` (string): Google Cloud Storage: S3-compatible Access Key.
|
612
650
|
* `hostname` (string): Hostname or IP address
|
613
|
-
* `
|
651
|
+
* `linode_access_key` (string): Linode: Access Key
|
652
|
+
* `linode_bucket` (string): Linode: Bucket name
|
653
|
+
* `linode_region` (string): Linode: region
|
614
654
|
* `max_connections` (int64): Max number of parallel connections. Ignored for S3 connections (we will parallelize these as much as possible).
|
655
|
+
* `name` (string): Internal name for your reference
|
656
|
+
* `one_drive_account_type` (string): OneDrive: Either personal or business_other account types
|
615
657
|
* `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.
|
616
658
|
* `port` (int64): Port for remote server. Not needed for S3.
|
659
|
+
* `rackspace_container` (string): Rackspace: The name of the container (top level directory) where files will sync.
|
660
|
+
* `rackspace_region` (string): Rackspace: Three letter code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
|
661
|
+
* `rackspace_username` (string): Rackspace: username used to login to the Rackspace Cloud Control Panel.
|
617
662
|
* `s3_bucket` (string): S3 bucket name
|
663
|
+
* `s3_compatible_access_key` (string): S3-compatible: Access Key
|
664
|
+
* `s3_compatible_bucket` (string): S3-compatible: Bucket name
|
665
|
+
* `s3_compatible_endpoint` (string): S3-compatible: endpoint
|
666
|
+
* `s3_compatible_region` (string): S3-compatible: region
|
618
667
|
* `s3_region` (string): S3 region
|
619
668
|
* `server_certificate` (string): Remote server certificate
|
620
669
|
* `server_host_key` (string): Remote server SSH Host Key. If provided, we will require that the server host key matches the provided key. Uses OpenSSH format similar to what would go into ~/.ssh/known_hosts
|
621
670
|
* `server_type` (string): Remote server type.
|
622
671
|
* `ssl` (string): Should we require SSL?
|
623
672
|
* `username` (string): Remote server username. Not needed for S3 buckets.
|
624
|
-
* `
|
625
|
-
* `
|
626
|
-
* `
|
627
|
-
* `backblaze_b2_s3_endpoint` (string): Backblaze B2 Cloud Storage S3 Endpoint
|
628
|
-
* `wasabi_bucket` (string): Wasabi Bucket name
|
629
|
-
* `wasabi_region` (string): Wasabi region
|
630
|
-
* `rackspace_username` (string): Rackspace username used to login to the Rackspace Cloud Control Panel.
|
631
|
-
* `rackspace_region` (string): Three letter airport code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
|
632
|
-
* `rackspace_container` (string): The name of the container (top level directory) where files will sync.
|
633
|
-
* `one_drive_account_type` (string): Either personal or business_other account types
|
634
|
-
* `azure_blob_storage_account` (string): Azure Blob Storage Account name
|
635
|
-
* `azure_blob_storage_container` (string): Azure Blob Storage Container name
|
636
|
-
* `azure_blob_storage_hierarchical_namespace` (boolean): Enable when storage account has hierarchical namespace feature enabled
|
637
|
-
* `azure_blob_storage_sas_token` (string): Shared Access Signature (SAS) token
|
638
|
-
* `azure_blob_storage_dns_suffix` (string): Custom DNS suffix
|
639
|
-
* `azure_files_storage_account` (string): Azure File Storage Account name
|
640
|
-
* `azure_files_storage_share_name` (string): Azure File Storage Share name
|
641
|
-
* `azure_files_storage_dns_suffix` (string): Custom DNS suffix
|
642
|
-
* `azure_files_storage_sas_token` (string): Shared Access Signature (SAS) token
|
643
|
-
* `s3_compatible_bucket` (string): S3-compatible Bucket name
|
644
|
-
* `s3_compatible_endpoint` (string): S3-compatible endpoint
|
645
|
-
* `s3_compatible_region` (string): S3-compatible endpoint
|
646
|
-
* `enable_dedicated_ips` (boolean): `true` if remote server only accepts connections from dedicated IPs
|
647
|
-
* `s3_compatible_access_key` (string): S3-compatible Access Key.
|
648
|
-
* `s3_compatible_secret_key` (string): S3-compatible secret key
|
649
|
-
* `files_agent_root` (string): Agent local root path
|
650
|
-
* `files_agent_permission_set` (string): Local permissions for files agent. read_only, write_only, or read_write
|
651
|
-
* `files_agent_version` (string): Files Agent version
|
652
|
-
* `filebase_access_key` (string): Filebase Access Key.
|
653
|
-
* `filebase_secret_key` (string): Filebase secret key
|
654
|
-
* `filebase_bucket` (string): Filebase Bucket name
|
655
|
-
* `cloudflare_access_key` (string): Cloudflare Access Key.
|
656
|
-
* `cloudflare_secret_key` (string): Cloudflare secret key
|
657
|
-
* `cloudflare_bucket` (string): Cloudflare Bucket name
|
658
|
-
* `cloudflare_endpoint` (string): Cloudflare endpoint
|
659
|
-
* `dropbox_teams` (boolean): List Team folders in root
|
660
|
-
* `linode_access_key` (string): Linode Access Key.
|
661
|
-
* `linode_secret_key` (string): Linode secret key
|
662
|
-
* `linode_bucket` (string): Linode Bucket name
|
663
|
-
* `linode_region` (string): Linode region
|
673
|
+
* `wasabi_access_key` (string): Wasabi: Access Key.
|
674
|
+
* `wasabi_bucket` (string): Wasabi: Bucket name
|
675
|
+
* `wasabi_region` (string): Wasabi: Region
|
664
676
|
|
665
677
|
|
666
678
|
---
|