Skip to content

Search Configuration

Analyzer, synonym, and configuration resources that control how a SearchIndex builds its OpenSearch index.

API reference

synapseclient.models.SearchConfiguration dataclass

Bases: OrgScopedResource

Bundles the index-wide default analyzer and per-column overrides used to build a SearchIndex.

A SearchConfiguration belongs to an Organization, referenced by organization_name. Find an Organization you already have access to with synapseclient.models.organization.list_organizations(), or create one with synapseclient.models.Organization before creating a SearchConfiguration.

Represents a Synapse SearchConfiguration.

Note: SearchConfiguration has no delete endpoint on the Synapse REST API. Once created, it cannot be removed, and its owning Organization can no longer be deleted either. Choose organization_name and name deliberately.

Create a SearchConfiguration.

 

from synapseclient import Synapse
from synapseclient.models import SearchConfiguration

syn = Synapse()
syn.login()

config = SearchConfiguration(
    organization_name="my.existing.organization",
    name="default_config",
    description="Default search configuration for this project's indexes",
    # Reference a previously-created TextAnalyzer by its qualified name...
    default_analyzer={"$ref": "my.existing.organization-stemmed_english"},
)
config = config.store()
print(f"Created SearchConfiguration: {config.id} ({config.qualified_name})")
Get an existing SearchConfiguration by ID.

 

from synapseclient import Synapse
from synapseclient.models import SearchConfiguration

syn = Synapse()
syn.login()

config = SearchConfiguration(id="12345").get()
print(config.name, config.default_analyzer)
Update an existing SearchConfiguration.

 

from synapseclient import Synapse
from synapseclient.models import SearchConfiguration

syn = Synapse()
syn.login()

config = SearchConfiguration(id="12345").get()
config.column_analyzer_overrides.append(
    {"$ref": "my.existing.organization-abstract_overrides"}
)
config = config.store()
print(f"Updated SearchConfiguration etag: {config.etag}")
List SearchConfigurations in an Organization.

 

from synapseclient import Synapse
from synapseclient.models import SearchConfiguration

syn = Synapse()
syn.login()

configs = SearchConfiguration.list(organization_name="my.existing.organization")
for config in configs:
    print(config.id, config.qualified_name)
Source code in synapseclient/models/search_management.py
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
@dataclass
class SearchConfiguration(OrgScopedResource):
    """Bundles the index-wide default analyzer and per-column overrides used to
    build a SearchIndex.

    A SearchConfiguration belongs to an Organization, referenced by
    `organization_name`. Find an Organization you already have access to with
    `synapseclient.models.organization.list_organizations()`, or create one with
    `synapseclient.models.Organization` before creating a SearchConfiguration.

    Represents a [Synapse SearchConfiguration](https://rest-docs.synapse.org/rest/org/sagebionetworks/repo/model/search/table/SearchConfiguration.html).

    Note: SearchConfiguration has no delete endpoint on the Synapse REST API.
    Once created, it cannot be removed, and its owning Organization can no
    longer be deleted either. Choose `organization_name` and `name` deliberately.

    Example: Create a SearchConfiguration.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import SearchConfiguration

        syn = Synapse()
        syn.login()

        config = SearchConfiguration(
            organization_name="my.existing.organization",
            name="default_config",
            description="Default search configuration for this project's indexes",
            # Reference a previously-created TextAnalyzer by its qualified name...
            default_analyzer={"$ref": "my.existing.organization-stemmed_english"},
        )
        config = config.store()
        print(f"Created SearchConfiguration: {config.id} ({config.qualified_name})")
        ```

    Example: Get an existing SearchConfiguration by ID.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import SearchConfiguration

        syn = Synapse()
        syn.login()

        config = SearchConfiguration(id="12345").get()
        print(config.name, config.default_analyzer)
        ```

    Example: Update an existing SearchConfiguration.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import SearchConfiguration

        syn = Synapse()
        syn.login()

        config = SearchConfiguration(id="12345").get()
        config.column_analyzer_overrides.append(
            {"$ref": "my.existing.organization-abstract_overrides"}
        )
        config = config.store()
        print(f"Updated SearchConfiguration etag: {config.etag}")
        ```

    Example: List SearchConfigurations in an Organization.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import SearchConfiguration

        syn = Synapse()
        syn.login()

        configs = SearchConfiguration.list(organization_name="my.existing.organization")
        for config in configs:
            print(config.id, config.qualified_name)
        ```
    """

    _CREATE_FN = staticmethod(create_search_configuration)
    _GET_FN = staticmethod(get_search_configuration)
    _UPDATE_FN = staticmethod(update_search_configuration)
    _LIST_FN = staticmethod(list_search_configurations)

    id: Optional[str] = None
    """The unique ID of this search configuration."""

    organization_name: Optional[str] = None
    """The name of the Organization this resource belongs to. Immutable after
    creation."""

    name: Optional[str] = None
    """The resource name. Must start with a letter and contain only letters,
    digits, and underscores. Unique within the organization and immutable
    after creation. Used as part of the qualified name
    ({organizationName}-{name}) when referenced by other resources."""

    description: Optional[str] = None
    """Optional description."""

    default_analyzer: Optional[Union[AnalyzerRef, Dict[str, Any]]] = None
    """Optional. The analyzer that supplies this index's `analysis.analyzer.default`
    slot. Either a reference to a saved TextAnalyzer written as
    `{"$ref": "{organizationName}-{name}"}` (see
    [AnalyzerRef][synapseclient.models.search_dsl.AnalyzerRef]), or an inline
    OpenSearch [`settings.analysis`](https://docs.opensearch.org/latest/analyzers/)
    block."""
    column_analyzer_overrides: Optional[List[Union[AnalyzerRef, Dict[str, Any]]]] = (
        field(default_factory=list)
    )
    """Optional ordered list of ColumnAnalyzerOverride entries. Each entry is
    either a reference `{"$ref": "{organizationName}-{name}"}` (see
    [AnalyzerRef][synapseclient.models.search_dsl.AnalyzerRef]) or an inline
    ColumnAnalyzerOverride literal."""

    etag: Optional[str] = None
    """Synapse employs an Optimistic Concurrency Control (OCC) scheme."""

    created_on: Optional[str] = None
    """The date this resource was created."""

    created_by: Optional[str] = None
    """The ID of the user that created this resource."""

    modified_on: Optional[str] = None
    """The date this resource was last modified."""

    modified_by: Optional[str] = None
    """The ID of the user that last modified this resource."""

    @property
    def qualified_name(self) -> Optional[str]:
        if self.organization_name and self.name:
            return f"{self.organization_name}-{self.name}"
        return None

    def fill_from_dict(self, data: Dict[str, Any]) -> "Self":
        self.id = data.get("id", None)
        self.organization_name = data.get("organizationName", None)
        self.name = data.get("name", None)
        self.description = data.get("description", None)
        self.default_analyzer = data.get("defaultAnalyzer", None)
        self.column_analyzer_overrides = data.get("columnAnalyzerOverrides", []) or []
        self.etag = data.get("etag", None)
        self.created_on = data.get("createdOn", None)
        self.created_by = data.get("createdBy", None)
        self.modified_on = data.get("modifiedOn", None)
        self.modified_by = data.get("modifiedBy", None)
        return self

    def to_synapse_request(self) -> Dict[str, Any]:
        body = {
            "id": self.id,
            "organizationName": self.organization_name,
            "name": self.name,
            "description": self.description,
            "defaultAnalyzer": self.default_analyzer,
            "columnAnalyzerOverrides": self.column_analyzer_overrides or None,
            "etag": self.etag,
        }
        delete_none_keys(body)
        return body

Methods:

store_async async

store_async(*, synapse_client: Optional[Synapse] = None) -> Self

Create this resource, or update it if it already has an ID.

PARAMETER DESCRIPTION
synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
Self

Itself, populated with the server-assigned ID, etag, and timestamps.

Source code in synapseclient/models/search_management.py
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
async def store_async(
    self, *, synapse_client: Optional["Synapse"] = None
) -> "Self":
    """Create this resource, or update it if it already has an ID.

    Arguments:
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        Itself, populated with the server-assigned ID, etag, and timestamps.
    """
    cls = type(self)
    if self.id:
        result = await cls._UPDATE_FN(
            self.id, self.to_synapse_request(), synapse_client=synapse_client
        )
    else:
        result = await cls._CREATE_FN(
            self.to_synapse_request(), synapse_client=synapse_client
        )
    return self.fill_from_dict(result)

get_async async

get_async(*, synapse_client: Optional[Synapse] = None) -> Self

Fetch this resource from Synapse by its ID.

PARAMETER DESCRIPTION
synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
Self

Itself, populated from the Synapse response.

RAISES DESCRIPTION
ValueError

If the id attribute has not been set.

Source code in synapseclient/models/search_management.py
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
async def get_async(self, *, synapse_client: Optional["Synapse"] = None) -> "Self":
    """Fetch this resource from Synapse by its ID.

    Arguments:
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        Itself, populated from the Synapse response.

    Raises:
        ValueError: If the ``id`` attribute has not been set.
    """
    if not self.id:
        raise ValueError(f"{type(self).__name__} must have an id set to call get.")
    cls = type(self)
    result = await cls._GET_FN(self.id, synapse_client=synapse_client)
    return self.fill_from_dict(result)

list_async async classmethod

list_async(organization_name: Optional[str] = None, *, synapse_client: Optional[Synapse] = None) -> List[Self]

List resources of this type, paginating over all pages.

PARAMETER DESCRIPTION
organization_name

If provided, only resources in this organization are returned; otherwise resources across all organizations are listed.

TYPE: Optional[str] DEFAULT: None

synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
List[Self]

A list of every matching resource across all result pages.

Source code in synapseclient/models/search_management.py
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
@classmethod
async def list_async(
    cls,
    organization_name: Optional[str] = None,
    *,
    synapse_client: Optional["Synapse"] = None,
) -> List["Self"]:
    """List resources of this type, paginating over all pages.

    Arguments:
        organization_name: If provided, only resources in this organization are
            returned; otherwise resources across all organizations are listed.
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        A list of every matching resource across all result pages.
    """
    results: List["Self"] = []
    next_page_token = None
    while True:
        page = await cls._LIST_FN(
            organization_name=organization_name,
            next_page_token=next_page_token,
            synapse_client=synapse_client,
        )
        for item in page.get("results", []) or []:
            results.append(cls().fill_from_dict(item))
        next_page_token = page.get("nextPageToken", None)
        if not next_page_token:
            break
    return results

synapseclient.models.TextAnalyzer dataclass

Bases: OrgScopedResource

A shareable, named OpenSearch custom analyzer. Used to configure how text is tokenized for a search index.

A TextAnalyzer belongs to an Organization, referenced by organization_name. Find an Organization you already have access to with synapseclient.models.organization.list_organizations(), or create one with synapseclient.models.Organization before creating a TextAnalyzer.

Represents a Synapse TextAnalyzer.

Note: TextAnalyzer has no delete endpoint on the Synapse REST API. Once created, it cannot be removed, and its owning Organization can no longer be deleted either. Choose organization_name and name deliberately.

Create a TextAnalyzer.

 

from synapseclient import Synapse
from synapseclient.models import TextAnalyzer

syn = Synapse()
syn.login()

analyzer = TextAnalyzer(
    organization_name="my.existing.organization",
    name="stemmed_english",
    description="English analyzer with stemming and lowercase filtering",
    settings={
        "analyzer": {
            "default": {
                "type": "custom",
                "tokenizer": "standard",
                "filter": ["lowercase", "porter_stem"],
            }
        }
    },
)
analyzer = analyzer.store()
print(f"Created TextAnalyzer: {analyzer.id} ({analyzer.qualified_name})")
Get an existing TextAnalyzer by ID.

 

from synapseclient import Synapse
from synapseclient.models import TextAnalyzer

syn = Synapse()
syn.login()

analyzer = TextAnalyzer(id="12345").get()
print(analyzer.name, analyzer.settings)
Update an existing TextAnalyzer.

 

from synapseclient import Synapse
from synapseclient.models import TextAnalyzer

syn = Synapse()
syn.login()

analyzer = TextAnalyzer(id="12345").get()
analyzer.description = "Updated description"
analyzer.settings["analyzer"]["default"]["filter"].append("asciifolding")
analyzer = analyzer.store()
print(f"Updated TextAnalyzer etag: {analyzer.etag}")
List TextAnalyzers in an Organization.

 

from synapseclient import Synapse
from synapseclient.models import TextAnalyzer

syn = Synapse()
syn.login()

analyzers = TextAnalyzer.list(organization_name="my.existing.organization")
for analyzer in analyzers:
    print(analyzer.id, analyzer.qualified_name)
Source code in synapseclient/models/search_management.py
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
@dataclass
class TextAnalyzer(OrgScopedResource):
    """A shareable, named OpenSearch custom analyzer. Used to configure how text
    is tokenized for a search index.

    A TextAnalyzer belongs to an Organization, referenced by `organization_name`.
    Find an Organization you already have access to with
    `synapseclient.models.organization.list_organizations()`, or create one with
    `synapseclient.models.Organization` before creating a TextAnalyzer.

    Represents a [Synapse TextAnalyzer](https://rest-docs.synapse.org/rest/org/sagebionetworks/repo/model/search/table/TextAnalyzer.html).

    Note: TextAnalyzer has no delete endpoint on the Synapse REST API. Once
    created, it cannot be removed, and its owning Organization can no longer be
    deleted either. Choose `organization_name` and `name` deliberately.

    Example: Create a TextAnalyzer.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import TextAnalyzer

        syn = Synapse()
        syn.login()

        analyzer = TextAnalyzer(
            organization_name="my.existing.organization",
            name="stemmed_english",
            description="English analyzer with stemming and lowercase filtering",
            settings={
                "analyzer": {
                    "default": {
                        "type": "custom",
                        "tokenizer": "standard",
                        "filter": ["lowercase", "porter_stem"],
                    }
                }
            },
        )
        analyzer = analyzer.store()
        print(f"Created TextAnalyzer: {analyzer.id} ({analyzer.qualified_name})")
        ```

    Example: Get an existing TextAnalyzer by ID.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import TextAnalyzer

        syn = Synapse()
        syn.login()

        analyzer = TextAnalyzer(id="12345").get()
        print(analyzer.name, analyzer.settings)
        ```

    Example: Update an existing TextAnalyzer.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import TextAnalyzer

        syn = Synapse()
        syn.login()

        analyzer = TextAnalyzer(id="12345").get()
        analyzer.description = "Updated description"
        analyzer.settings["analyzer"]["default"]["filter"].append("asciifolding")
        analyzer = analyzer.store()
        print(f"Updated TextAnalyzer etag: {analyzer.etag}")
        ```

    Example: List TextAnalyzers in an Organization.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import TextAnalyzer

        syn = Synapse()
        syn.login()

        analyzers = TextAnalyzer.list(organization_name="my.existing.organization")
        for analyzer in analyzers:
            print(analyzer.id, analyzer.qualified_name)
        ```
    """

    _CREATE_FN = staticmethod(create_text_analyzer)
    _GET_FN = staticmethod(get_text_analyzer)
    _UPDATE_FN = staticmethod(update_text_analyzer)
    _LIST_FN = staticmethod(list_text_analyzers)

    id: Optional[str] = None
    """The unique immutable ID for this text analyzer."""

    organization_name: Optional[str] = None
    """The name of the organization that owns this analyzer.
    Immutable after creation."""

    name: Optional[str] = None
    """The name of this analyzer. Must start with a letter and
    contain only letters, digits, and underscores; unique within the
    organization."""

    description: Optional[str] = None
    """Optional description of this analyzer."""

    settings: Optional[Dict[str, Any]] = None
    """Required. JSON object holding the *contents of* the `settings.analysis`
    block of an OpenSearch
    [create-index](https://docs.opensearch.org/latest/api-reference/index-apis/create-index/)
    request body. Allowed root keys are `char_filter`, `tokenizer`, `filter`,
    and `analyzer`; the inner `analyzer` map must declare exactly one `default`
    entry (and optionally `default_search`). A `{"$ref": "{org}-{name}"}` entry
    inside the `filter` registry resolves to a SynonymSet at index-build time.
    Carried as a raw JSON object -- the Synapse API does not constrain it
    further. See [analyzers](https://docs.opensearch.org/latest/analyzers/)
    for the available tokenizers, token filters, and character filters."""

    etag: Optional[str] = None
    """Synapse employs an Optimistic Concurrency Control (OCC) scheme to handle
    concurrent updates. The eTag changes every time this analyzer is updated;
    it is used to detect when a client's copy is out-of-date."""

    created_on: Optional[str] = None
    """The date on which this analyzer was created."""

    created_by: Optional[str] = None
    """The ID of the Synapse user who created this analyzer."""

    modified_on: Optional[str] = None
    """The date on which this analyzer was last modified."""

    modified_by: Optional[str] = None
    """The ID of the Synapse user who last modified this analyzer."""

    @property
    def qualified_name(self) -> Optional[str]:
        """The qualified name '{organizationName}-{name}' used to reference
        this analyzer from a SearchConfiguration."""
        if self.organization_name and self.name:
            return f"{self.organization_name}-{self.name}"
        return None

    def fill_from_dict(self, data: Dict[str, Any]) -> "Self":
        self.id = data.get("id", None)
        self.organization_name = data.get("organizationName", None)
        self.name = data.get("name", None)
        self.description = data.get("description", None)
        self.settings = data.get("settings", None)
        self.etag = data.get("etag", None)
        self.created_on = data.get("createdOn", None)
        self.created_by = data.get("createdBy", None)
        self.modified_on = data.get("modifiedOn", None)
        self.modified_by = data.get("modifiedBy", None)
        return self

    def to_synapse_request(self) -> Dict[str, Any]:
        body = {
            "id": self.id,
            "organizationName": self.organization_name,
            "name": self.name,
            "description": self.description,
            "settings": self.settings,
            "etag": self.etag,
        }
        delete_none_keys(body)
        return body

Methods:

store_async async

store_async(*, synapse_client: Optional[Synapse] = None) -> Self

Create this resource, or update it if it already has an ID.

PARAMETER DESCRIPTION
synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
Self

Itself, populated with the server-assigned ID, etag, and timestamps.

Source code in synapseclient/models/search_management.py
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
async def store_async(
    self, *, synapse_client: Optional["Synapse"] = None
) -> "Self":
    """Create this resource, or update it if it already has an ID.

    Arguments:
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        Itself, populated with the server-assigned ID, etag, and timestamps.
    """
    cls = type(self)
    if self.id:
        result = await cls._UPDATE_FN(
            self.id, self.to_synapse_request(), synapse_client=synapse_client
        )
    else:
        result = await cls._CREATE_FN(
            self.to_synapse_request(), synapse_client=synapse_client
        )
    return self.fill_from_dict(result)

get_async async

get_async(*, synapse_client: Optional[Synapse] = None) -> Self

Fetch this resource from Synapse by its ID.

PARAMETER DESCRIPTION
synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
Self

Itself, populated from the Synapse response.

RAISES DESCRIPTION
ValueError

If the id attribute has not been set.

Source code in synapseclient/models/search_management.py
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
async def get_async(self, *, synapse_client: Optional["Synapse"] = None) -> "Self":
    """Fetch this resource from Synapse by its ID.

    Arguments:
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        Itself, populated from the Synapse response.

    Raises:
        ValueError: If the ``id`` attribute has not been set.
    """
    if not self.id:
        raise ValueError(f"{type(self).__name__} must have an id set to call get.")
    cls = type(self)
    result = await cls._GET_FN(self.id, synapse_client=synapse_client)
    return self.fill_from_dict(result)

list_async async classmethod

list_async(organization_name: Optional[str] = None, *, synapse_client: Optional[Synapse] = None) -> List[Self]

List resources of this type, paginating over all pages.

PARAMETER DESCRIPTION
organization_name

If provided, only resources in this organization are returned; otherwise resources across all organizations are listed.

TYPE: Optional[str] DEFAULT: None

synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
List[Self]

A list of every matching resource across all result pages.

Source code in synapseclient/models/search_management.py
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
@classmethod
async def list_async(
    cls,
    organization_name: Optional[str] = None,
    *,
    synapse_client: Optional["Synapse"] = None,
) -> List["Self"]:
    """List resources of this type, paginating over all pages.

    Arguments:
        organization_name: If provided, only resources in this organization are
            returned; otherwise resources across all organizations are listed.
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        A list of every matching resource across all result pages.
    """
    results: List["Self"] = []
    next_page_token = None
    while True:
        page = await cls._LIST_FN(
            organization_name=organization_name,
            next_page_token=next_page_token,
            synapse_client=synapse_client,
        )
        for item in page.get("results", []) or []:
            results.append(cls().fill_from_dict(item))
        next_page_token = page.get("nextPageToken", None)
        if not next_page_token:
            break
    return results

synapseclient.models.SynonymSet dataclass

Bases: OrgScopedResource

A shareable OpenSearch synonym_graph (or legacy synonym) token filter. Referenced by qualified name {organizationName}-{name} from a TextAnalyzer's settings.filter registry map via {"$ref": "{organizationName}-{name}"}.

A SynonymSet belongs to an Organization, referenced by organization_name. Find an Organization you already have access to with synapseclient.models.organization.list_organizations(), or create one with synapseclient.models.Organization before creating a SynonymSet.

Represents a Synapse SynonymSet.

Note: SynonymSet has no delete endpoint on the Synapse REST API. Once created, it cannot be removed, and its owning Organization can no longer be deleted either. Choose organization_name and name deliberately.

Create a SynonymSet.

 

from synapseclient import Synapse
from synapseclient.models import SynonymSet

syn = Synapse()
syn.login()

synonyms = SynonymSet(
    organization_name="my.existing.organization",
    name="disease_synonyms",
    description="Common synonyms for disease terms",
    definition={
        "type": "synonym_graph",
        "synonyms": [
            # comma-separated = equivalence set, matches either way
            "tumor, neoplasm, cancer",
            # "=>" = one-way mapping, "AD" expands to the right side only
            "AD => Alzheimer's disease",
        ],
    },
)
synonyms = synonyms.store()
print(f"Created SynonymSet: {synonyms.id} ({synonyms.qualified_name})")
Get an existing SynonymSet by ID.

 

from synapseclient import Synapse
from synapseclient.models import SynonymSet

syn = Synapse()
syn.login()

synonyms = SynonymSet(id="12345").get()
print(synonyms.name, synonyms.definition)
Update an existing SynonymSet.

 

from synapseclient import Synapse
from synapseclient.models import SynonymSet

syn = Synapse()
syn.login()

synonyms = SynonymSet(id="12345").get()
synonyms.definition["synonyms"].append("MI, myocardial infarction, heart attack")
synonyms = synonyms.store()
print(f"Updated SynonymSet etag: {synonyms.etag}")
List SynonymSets in an Organization.

 

from synapseclient import Synapse
from synapseclient.models import SynonymSet

syn = Synapse()
syn.login()

synonym_sets = SynonymSet.list(organization_name="my.existing.organization")
for synonyms in synonym_sets:
    print(synonyms.id, synonyms.qualified_name)
Source code in synapseclient/models/search_management.py
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
@dataclass
class SynonymSet(OrgScopedResource):
    """A shareable OpenSearch synonym_graph (or legacy synonym) token filter.
    Referenced by qualified name `{organizationName}-{name}` from a TextAnalyzer's
    `settings.filter` registry map via `{"$ref": "{organizationName}-{name}"}`.

    A SynonymSet belongs to an Organization, referenced by `organization_name`.
    Find an Organization you already have access to with
    `synapseclient.models.organization.list_organizations()`, or create one with
    `synapseclient.models.Organization` before creating a SynonymSet.

    Represents a [Synapse SynonymSet](https://rest-docs.synapse.org/rest/org/sagebionetworks/repo/model/search/table/SynonymSet.html).

    Note: SynonymSet has no delete endpoint on the Synapse REST API. Once
    created, it cannot be removed, and its owning Organization can no longer be
    deleted either. Choose `organization_name` and `name` deliberately.

    Example: Create a SynonymSet.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import SynonymSet

        syn = Synapse()
        syn.login()

        synonyms = SynonymSet(
            organization_name="my.existing.organization",
            name="disease_synonyms",
            description="Common synonyms for disease terms",
            definition={
                "type": "synonym_graph",
                "synonyms": [
                    # comma-separated = equivalence set, matches either way
                    "tumor, neoplasm, cancer",
                    # "=>" = one-way mapping, "AD" expands to the right side only
                    "AD => Alzheimer's disease",
                ],
            },
        )
        synonyms = synonyms.store()
        print(f"Created SynonymSet: {synonyms.id} ({synonyms.qualified_name})")
        ```

    Example: Get an existing SynonymSet by ID.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import SynonymSet

        syn = Synapse()
        syn.login()

        synonyms = SynonymSet(id="12345").get()
        print(synonyms.name, synonyms.definition)
        ```

    Example: Update an existing SynonymSet.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import SynonymSet

        syn = Synapse()
        syn.login()

        synonyms = SynonymSet(id="12345").get()
        synonyms.definition["synonyms"].append("MI, myocardial infarction, heart attack")
        synonyms = synonyms.store()
        print(f"Updated SynonymSet etag: {synonyms.etag}")
        ```

    Example: List SynonymSets in an Organization.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import SynonymSet

        syn = Synapse()
        syn.login()

        synonym_sets = SynonymSet.list(organization_name="my.existing.organization")
        for synonyms in synonym_sets:
            print(synonyms.id, synonyms.qualified_name)
        ```
    """

    _CREATE_FN = staticmethod(create_synonym_set)
    _GET_FN = staticmethod(get_synonym_set)
    _UPDATE_FN = staticmethod(update_synonym_set)
    _LIST_FN = staticmethod(list_synonym_sets)

    id: Optional[str] = None
    """The unique ID of this synonym set."""

    organization_name: Optional[str] = None
    """The name of the Organization this resource belongs to. Immutable after
    creation."""

    name: Optional[str] = None
    """The resource name. Must start with a letter and contain only letters,
    digits, and underscores. Unique within the organization and immutable
    after creation. Used as part of the qualified name
    ({organizationName}-{name}) when referenced by other resources."""

    description: Optional[str] = None
    """Optional description of the synonym set."""

    definition: Optional[Dict[str, Any]] = None
    """Required. The full OpenSearch token filter definition as a JSON object,
    exactly as documented for the
    [`synonym_graph`](https://docs.opensearch.org/latest/analyzers/token-filters/synonym-graph/)
    / [`synonym`](https://docs.opensearch.org/latest/analyzers/token-filters/synonym/)
    token filters, e.g. `{"type": "synonym_graph", "synonyms":
    ["tumor, neoplasm, cancer", "AD => Alzheimer's disease"]}`. Carried as a raw
    JSON object -- the Synapse API does not constrain it further."""

    etag: Optional[str] = None
    """Synapse employs an Optimistic Concurrency Control (OCC) scheme."""

    created_on: Optional[str] = None
    """The date this resource was created."""

    created_by: Optional[str] = None
    """The ID of the user that created this resource."""

    modified_on: Optional[str] = None
    """The date this resource was last modified."""

    modified_by: Optional[str] = None
    """The ID of the user that last modified this resource."""

    @property
    def qualified_name(self) -> Optional[str]:
        if self.organization_name and self.name:
            return f"{self.organization_name}-{self.name}"
        return None

    def fill_from_dict(self, data: Dict[str, Any]) -> "Self":
        self.id = data.get("id", None)
        self.organization_name = data.get("organizationName", None)
        self.name = data.get("name", None)
        self.description = data.get("description", None)
        self.definition = data.get("definition", None)
        self.etag = data.get("etag", None)
        self.created_on = data.get("createdOn", None)
        self.created_by = data.get("createdBy", None)
        self.modified_on = data.get("modifiedOn", None)
        self.modified_by = data.get("modifiedBy", None)
        return self

    def to_synapse_request(self) -> Dict[str, Any]:
        body = {
            "id": self.id,
            "organizationName": self.organization_name,
            "name": self.name,
            "description": self.description,
            "definition": self.definition,
            "etag": self.etag,
        }
        delete_none_keys(body)
        return body

Methods:

store_async async

store_async(*, synapse_client: Optional[Synapse] = None) -> Self

Create this resource, or update it if it already has an ID.

PARAMETER DESCRIPTION
synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
Self

Itself, populated with the server-assigned ID, etag, and timestamps.

Source code in synapseclient/models/search_management.py
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
async def store_async(
    self, *, synapse_client: Optional["Synapse"] = None
) -> "Self":
    """Create this resource, or update it if it already has an ID.

    Arguments:
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        Itself, populated with the server-assigned ID, etag, and timestamps.
    """
    cls = type(self)
    if self.id:
        result = await cls._UPDATE_FN(
            self.id, self.to_synapse_request(), synapse_client=synapse_client
        )
    else:
        result = await cls._CREATE_FN(
            self.to_synapse_request(), synapse_client=synapse_client
        )
    return self.fill_from_dict(result)

get_async async

get_async(*, synapse_client: Optional[Synapse] = None) -> Self

Fetch this resource from Synapse by its ID.

PARAMETER DESCRIPTION
synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
Self

Itself, populated from the Synapse response.

RAISES DESCRIPTION
ValueError

If the id attribute has not been set.

Source code in synapseclient/models/search_management.py
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
async def get_async(self, *, synapse_client: Optional["Synapse"] = None) -> "Self":
    """Fetch this resource from Synapse by its ID.

    Arguments:
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        Itself, populated from the Synapse response.

    Raises:
        ValueError: If the ``id`` attribute has not been set.
    """
    if not self.id:
        raise ValueError(f"{type(self).__name__} must have an id set to call get.")
    cls = type(self)
    result = await cls._GET_FN(self.id, synapse_client=synapse_client)
    return self.fill_from_dict(result)

list_async async classmethod

list_async(organization_name: Optional[str] = None, *, synapse_client: Optional[Synapse] = None) -> List[Self]

List resources of this type, paginating over all pages.

PARAMETER DESCRIPTION
organization_name

If provided, only resources in this organization are returned; otherwise resources across all organizations are listed.

TYPE: Optional[str] DEFAULT: None

synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
List[Self]

A list of every matching resource across all result pages.

Source code in synapseclient/models/search_management.py
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
@classmethod
async def list_async(
    cls,
    organization_name: Optional[str] = None,
    *,
    synapse_client: Optional["Synapse"] = None,
) -> List["Self"]:
    """List resources of this type, paginating over all pages.

    Arguments:
        organization_name: If provided, only resources in this organization are
            returned; otherwise resources across all organizations are listed.
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        A list of every matching resource across all result pages.
    """
    results: List["Self"] = []
    next_page_token = None
    while True:
        page = await cls._LIST_FN(
            organization_name=organization_name,
            next_page_token=next_page_token,
            synapse_client=synapse_client,
        )
        for item in page.get("results", []) or []:
            results.append(cls().fill_from_dict(item))
        next_page_token = page.get("nextPageToken", None)
        if not next_page_token:
            break
    return results

synapseclient.models.ColumnAnalyzerOverride dataclass

Bases: OrgScopedResource

A shareable bundle of per-column analyzer assignments. Each entry binds one column to an analyzer;

A ColumnAnalyzerOverride belongs to an Organization, referenced by organization_name. Find an Organization you already have access to with synapseclient.models.organization.list_organizations(), or create one with synapseclient.models.Organization before creating a ColumnAnalyzerOverride.

Represents a Synapse ColumnAnalyzerOverride.

Note: ColumnAnalyzerOverride has no delete endpoint on the Synapse REST API. Once created, it cannot be removed, and its owning Organization can no longer be deleted either. Choose organization_name and name deliberately.

Create a ColumnAnalyzerOverride.

 

from synapseclient import Synapse
from synapseclient.models import ColumnAnalyzerOverride, ColumnAnalyzerOverrideEntry

syn = Synapse()
syn.login()

override = ColumnAnalyzerOverride(
    organization_name="my.existing.organization",
    name="disease_column_overrides",
    description="Use a keyword analyzer for the disease_code column",
    overrides=[
        ColumnAnalyzerOverrideEntry(
            column_name="disease_code",
            analyzer={"analyzer": {"default": {"type": "keyword"}}},
        ),
    ],
)
override = override.store()
print(f"Created ColumnAnalyzerOverride: {override.id} ({override.qualified_name})")
Get an existing ColumnAnalyzerOverride by ID.

 

from synapseclient import Synapse
from synapseclient.models import ColumnAnalyzerOverride

syn = Synapse()
syn.login()

override = ColumnAnalyzerOverride(id="12345").get()
print(override.name, override.overrides)
Update an existing ColumnAnalyzerOverride.

 

from synapseclient import Synapse
from synapseclient.models import ColumnAnalyzerOverride, ColumnAnalyzerOverrideEntry

syn = Synapse()
syn.login()

override = ColumnAnalyzerOverride(id="12345").get()
override.overrides.append(
    ColumnAnalyzerOverrideEntry(
        column_name="title",
        analyzer={"analyzer": {"default": {"type": "standard"}}},
    )
)
override = override.store()
print(f"Updated ColumnAnalyzerOverride etag: {override.etag}")
List ColumnAnalyzerOverrides in an Organization.

 

from synapseclient import Synapse
from synapseclient.models import ColumnAnalyzerOverride

syn = Synapse()
syn.login()

overrides = ColumnAnalyzerOverride.list(organization_name="my.existing.organization")
for override in overrides:
    print(override.id, override.qualified_name)
Source code in synapseclient/models/search_management.py
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
@dataclass
class ColumnAnalyzerOverride(OrgScopedResource):
    """A shareable bundle of per-column analyzer assignments. Each entry binds one column to an analyzer;

    A ColumnAnalyzerOverride belongs to an Organization, referenced by
    `organization_name`. Find an Organization you already have access to with
    `synapseclient.models.organization.list_organizations()`, or create one with
    `synapseclient.models.Organization` before creating a ColumnAnalyzerOverride.

    Represents a [Synapse ColumnAnalyzerOverride](https://rest-docs.synapse.org/rest/org/sagebionetworks/repo/model/search/table/ColumnAnalyzerOverride.html).

    Note: ColumnAnalyzerOverride has no delete endpoint on the Synapse REST API.
    Once created, it cannot be removed, and its owning Organization can no
    longer be deleted either. Choose `organization_name` and `name` deliberately.

    Example: Create a ColumnAnalyzerOverride.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import ColumnAnalyzerOverride, ColumnAnalyzerOverrideEntry

        syn = Synapse()
        syn.login()

        override = ColumnAnalyzerOverride(
            organization_name="my.existing.organization",
            name="disease_column_overrides",
            description="Use a keyword analyzer for the disease_code column",
            overrides=[
                ColumnAnalyzerOverrideEntry(
                    column_name="disease_code",
                    analyzer={"analyzer": {"default": {"type": "keyword"}}},
                ),
            ],
        )
        override = override.store()
        print(f"Created ColumnAnalyzerOverride: {override.id} ({override.qualified_name})")
        ```

    Example: Get an existing ColumnAnalyzerOverride by ID.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import ColumnAnalyzerOverride

        syn = Synapse()
        syn.login()

        override = ColumnAnalyzerOverride(id="12345").get()
        print(override.name, override.overrides)
        ```

    Example: Update an existing ColumnAnalyzerOverride.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import ColumnAnalyzerOverride, ColumnAnalyzerOverrideEntry

        syn = Synapse()
        syn.login()

        override = ColumnAnalyzerOverride(id="12345").get()
        override.overrides.append(
            ColumnAnalyzerOverrideEntry(
                column_name="title",
                analyzer={"analyzer": {"default": {"type": "standard"}}},
            )
        )
        override = override.store()
        print(f"Updated ColumnAnalyzerOverride etag: {override.etag}")
        ```

    Example: List ColumnAnalyzerOverrides in an Organization.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import ColumnAnalyzerOverride

        syn = Synapse()
        syn.login()

        overrides = ColumnAnalyzerOverride.list(organization_name="my.existing.organization")
        for override in overrides:
            print(override.id, override.qualified_name)
        ```
    """

    _CREATE_FN = staticmethod(create_column_analyzer_override)
    _GET_FN = staticmethod(get_column_analyzer_override)
    _UPDATE_FN = staticmethod(update_column_analyzer_override)
    _LIST_FN = staticmethod(list_column_analyzer_overrides)

    id: Optional[str] = None
    """The unique ID of this column analyzer override."""

    organization_name: Optional[str] = None
    """The name of the Organization this resource belongs to. Immutable after
    creation."""

    name: Optional[str] = None
    """The resource name. Must start with a letter and contain only letters,
    digits, and underscores. Unique within the organization and immutable
    after creation. Used as part of the qualified name
    ({organizationName}-{name}) when referenced by other resources."""

    description: Optional[str] = None
    """Optional description."""

    overrides: Optional[List[ColumnAnalyzerOverrideEntry]] = field(default_factory=list)
    """The per-column analyzer assignments -- see ColumnAnalyzerOverrideEntry."""

    etag: Optional[str] = None
    """Synapse employs an Optimistic Concurrency Control (OCC) scheme."""

    created_on: Optional[str] = None
    """The date this resource was created."""

    created_by: Optional[str] = None
    """The ID of the user that created this resource."""

    modified_on: Optional[str] = None
    """The date this resource was last modified."""

    modified_by: Optional[str] = None
    """The ID of the user that last modified this resource."""

    @property
    def qualified_name(self) -> Optional[str]:
        if self.organization_name and self.name:
            return f"{self.organization_name}-{self.name}"
        return None

    def fill_from_dict(self, data: Dict[str, Any]) -> "Self":
        self.id = data.get("id", None)
        self.organization_name = data.get("organizationName", None)
        self.name = data.get("name", None)
        self.description = data.get("description", None)
        self.overrides = [
            ColumnAnalyzerOverrideEntry().fill_from_dict(o)
            for o in data.get("overrides", []) or []
        ]
        self.etag = data.get("etag", None)
        self.created_on = data.get("createdOn", None)
        self.created_by = data.get("createdBy", None)
        self.modified_on = data.get("modifiedOn", None)
        self.modified_by = data.get("modifiedBy", None)
        return self

    def to_synapse_request(self) -> Dict[str, Any]:
        body = {
            "id": self.id,
            "organizationName": self.organization_name,
            "name": self.name,
            "description": self.description,
            "overrides": (
                [o.to_synapse_request() for o in self.overrides]
                if self.overrides
                else None
            ),
            "etag": self.etag,
        }
        delete_none_keys(body)
        return body

Methods:

store_async async

store_async(*, synapse_client: Optional[Synapse] = None) -> Self

Create this resource, or update it if it already has an ID.

PARAMETER DESCRIPTION
synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
Self

Itself, populated with the server-assigned ID, etag, and timestamps.

Source code in synapseclient/models/search_management.py
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
async def store_async(
    self, *, synapse_client: Optional["Synapse"] = None
) -> "Self":
    """Create this resource, or update it if it already has an ID.

    Arguments:
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        Itself, populated with the server-assigned ID, etag, and timestamps.
    """
    cls = type(self)
    if self.id:
        result = await cls._UPDATE_FN(
            self.id, self.to_synapse_request(), synapse_client=synapse_client
        )
    else:
        result = await cls._CREATE_FN(
            self.to_synapse_request(), synapse_client=synapse_client
        )
    return self.fill_from_dict(result)

get_async async

get_async(*, synapse_client: Optional[Synapse] = None) -> Self

Fetch this resource from Synapse by its ID.

PARAMETER DESCRIPTION
synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
Self

Itself, populated from the Synapse response.

RAISES DESCRIPTION
ValueError

If the id attribute has not been set.

Source code in synapseclient/models/search_management.py
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
async def get_async(self, *, synapse_client: Optional["Synapse"] = None) -> "Self":
    """Fetch this resource from Synapse by its ID.

    Arguments:
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        Itself, populated from the Synapse response.

    Raises:
        ValueError: If the ``id`` attribute has not been set.
    """
    if not self.id:
        raise ValueError(f"{type(self).__name__} must have an id set to call get.")
    cls = type(self)
    result = await cls._GET_FN(self.id, synapse_client=synapse_client)
    return self.fill_from_dict(result)

list_async async classmethod

list_async(organization_name: Optional[str] = None, *, synapse_client: Optional[Synapse] = None) -> List[Self]

List resources of this type, paginating over all pages.

PARAMETER DESCRIPTION
organization_name

If provided, only resources in this organization are returned; otherwise resources across all organizations are listed.

TYPE: Optional[str] DEFAULT: None

synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
List[Self]

A list of every matching resource across all result pages.

Source code in synapseclient/models/search_management.py
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
@classmethod
async def list_async(
    cls,
    organization_name: Optional[str] = None,
    *,
    synapse_client: Optional["Synapse"] = None,
) -> List["Self"]:
    """List resources of this type, paginating over all pages.

    Arguments:
        organization_name: If provided, only resources in this organization are
            returned; otherwise resources across all organizations are listed.
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        A list of every matching resource across all result pages.
    """
    results: List["Self"] = []
    next_page_token = None
    while True:
        page = await cls._LIST_FN(
            organization_name=organization_name,
            next_page_token=next_page_token,
            synapse_client=synapse_client,
        )
        for item in page.get("results", []) or []:
            results.append(cls().fill_from_dict(item))
        next_page_token = page.get("nextPageToken", None)
        if not next_page_token:
            break
    return results

synapseclient.models.SearchConfigBinding dataclass

Bases: SearchConfigBindingSynchronousProtocol

Attaches a SearchConfiguration to an entity. When a SearchIndex is built, the effective SearchConfiguration is resolved by walking up the entity hierarchy (entity -> folder -> project) and using the first binding found.

Represents a Synapse SearchConfigBinding.

Source code in synapseclient/models/search_management.py
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
@dataclass
@async_to_sync
class SearchConfigBinding(SearchConfigBindingSynchronousProtocol):
    """Attaches a SearchConfiguration to an entity. When a SearchIndex is built,
    the effective SearchConfiguration is resolved by walking up the entity
    hierarchy (entity -> folder -> project) and using the first binding found.

    Represents a [Synapse SearchConfigBinding](https://rest-docs.synapse.org/rest/org/sagebionetworks/repo/model/search/table/SearchConfigBinding.html).
    """

    bind_id: Optional[str] = None
    """The unique ID of this binding."""

    search_configuration_id: Optional[str] = None
    """The ID of the SearchConfiguration bound to this entity."""

    object_id: Optional[str] = None
    """The ID of the entity this configuration is bound to."""

    object_type: Optional[str] = None
    """The type of the object this configuration is bound to."""

    created_by: Optional[str] = None
    """The ID of the user that created this binding."""

    created_on: Optional[str] = None
    """The date this binding was created."""

    def fill_from_dict(self, data: Dict[str, Any]) -> "Self":
        self.bind_id = data.get("bindId", None)
        self.search_configuration_id = data.get("searchConfigurationId", None)
        self.object_id = data.get("objectId", None)
        self.object_type = data.get("objectType", None)
        self.created_by = data.get("createdBy", None)
        self.created_on = data.get("createdOn", None)
        return self

    async def store_async(
        self, *, synapse_client: Optional["Synapse"] = None
    ) -> "Self":
        """Bind ``search_configuration_id`` to the entity ``object_id``. Replaces
        any existing binding on that entity.

        Arguments:
            synapse_client: If not passed in and caching was not disabled by
                `Synapse.allow_client_caching(False)` this will use the last created
                instance from the Synapse class constructor.

        Returns:
            Itself, populated from the created SearchConfigBinding.

        Raises:
            ValueError: If ``object_id`` or ``search_configuration_id`` is not set.

        Example: Bind a SearchConfiguration to a Project.
             

            ```python
            from synapseclient import Synapse
            from synapseclient.models import SearchConfigBinding

            syn = Synapse()
            syn.login()

            binding = SearchConfigBinding(
                object_id="syn12345",
                search_configuration_id="6789",
            )
            binding = binding.store()
            print(f"Bound SearchConfiguration {binding.search_configuration_id} "
                  f"to {binding.object_id}")
            ```
        """
        if not self.object_id:
            raise ValueError("SearchConfigBinding must have an object_id set.")
        if not self.search_configuration_id:
            raise ValueError(
                "SearchConfigBinding must have a search_configuration_id set."
            )
        result = await bind_search_config_to_entity(
            self.object_id,
            self.search_configuration_id,
            synapse_client=synapse_client,
        )
        return self.fill_from_dict(result)

    async def get_async(self, *, synapse_client: Optional["Synapse"] = None) -> "Self":
        """Get the effective binding for the entity ``object_id``, resolved by
        walking up the entity hierarchy.

        Arguments:
            synapse_client: If not passed in and caching was not disabled by
                `Synapse.allow_client_caching(False)` this will use the last created
                instance from the Synapse class constructor.

        Returns:
            Itself, populated from the resolved SearchConfigBinding.

        Raises:
            ValueError: If ``object_id`` is not set.

        Example: Get the effective binding for a Project.
             

            ```python
            from synapseclient import Synapse
            from synapseclient.models import SearchConfigBinding

            syn = Synapse()
            syn.login()

            binding = SearchConfigBinding(object_id="syn12345").get()
            print(binding.search_configuration_id)
            ```
        """
        if not self.object_id:
            raise ValueError("SearchConfigBinding must have an object_id set.")
        result = await get_search_config_binding(
            self.object_id, synapse_client=synapse_client
        )
        return self.fill_from_dict(result)

    async def delete_async(self, *, synapse_client: Optional["Synapse"] = None) -> None:
        """Clear the binding on the entity ``object_id``.

        Arguments:
            synapse_client: If not passed in and caching was not disabled by
                `Synapse.allow_client_caching(False)` this will use the last created
                instance from the Synapse class constructor.

        Raises:
            ValueError: If ``object_id`` is not set.

        Example: Clear the binding on a Project.
             

            ```python
            from synapseclient import Synapse
            from synapseclient.models import SearchConfigBinding

            syn = Synapse()
            syn.login()

            SearchConfigBinding(object_id="syn12345").delete()
            ```
        """
        if not self.object_id:
            raise ValueError("SearchConfigBinding must have an object_id set.")
        await clear_search_config_binding(self.object_id, synapse_client=synapse_client)

