Skip to content

Commit 7fde663

Browse files
authored
[SYNPY-1625] Add JSON schema organization management functions (#1225)
* Add JSON schema organization management functions
1 parent 02d3b38 commit 7fde663

File tree

5 files changed

+769
-50
lines changed

5 files changed

+769
-50
lines changed

synapseclient/api/__init__.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,22 @@
5959
)
6060
from .json_schema_services import (
6161
bind_json_schema_to_entity,
62+
create_organization,
63+
delete_json_schema,
6264
delete_json_schema_from_entity,
65+
delete_organization,
6366
get_invalid_json_schema_validation,
67+
get_json_schema_body,
6468
get_json_schema_derived_keys,
6569
get_json_schema_from_entity,
6670
get_json_schema_validation_statistics,
71+
get_organization,
72+
get_organization_acl,
73+
list_json_schema_versions,
74+
list_json_schemas,
75+
list_organizations,
76+
list_organizations_sync,
77+
update_organization_acl,
6778
validate_entity_with_json_schema,
6879
)
6980
from .table_services import (
@@ -170,6 +181,17 @@
170181
"get_json_schema_validation_statistics",
171182
"get_invalid_json_schema_validation",
172183
"get_json_schema_derived_keys",
184+
"create_organization",
185+
"get_organization",
186+
"list_organizations",
187+
"list_organizations_sync",
188+
"delete_organization",
189+
"get_organization_acl",
190+
"update_organization_acl",
191+
"list_json_schemas",
192+
"list_json_schema_versions",
193+
"get_json_schema_body",
194+
"delete_json_schema",
173195
# api client
174196
"rest_post_paginated_async",
175197
"rest_get_paginated_async",

0 commit comments

Comments
 (0)