Skip to content

Commit

Permalink
Search adls gen2 (Azure#17684)
Browse files Browse the repository at this point in the history
* add adls gen2 support

* update version

* update
  • Loading branch information
xiangyan99 authored Mar 31, 2021
1 parent dee491e commit aaa41cd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
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

0 comments on commit aaa41cd

Please sign in to comment.