Skip to content
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
7 changes: 7 additions & 0 deletions azure-devops/azure/devops/v5_0/client_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,13 @@ def get_release_client(self):
"""
return self._connection.get_client('azure.devops.v5_0.release.release_client.ReleaseClient')

def get_search_client(self):
"""get_search_client.
Gets the 5.0 version of the SearchClient
:rtype: :class:`<SearchClient> <azure.devops.v5_0.search.search_client.SearchClient>`
"""
return self._connection.get_client('azure.devops.v5_0.search.search_client.SearchClient')

def get_security_client(self):
"""get_security_client.
Gets the 5.0 version of the SecurityClient
Expand Down
36 changes: 36 additions & 0 deletions azure-devops/azure/devops/v5_0/search/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
# Generated file, DO NOT EDIT
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------------------------

from .models import *
from .search_client import SearchClient

__all__ = [
'CodeResult',
'CodeSearchRequest',
'CodeSearchResponse',
'Collection',
'EntitySearchRequest',
'EntitySearchRequestBase',
'EntitySearchResponse',
'Filter',
'Hit',
'Project',
'ProjectReference',
'Repository',
'SortOption',
'Wiki',
'WikiHit',
'WikiResult',
'WikiSearchRequest',
'WikiSearchResponse',
'WorkItemHit',
'WorkItemResult',
'WorkItemSearchRequest',
'WorkItemSearchResponse',
'SearchClient'
]
Loading