Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions synapseclient/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,28 @@
get_project_setting,
update_project_setting,
)
from .search_services import (
autocomplete_search,
bind_search_config_to_entity,
clear_search_config_binding,
create_column_analyzer_override,
create_search_configuration,
create_synonym_set,
create_text_analyzer,
get_column_analyzer_override,
get_search_config_binding,
get_search_configuration,
get_synonym_set,
get_text_analyzer,
list_column_analyzer_overrides,
list_search_configurations,
list_synonym_sets,
list_text_analyzers,
update_column_analyzer_override,
update_search_configuration,
update_synonym_set,
update_text_analyzer,
)
from .storage_location_services import (
create_storage_location_setting,
get_storage_location_setting,
Expand Down Expand Up @@ -388,4 +410,25 @@
"create_project_setting",
"update_project_setting",
"delete_project_setting",
# search_services
"create_text_analyzer",
"get_text_analyzer",
"update_text_analyzer",
"list_text_analyzers",
"create_column_analyzer_override",
"get_column_analyzer_override",
"update_column_analyzer_override",
"list_column_analyzer_overrides",
"create_synonym_set",
"get_synonym_set",
"update_synonym_set",
"list_synonym_sets",
"create_search_configuration",
"get_search_configuration",
"update_search_configuration",
"list_search_configurations",
"bind_search_config_to_entity",
"get_search_config_binding",
"clear_search_config_binding",
"autocomplete_search",
]
2 changes: 2 additions & 0 deletions synapseclient/api/entity_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ class type. This will also download the file if `download_file` is set to True.
MaterializedView,
Project,
RecordSet,
SearchIndex,
SubmissionView,
Table,
VirtualTable,
Expand Down Expand Up @@ -379,6 +380,7 @@ class type. This will also download the file if `download_file` is set to True.
concrete_types.RECORD_SET_ENTITY: RecordSet,
concrete_types.SUBMISSION_VIEW: SubmissionView,
concrete_types.VIRTUAL_TABLE: VirtualTable,
concrete_types.SEARCH_INDEX_ENTITY: SearchIndex,
concrete_types.LINK_ENTITY: Link,
concrete_types.DOCKER_REPOSITORY: DockerRepository,
}
Expand Down
Loading
Loading