files.com 1.1.592 → 1.1.593
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/desktop_configuration_profile.md +4 -4
- data/lib/files.com/models/desktop_configuration_profile.rb +4 -4
- 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: 3e71b6a70e948d401b44931dc92715fb3dfc529c00fdbced61714ccf25a1bfb7
|
|
4
|
+
data.tar.gz: 5156edaf9e09cff53626c92799fa246a5a0241161ac7268ac0199b6aa8e1d8b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cbf7ea0ead542b1db1c49080b4e103f10d1831373986d404a0a20dde07e95dc611e3b7b442887e87d5de4d1e3cc0dc5d2461d5028b4424294d826f8c7b1aeb0
|
|
7
|
+
data.tar.gz: c1754b95991af52f6f781b44f92d2ea7dcf4e33fd643c53851dad22769bf31cf22fce298ce76a01bfc4de7fcd8d3da8b58716b7983a62ed5ccb64757181f7725
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.593
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* `name` (string): Profile name
|
|
19
19
|
* `workspace_id` (int64): Workspace ID
|
|
20
20
|
* `use_for_all_users` (boolean): Whether this profile applies to all users in the Workspace by default
|
|
21
|
-
* `mount_mappings` (object): Mount point mappings for the desktop app. Keys
|
|
21
|
+
* `mount_mappings` (object): Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
---
|
|
@@ -66,7 +66,7 @@ Files::DesktopConfigurationProfile.create(
|
|
|
66
66
|
### Parameters
|
|
67
67
|
|
|
68
68
|
* `name` (string): Required - Profile name
|
|
69
|
-
* `mount_mappings` (object): Required - Mount point mappings for the desktop app. Keys
|
|
69
|
+
* `mount_mappings` (object): Required - Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
|
|
70
70
|
* `workspace_id` (int64): Workspace ID
|
|
71
71
|
* `use_for_all_users` (boolean): Whether this profile applies to all users in the Workspace by default
|
|
72
72
|
|
|
@@ -89,7 +89,7 @@ Files::DesktopConfigurationProfile.update(id,
|
|
|
89
89
|
* `id` (int64): Required - Desktop Configuration Profile ID.
|
|
90
90
|
* `name` (string): Profile name
|
|
91
91
|
* `workspace_id` (int64): Workspace ID
|
|
92
|
-
* `mount_mappings` (object): Mount point mappings for the desktop app. Keys
|
|
92
|
+
* `mount_mappings` (object): Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
|
|
93
93
|
* `use_for_all_users` (boolean): Whether this profile applies to all users in the Workspace by default
|
|
94
94
|
|
|
95
95
|
|
|
@@ -126,7 +126,7 @@ desktop_configuration_profile.update(
|
|
|
126
126
|
* `id` (int64): Required - Desktop Configuration Profile ID.
|
|
127
127
|
* `name` (string): Profile name
|
|
128
128
|
* `workspace_id` (int64): Workspace ID
|
|
129
|
-
* `mount_mappings` (object): Mount point mappings for the desktop app. Keys
|
|
129
|
+
* `mount_mappings` (object): Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
|
|
130
130
|
* `use_for_all_users` (boolean): Whether this profile applies to all users in the Workspace by default
|
|
131
131
|
|
|
132
132
|
|
|
@@ -45,7 +45,7 @@ module Files
|
|
|
45
45
|
@attributes[:use_for_all_users] = value
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
# object - Mount point mappings for the desktop app. Keys
|
|
48
|
+
# object - Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
|
|
49
49
|
def mount_mappings
|
|
50
50
|
@attributes[:mount_mappings]
|
|
51
51
|
end
|
|
@@ -57,7 +57,7 @@ module Files
|
|
|
57
57
|
# Parameters:
|
|
58
58
|
# name - string - Profile name
|
|
59
59
|
# workspace_id - int64 - Workspace ID
|
|
60
|
-
# mount_mappings - object - Mount point mappings for the desktop app. Keys
|
|
60
|
+
# mount_mappings - object - Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
|
|
61
61
|
# use_for_all_users - boolean - Whether this profile applies to all users in the Workspace by default
|
|
62
62
|
def update(params = {})
|
|
63
63
|
params ||= {}
|
|
@@ -135,7 +135,7 @@ module Files
|
|
|
135
135
|
|
|
136
136
|
# Parameters:
|
|
137
137
|
# name (required) - string - Profile name
|
|
138
|
-
# mount_mappings (required) - object - Mount point mappings for the desktop app. Keys
|
|
138
|
+
# mount_mappings (required) - object - Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
|
|
139
139
|
# workspace_id - int64 - Workspace ID
|
|
140
140
|
# use_for_all_users - boolean - Whether this profile applies to all users in the Workspace by default
|
|
141
141
|
def self.create(params = {}, options = {})
|
|
@@ -152,7 +152,7 @@ module Files
|
|
|
152
152
|
# Parameters:
|
|
153
153
|
# name - string - Profile name
|
|
154
154
|
# workspace_id - int64 - Workspace ID
|
|
155
|
-
# mount_mappings - object - Mount point mappings for the desktop app. Keys
|
|
155
|
+
# mount_mappings - object - Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
|
|
156
156
|
# use_for_all_users - boolean - Whether this profile applies to all users in the Workspace by default
|
|
157
157
|
def self.update(id, params = {}, options = {})
|
|
158
158
|
params ||= {}
|
data/lib/files.com/version.rb
CHANGED