files.com 1.0.79 → 1.0.80

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5d4c181cb97ed379aa31f30e0ed58a2d61ec8c8e7bddc4ec34dbcd2acda9445f
4
- data.tar.gz: 633e26d621df9868a6d4020893a416f46fc93830e74f967224f1e304fe4f976a
3
+ metadata.gz: 4853b6244fc875ee850f59c63fe883fd68cfaaaf36415985fbdcc74735d966d8
4
+ data.tar.gz: 194e5633e68ef1d24518345cab7cf1968117dde31d0b73394346f13b922a8f34
5
5
  SHA512:
6
- metadata.gz: 759cc4732208a1feba6206a4a6e43a2cb6ef720a40dfbb93e1fa7b1eb06538588965babe150b55ee980787d4366571db48f6493bb1207b91bae9447e60a5a525
7
- data.tar.gz: 70bc236792070cbe2f7ae1536f10777792e936adb5df0224ea0cd9a85c53d5556b9761a731f883e0a4c501d9fc26d67163fb87a8adc2366a029bead99a320333
6
+ metadata.gz: c4fccf56177f29e5c33a9337db5945305922688e85ebfb83dd5fb65e620527f85a675e3150769ceb700a0662be7122c2e86665f8920e2396b67a9debd245bc2c
7
+ data.tar.gz: 663ed920eec49bb22b4a4908e67784948bee85264360e1771275042918626235e20447518ddd817e42cd1947e8c9e0d5cdf245a7700d7192d2a0308158b15928
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.79
1
+ 1.0.80
@@ -29,7 +29,7 @@
29
29
  "auth_setup_link": "auth/:provider",
30
30
  "auth_status": "in_setup",
31
31
  "auth_account_name": "me@example.com",
32
- "one_drive_account_type": "personnel"
32
+ "one_drive_account_type": "personal"
33
33
  }
34
34
  ```
35
35
 
@@ -58,7 +58,7 @@
58
58
  * `auth_setup_link` (string): Returns link to login with an Oauth provider
59
59
  * `auth_status` (string): Either `in_setup` or `complete`
60
60
  * `auth_account_name` (string): Describes the authorized account
61
- * `one_drive_account_type` (string): Either personnel or business_other account types
61
+ * `one_drive_account_type` (string): Either personal or business_other account types
62
62
  * `aws_access_key` (string): AWS Access Key.
63
63
  * `aws_secret_key` (string): AWS secret key.
64
64
  * `password` (string): Password if needed.
@@ -130,7 +130,7 @@ Files::RemoteServer.create(
130
130
  rackspace_username: "rackspaceuser",
131
131
  rackspace_region: "dfw",
132
132
  rackspace_container: "my-container",
133
- one_drive_account_type: "personnel"
133
+ one_drive_account_type: "personal"
134
134
  )
135
135
  ```
136
136
 
@@ -167,7 +167,7 @@ Files::RemoteServer.create(
167
167
  * `rackspace_username` (string): Rackspace username used to login to the Rackspace Cloud Control Panel.
168
168
  * `rackspace_region` (string): Three letter airport code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
169
169
  * `rackspace_container` (string): The name of the container (top level directory) where files will sync.
170
- * `one_drive_account_type` (string): Either personnel or business_other account types
170
+ * `one_drive_account_type` (string): Either personal or business_other account types
171
171
 
172
172
 
173
173
  ---
@@ -197,7 +197,7 @@ Files::RemoteServer.update(id,
197
197
  rackspace_username: "rackspaceuser",
198
198
  rackspace_region: "dfw",
199
199
  rackspace_container: "my-container",
200
- one_drive_account_type: "personnel"
200
+ one_drive_account_type: "personal"
201
201
  )
202
202
  ```
203
203
 
@@ -235,7 +235,7 @@ Files::RemoteServer.update(id,
235
235
  * `rackspace_username` (string): Rackspace username used to login to the Rackspace Cloud Control Panel.
236
236
  * `rackspace_region` (string): Three letter airport code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
237
237
  * `rackspace_container` (string): The name of the container (top level directory) where files will sync.
238
- * `one_drive_account_type` (string): Either personnel or business_other account types
238
+ * `one_drive_account_type` (string): Either personal or business_other account types
239
239
 
240
240
 
241
241
  ---
@@ -280,7 +280,7 @@ remote_server.update(
280
280
  rackspace_username: "rackspaceuser",
281
281
  rackspace_region: "dfw",
282
282
  rackspace_container: "my-container",
283
- one_drive_account_type: "personnel"
283
+ one_drive_account_type: "personal"
284
284
  )
285
285
  ```
286
286
 
@@ -318,7 +318,7 @@ remote_server.update(
318
318
  * `rackspace_username` (string): Rackspace username used to login to the Rackspace Cloud Control Panel.
319
319
  * `rackspace_region` (string): Three letter airport code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
320
320
  * `rackspace_container` (string): The name of the container (top level directory) where files will sync.
321
- * `one_drive_account_type` (string): Either personnel or business_other account types
321
+ * `one_drive_account_type` (string): Either personal or business_other account types
322
322
 
323
323
 
324
324
  ---
@@ -234,7 +234,7 @@ module Files
234
234
  @attributes[:auth_account_name] = value
235
235
  end
236
236
 
237
- # string - Either personnel or business_other account types
237
+ # string - Either personal or business_other account types
238
238
  def one_drive_account_type
239
239
  @attributes[:one_drive_account_type]
240
240
  end
@@ -374,7 +374,7 @@ module Files
374
374
  # rackspace_username - string - Rackspace username used to login to the Rackspace Cloud Control Panel.
375
375
  # rackspace_region - string - Three letter airport code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
376
376
  # rackspace_container - string - The name of the container (top level directory) where files will sync.
377
- # one_drive_account_type - string - Either personnel or business_other account types
377
+ # one_drive_account_type - string - Either personal or business_other account types
378
378
  def update(params = {})
379
379
  params ||= {}
380
380
  params[:id] = @attributes[:id]
@@ -506,7 +506,7 @@ module Files
506
506
  # rackspace_username - string - Rackspace username used to login to the Rackspace Cloud Control Panel.
507
507
  # rackspace_region - string - Three letter airport code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
508
508
  # rackspace_container - string - The name of the container (top level directory) where files will sync.
509
- # one_drive_account_type - string - Either personnel or business_other account types
509
+ # one_drive_account_type - string - Either personal or business_other account types
510
510
  def self.create(params = {}, options = {})
511
511
  raise InvalidParameterError.new("Bad parameter: aws_access_key must be an String") if params.dig(:aws_access_key) and !params.dig(:aws_access_key).is_a?(String)
512
512
  raise InvalidParameterError.new("Bad parameter: aws_secret_key must be an String") if params.dig(:aws_secret_key) and !params.dig(:aws_secret_key).is_a?(String)
@@ -576,7 +576,7 @@ module Files
576
576
  # rackspace_username - string - Rackspace username used to login to the Rackspace Cloud Control Panel.
577
577
  # rackspace_region - string - Three letter airport code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
578
578
  # rackspace_container - string - The name of the container (top level directory) where files will sync.
579
- # one_drive_account_type - string - Either personnel or business_other account types
579
+ # one_drive_account_type - string - Either personal or business_other account types
580
580
  def self.update(id, params = {}, options = {})
581
581
  params ||= {}
582
582
  params[:id] = id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.79
4
+ version: 1.0.80
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-03 00:00:00.000000000 Z
11
+ date: 2020-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable