mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
Update python SDK docs: 15146666782
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
---
|
||||
id: beta-search-criteria-text-query
|
||||
title: SearchCriteriaTextQuery
|
||||
pagination_label: SearchCriteriaTextQuery
|
||||
sidebar_label: SearchCriteriaTextQuery
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'SearchCriteriaTextQuery', 'BetaSearchCriteriaTextQuery']
|
||||
slug: /tools/sdk/python/beta/models/search-criteria-text-query
|
||||
tags: ['SDK', 'Software Development Kit', 'SearchCriteriaTextQuery', 'BetaSearchCriteriaTextQuery']
|
||||
---
|
||||
|
||||
# SearchCriteriaTextQuery
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**terms** | **[]str** | Terms to search for. | [optional]
|
||||
**fields** | **[]str** | Fields to search within. | [optional]
|
||||
**match_any** | **bool** | Whether to match any of the terms. | [optional] [default to False]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.search_criteria_text_query import SearchCriteriaTextQuery
|
||||
|
||||
search_criteria_text_query = SearchCriteriaTextQuery(
|
||||
terms=[admin, user],
|
||||
fields=[role, name],
|
||||
match_any=True
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user