files.com 1.0.351 → 1.0.352

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: d113b270a9915852eaef441b1e5b23877e38646093a991df4f6b79509c03ce6e
4
- data.tar.gz: 3aada33beed62b371ff925fbc548f905c94bc38f1340fbab7311b8b770a41ced
3
+ metadata.gz: 18a1c17dca4c9b5d72b9d7268c50b12d0f053406e44eccb496d36c545b3dc2b4
4
+ data.tar.gz: 7909a2ad4c46c27410ed71c4ee87eb3fef369a46e81d9d924622024e0eeb42db
5
5
  SHA512:
6
- metadata.gz: 11e555a77799cefe22b22627870f394e8b97318ebb40bbacef840a721333a1d29b4e4ac5d6d43eb3a9b7149bf2428ba57553b7649a99d9a0e838d6530ae28505
7
- data.tar.gz: 1d80c27ca0e79b961b57ae12ba9926688c782286fca65e80a8a1f20596df58d73ad1f073ba8f3ecb73340d954e8bdce6eeb8595b8a2f7c1d1d4ecb8743fd0900
6
+ metadata.gz: 5f8830f0915d8ab26a68cf91b8dc71688ac100d34507e45dd583128970056666df43df5be4dc599f912511d60218951ebc81b624fb1f97aa1632e742b575fd26
7
+ data.tar.gz: 508b5c73daff23da85effee27daf8d9163025d078d1af69bfeac9092e22c2ab8b676dcb1e7907037ec614653f56277e76510b1df4aafdb44673f0a0050738dd6
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.351
1
+ 1.0.352
data/docs/snapshot.md CHANGED
@@ -4,6 +4,7 @@
4
4
 
5
5
  ```
6
6
  {
7
+ "id": 1,
7
8
  "expires_at": "2000-01-01T01:00:00Z",
8
9
  "finalized_at": "2000-01-01T01:00:00Z",
9
10
  "name": "My Snapshot",
@@ -12,13 +13,13 @@
12
13
  }
13
14
  ```
14
15
 
16
+ * `id` (int64): The snapshot's unique ID.
15
17
  * `expires_at` (date-time): When the snapshot expires.
16
18
  * `finalized_at` (date-time): When the snapshot was finalized.
17
19
  * `name` (string): A name for the snapshot.
18
20
  * `user_id` (int64): The user that created this snapshot, if applicable.
19
21
  * `bundle_id` (int64): The bundle using this snapshot, if applicable.
20
22
  * `paths` (array(string)): An array of paths to add to the snapshot.
21
- * `id` (int64): Snapshot ID.
22
23
 
23
24
 
24
25
  ---
data/docs/sso_strategy.md CHANGED
@@ -31,6 +31,7 @@
31
31
  "provision_group_required": "example",
32
32
  "provision_email_signup_groups": "Employees",
33
33
  "provision_site_admin_groups": "Employees",
34
+ "provision_group_admin_groups": "Employees",
34
35
  "provision_attachments_permission": true,
35
36
  "provision_dav_permission": true,
36
37
  "provision_ftp_permission": true,
@@ -77,6 +78,7 @@
77
78
  * `provision_group_required` (string): Comma or newline separated list of group names (with optional wildcards) to require membership for user provisioning.
78
79
  * `provision_email_signup_groups` (string): Comma-separated list of group names whose members will be created with email_signup authentication.
79
80
  * `provision_site_admin_groups` (string): Comma-separated list of group names whose members will be created as Site Admins.
81
+ * `provision_group_admin_groups` (string): Comma-separated list of group names whose members will be provisioned as Group Admins.
80
82
  * `provision_attachments_permission` (boolean): DEPRECATED: Auto-provisioned users get Sharing permission. Use a Group with the Bundle permission instead.
81
83
  * `provision_dav_permission` (boolean): Auto-provisioned users get WebDAV permission?
82
84
  * `provision_ftp_permission` (boolean): Auto-provisioned users get FTP permission?
@@ -9,6 +9,15 @@ module Files
9
9
  @options = options || {}
10
10
  end
11
11
 
12
+ # int64 - The snapshot's unique ID.
13
+ def id
14
+ @attributes[:id]
15
+ end
16
+
17
+ def id=(value)
18
+ @attributes[:id] = value
19
+ end
20
+
12
21
  # date-time - When the snapshot expires.
13
22
  def expires_at
14
23
  @attributes[:expires_at]
@@ -63,15 +72,6 @@ module Files
63
72
  @attributes[:paths] = value
64
73
  end
65
74
 
66
- # int64 - Snapshot ID.
67
- def id
68
- @attributes[:id]
69
- end
70
-
71
- def id=(value)
72
- @attributes[:id] = value
73
- end
74
-
75
75
  # Parameters:
76
76
  # expires_at - string - When the snapshot expires.
77
77
  # name - string - A name for the snapshot.
@@ -144,6 +144,11 @@ module Files
144
144
  @attributes[:provision_site_admin_groups]
145
145
  end
146
146
 
147
+ # string - Comma-separated list of group names whose members will be provisioned as Group Admins.
148
+ def provision_group_admin_groups
149
+ @attributes[:provision_group_admin_groups]
150
+ end
151
+
147
152
  # boolean - DEPRECATED: Auto-provisioned users get Sharing permission. Use a Group with the Bundle permission instead.
148
153
  def provision_attachments_permission
149
154
  @attributes[:provision_attachments_permission]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.351
4
+ version: 1.0.352
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com