-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc155bd
commit a077a18
Showing
6 changed files
with
36 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ service-language: | |
python | ||
|
||
module-version: | ||
0.1.0-2alpha | ||
0.1.1 | ||
|
||
owners: | ||
[gaprice, slebras] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,9 +57,9 @@ class SampleService: | |
# state. A method could easily clobber the state set by another while | ||
# the latter method is running. | ||
######################################### noqa | ||
VERSION = "0.1.0-2alpha" | ||
VERSION = "0.1.1" | ||
GIT_URL = "[email protected]:kbase/sample_service.git" | ||
GIT_COMMIT_HASH = "33909140352e79b5aa3320d4b2fe66798ef9b92f" | ||
GIT_COMMIT_HASH = "3f492c0c498144f40fb05f002178dbaa9fee6e0e" | ||
|
||
#BEGIN_CLASS_HEADER | ||
#END_CLASS_HEADER | ||
|
@@ -518,17 +518,19 @@ def update_sample_acls(self, ctx, params): | |
def update_samples_acls(self, ctx, params): | ||
""" | ||
Update the ACLs of many samples. | ||
:param params: instance of type "UpdateSamplesACLsParams" -> | ||
structure: parameter "ids" of list of type "sample_id" (A Sample | ||
ID. Must be globally unique. Always assigned by the Sample | ||
service.), parameter "admin" of list of type "user" (A user's | ||
username.), parameter "write" of list of type "user" (A user's | ||
username.), parameter "read" of list of type "user" (A user's | ||
username.), parameter "remove" of list of type "user" (A user's | ||
username.), parameter "public_read" of Long, parameter "at_least" | ||
of type "boolean" (A boolean value, 0 for false, 1 for true.), | ||
parameter "as_admin" of type "boolean" (A boolean value, 0 for | ||
false, 1 for true.) | ||
:param params: instance of type "UpdateSamplesACLsParams" | ||
(update_samples_acls parameters. These parameters are the same as | ||
update_sample_acls, except: ids - a list of IDs of samples to | ||
modify.) -> structure: parameter "ids" of list of type "sample_id" | ||
(A Sample ID. Must be globally unique. Always assigned by the | ||
Sample service.), parameter "admin" of list of type "user" (A | ||
user's username.), parameter "write" of list of type "user" (A | ||
user's username.), parameter "read" of list of type "user" (A | ||
user's username.), parameter "remove" of list of type "user" (A | ||
user's username.), parameter "public_read" of Long, parameter | ||
"at_least" of type "boolean" (A boolean value, 0 for false, 1 for | ||
true.), parameter "as_admin" of type "boolean" (A boolean value, 0 | ||
for false, 1 for true.) | ||
""" | ||
# ctx is the context object | ||
#BEGIN update_samples_acls | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters