files.com 1.0.351 → 1.0.352
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/snapshot.md +2 -1
- data/docs/sso_strategy.md +2 -0
- data/lib/files.com/models/snapshot.rb +9 -9
- data/lib/files.com/models/sso_strategy.rb +5 -0
- 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: 18a1c17dca4c9b5d72b9d7268c50b12d0f053406e44eccb496d36c545b3dc2b4
|
|
4
|
+
data.tar.gz: 7909a2ad4c46c27410ed71c4ee87eb3fef369a46e81d9d924622024e0eeb42db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f8830f0915d8ab26a68cf91b8dc71688ac100d34507e45dd583128970056666df43df5be4dc599f912511d60218951ebc81b624fb1f97aa1632e742b575fd26
|
|
7
|
+
data.tar.gz: 508b5c73daff23da85effee27daf8d9163025d078d1af69bfeac9092e22c2ab8b676dcb1e7907037ec614653f56277e76510b1df4aafdb44673f0a0050738dd6
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
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]
|