Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Search adls gen2 #17684

Merged
merged 3 commits into from
Mar 31, 2021
Merged
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
5 changes: 4 additions & 1 deletion sdk/search/azure-search-documents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Release History

## 11.1.1 (Unreleased)
## 11.2.0b1 (Unreleased)

### New features

- Added new data source type ADLS gen2 #16852

## 11.1.0 (2021-02-10)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# Licensed under the MIT License.
# ------------------------------------

VERSION = "11.1.1" # type: str
VERSION = "11.2.0b1" # type: str

SDK_MONIKER = "search-documents/{}".format(VERSION) # type: str
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
RegexFlags,
SearchIndexer,
SearchIndexerDataContainer,
SearchIndexerDataSourceType,
SearchIndexerError,
SearchIndexerLimits,
SearchIndexerSkillset,
Expand Down Expand Up @@ -237,6 +238,7 @@
"SearchIndexer",
"SearchIndexerDataContainer",
"SearchIndexerDataSourceConnection",
"SearchIndexerDataSourceType",
"SearchIndexerError",
"SearchIndexerLimits",
"SearchIndexerSkillset",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ class SearchIndexerDataSourceConnection(msrest.serialization.Model):
:param description: The description of the datasource connection.
:type description: str
:param type: Required. The type of the datasource connection. Possible values include: "azuresql",
"cosmosdb", "azureblob", "azuretable", "mysql".
"cosmosdb", "azureblob", "azuretable", "mysql", "adlsgen2".
:type type: str or ~azure.search.documents.indexes.models.SearchIndexerDataSourceType
:param connection_string: The connection string for the datasource connection.
:type connection_string: str
Expand Down
2 changes: 1 addition & 1 deletion sdk/search/azure-search-documents/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
author_email='[email protected]',
url='https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/search/azure-search-documents',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Development Status :: 4 - Beta",
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
Expand Down