Methods:

store_async async

store_async(*, synapse_client: Optional[Synapse] = None) -> Self

Bind search_configuration_id to the entity object_id. Replaces any existing binding on that entity.

PARAMETER DESCRIPTION
synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
Self

Itself, populated from the created SearchConfigBinding.

RAISES DESCRIPTION
ValueError

If object_id or search_configuration_id is not set.

Bind a SearchConfiguration to a Project.

 

from synapseclient import Synapse
from synapseclient.models import SearchConfigBinding

syn = Synapse()
syn.login()

binding = SearchConfigBinding(
    object_id="syn12345",
    search_configuration_id="6789",
)
binding = binding.store()
print(f"Bound SearchConfiguration {binding.search_configuration_id} "
      f"to {binding.object_id}")
Source code in synapseclient/models/search_management.py
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
async def store_async(
    self, *, synapse_client: Optional["Synapse"] = None
) -> "Self":
    """Bind ``search_configuration_id`` to the entity ``object_id``. Replaces
    any existing binding on that entity.

    Arguments:
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        Itself, populated from the created SearchConfigBinding.

    Raises:
        ValueError: If ``object_id`` or ``search_configuration_id`` is not set.

    Example: Bind a SearchConfiguration to a Project.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import SearchConfigBinding

        syn = Synapse()
        syn.login()

        binding = SearchConfigBinding(
            object_id="syn12345",
            search_configuration_id="6789",
        )
        binding = binding.store()
        print(f"Bound SearchConfiguration {binding.search_configuration_id} "
              f"to {binding.object_id}")
        ```
    """
    if not self.object_id:
        raise ValueError("SearchConfigBinding must have an object_id set.")
    if not self.search_configuration_id:
        raise ValueError(
            "SearchConfigBinding must have a search_configuration_id set."
        )
    result = await bind_search_config_to_entity(
        self.object_id,
        self.search_configuration_id,
        synapse_client=synapse_client,
    )
    return self.fill_from_dict(result)

get_async async

get_async(*, synapse_client: Optional[Synapse] = None) -> Self

Get the effective binding for the entity object_id, resolved by walking up the entity hierarchy.

PARAMETER DESCRIPTION
synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
Self

Itself, populated from the resolved SearchConfigBinding.

RAISES DESCRIPTION
ValueError

If object_id is not set.

Get the effective binding for a Project.

 

from synapseclient import Synapse
from synapseclient.models import SearchConfigBinding

syn = Synapse()
syn.login()

binding = SearchConfigBinding(object_id="syn12345").get()
print(binding.search_configuration_id)
Source code in synapseclient/models/search_management.py
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
async def get_async(self, *, synapse_client: Optional["Synapse"] = None) -> "Self":
    """Get the effective binding for the entity ``object_id``, resolved by
    walking up the entity hierarchy.

    Arguments:
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Returns:
        Itself, populated from the resolved SearchConfigBinding.

    Raises:
        ValueError: If ``object_id`` is not set.

    Example: Get the effective binding for a Project.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import SearchConfigBinding

        syn = Synapse()
        syn.login()

        binding = SearchConfigBinding(object_id="syn12345").get()
        print(binding.search_configuration_id)
        ```
    """
    if not self.object_id:
        raise ValueError("SearchConfigBinding must have an object_id set.")
    result = await get_search_config_binding(
        self.object_id, synapse_client=synapse_client
    )
    return self.fill_from_dict(result)

delete_async async

delete_async(*, synapse_client: Optional[Synapse] = None) -> None

Clear the binding on the entity object_id.

PARAMETER DESCRIPTION
synapse_client

If not passed in and caching was not disabled by Synapse.allow_client_caching(False) this will use the last created instance from the Synapse class constructor.

TYPE: Optional[Synapse] DEFAULT: None

RAISES DESCRIPTION
ValueError

If object_id is not set.

Clear the binding on a Project.

 

from synapseclient import Synapse
from synapseclient.models import SearchConfigBinding

syn = Synapse()
syn.login()

SearchConfigBinding(object_id="syn12345").delete()
Source code in synapseclient/models/search_management.py
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
async def delete_async(self, *, synapse_client: Optional["Synapse"] = None) -> None:
    """Clear the binding on the entity ``object_id``.

    Arguments:
        synapse_client: If not passed in and caching was not disabled by
            `Synapse.allow_client_caching(False)` this will use the last created
            instance from the Synapse class constructor.

    Raises:
        ValueError: If ``object_id`` is not set.

    Example: Clear the binding on a Project.
         

        ```python
        from synapseclient import Synapse
        from synapseclient.models import SearchConfigBinding

        syn = Synapse()
        syn.login()

        SearchConfigBinding(object_id="syn12345").delete()
        ```
    """
    if not self.object_id:
        raise ValueError("SearchConfigBinding must have an object_id set.")
    await clear_search_config_binding(self.object_id, synapse_client=synapse_client)