files.com 1.2.125 → 1.2.127
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.
- package/_VERSION +1 -1
- package/docs/models/Permission.md +5 -5
- package/docs/models/SiemHttpDestination.md +396 -0
- package/lib/Files.js +1 -1
- package/lib/models/Permission.js +5 -5
- package/lib/models/SiemHttpDestination.js +1062 -0
- package/package.json +1 -1
- package/src/Files.js +1 -1
- package/src/models/Permission.js +5 -5
- package/src/models/SiemHttpDestination.js +805 -0
package/package.json
CHANGED
package/src/Files.js
CHANGED
package/src/models/Permission.js
CHANGED
@@ -35,7 +35,7 @@ class Permission {
|
|
35
35
|
this.attributes.id = value
|
36
36
|
}
|
37
37
|
|
38
|
-
// string #
|
38
|
+
// string # Path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
39
39
|
getPath = () => this.attributes.path
|
40
40
|
|
41
41
|
setPath = value => {
|
@@ -49,7 +49,7 @@ class Permission {
|
|
49
49
|
this.attributes.user_id = value
|
50
50
|
}
|
51
51
|
|
52
|
-
// string #
|
52
|
+
// string # Username (if applicable)
|
53
53
|
getUsername = () => this.attributes.username
|
54
54
|
|
55
55
|
setUsername = value => {
|
@@ -63,21 +63,21 @@ class Permission {
|
|
63
63
|
this.attributes.group_id = value
|
64
64
|
}
|
65
65
|
|
66
|
-
// string # Group name if applicable
|
66
|
+
// string # Group name (if applicable)
|
67
67
|
getGroupName = () => this.attributes.group_name
|
68
68
|
|
69
69
|
setGroupName = value => {
|
70
70
|
this.attributes.group_name = value
|
71
71
|
}
|
72
72
|
|
73
|
-
// string # Permission type
|
73
|
+
// string # Permission type. See the table referenced in the documentation for an explanation of each permission.
|
74
74
|
getPermission = () => this.attributes.permission
|
75
75
|
|
76
76
|
setPermission = value => {
|
77
77
|
this.attributes.permission = value
|
78
78
|
}
|
79
79
|
|
80
|
-
// boolean #
|
80
|
+
// boolean # Recursive: does this permission apply to subfolders?
|
81
81
|
getRecursive = () => this.attributes.recursive
|
82
82
|
|
83
83
|
setRecursive = value => {
|