Skip to content

Commit 37ca2ac

Browse files
Merge pull request #1536 from virtualcell/acl-for-vcell-support
Add VCell Support Role
2 parents 0a3f23c + df71bca commit 37ca2ac

100 files changed

Lines changed: 1157 additions & 1148 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

python-restclient/.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ docs/Origin.md
4141
docs/Publication.md
4242
docs/PublicationInfo.md
4343
docs/PublicationResourceApi.md
44+
docs/SPECIALCLAIM.md
4445
docs/SchedulerStatus.md
4546
docs/SimulationExecutionStatusRecord.md
4647
docs/SimulationJobStatusRecord.md
@@ -127,6 +128,7 @@ vcell_client/models/simulation_queue_entry_status_record.py
127128
vcell_client/models/simulation_queue_id.py
128129
vcell_client/models/simulation_status_persistent_record.py
129130
vcell_client/models/source_model.py
131+
vcell_client/models/specialclaim.py
130132
vcell_client/models/status.py
131133
vcell_client/models/status_message.py
132134
vcell_client/models/user.py

python-restclient/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ Class | Method | HTTP request | Description
173173
- [Origin](docs/Origin.md)
174174
- [Publication](docs/Publication.md)
175175
- [PublicationInfo](docs/PublicationInfo.md)
176+
- [SPECIALCLAIM](docs/SPECIALCLAIM.md)
176177
- [SchedulerStatus](docs/SchedulerStatus.md)
177178
- [SimulationExecutionStatusRecord](docs/SimulationExecutionStatusRecord.md)
178179
- [SimulationJobStatusRecord](docs/SimulationJobStatusRecord.md)
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# SPECIALCLAIM
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
8+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
9+
10+
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# SpecialUser
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**is_special** | **str** | | [default to 'yes']
8+
**my_specials** | [**List[SPECIALCLAIM]**](SPECIALCLAIM.md) | | [optional]
9+
10+
## Example
11+
12+
```python
13+
from vcell_client.models.special_user import SpecialUser
14+
15+
# TODO update the JSON string below
16+
json = "{}"
17+
# create an instance of SpecialUser from a JSON string
18+
special_user_instance = SpecialUser.from_json(json)
19+
# print the JSON string representation of the object
20+
print SpecialUser.to_json()
21+
22+
# convert the object into a dict
23+
special_user_dict = special_user_instance.to_dict()
24+
# create an instance of SpecialUser from a dict
25+
special_user_form_dict = special_user.from_dict(special_user_dict)
26+
```
27+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28+
29+

python-restclient/docs/User.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**user_name** | **str** | | [optional]
88
**key** | **str** | | [optional]
9+
**my_specials** | [**List[SPECIALCLAIM]**](SPECIALCLAIM.md) | | [optional]
910

1011
## Example
1112

python-restclient/test/test_analyzed_file.py

Lines changed: 0 additions & 79 deletions
This file was deleted.

python-restclient/test/test_analyzed_results_from_field_data.py

Lines changed: 0 additions & 79 deletions
This file was deleted.

python-restclient/test/test_bio_model.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ def make_instance(self, include_optional) -> BioModel:
5050
owner_name = '',
5151
owner_key = '',
5252
simulation_key_list = [
53-
vcell_client.models.key_value.KeyValue(
54-
value = 1.337, )
53+
''
5554
],
5655
applications = [
5756
vcell_client.models.application.Application()

0 commit comments

Comments
 (0)