Skip to content

Commit eb471ca

Browse files
AutorestCIlmazuel
authored andcommitted
[AutoPR] search/resource-manager (#4503)
* Generated from 93a610bee8cf78c96ff98829a41aa72328208230 (#2897) Azure Search: Removing redundant commas * [AutoPR search/resource-manager] typo: search/resource-manager/Microsoft.Search (#3988) * Generated from 95144350accb257e537fb7af4cf472c7253670f0 typo: search/resource-manager/Microsoft.Search - programatically -> programmatically - Trim trailing space * Packaging update of azure-mgmt-search * Packaging update of azure-mgmt-search * updated versioning and changelog, pulled latest azure sdk tools * [AutoPR search/resource-manager] [WaitForARMFeedback] Add api get_services_by_subscription of Azure Search (#4276) * Generated from 52d399a338e4f89936972f21db87a8dbbce1e08d add api get_services_by_subscription Add path of API "get search services by subscription" (GET/SUBSCRIPTIONS/PROVIDERS/MICROSOFT.SEARCH/SEARCHSERVICES) in the spec of API version 2015-08-19 of Azure Search (Microsoft.Search). Along with a sample. * Packaging update of azure-mgmt-search * [AutoPR search/resource-manager] Azure Search: Resource Manager: Support 'None' Identity type (#4480) * Generated from f0fe70b51825fdec12d01df500646be7e4dcff54 Azure Search: Resource Manager: Support 'None' Identity type * Packaging update of azure-mgmt-search * Packaging update of azure-mgmt-search * Generated from d59344aa21135e602d2abb6a70e68394463c8f8c (#4575) Add L-Series SKU values to management plane * Packaging update of azure-mgmt-search * Move search to new path * Update path * changeLog
1 parent 6e5ba1b commit eb471ca

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+262
-818
lines changed

azure-mgmt-search/build.json

Lines changed: 0 additions & 746 deletions
This file was deleted.

azure-mgmt-search/dev_requirements.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
Release History
44
===============
55

6+
2.1.0 (2019-05-24)
7+
++++++++++++++++++
8+
9+
**Features**
10+
11+
- Model SearchService has a new parameter identity
12+
- Model Resource has a new parameter identity
13+
614
2.0.0 (2018-05-21)
715
++++++++++++++++++
816

@@ -24,7 +32,7 @@ This version uses a next-generation code generator that *might* introduce breaki
2432

2533
- Return type changes from `msrestazure.azure_operation.AzureOperationPoller` to `msrest.polling.LROPoller`. External API is the same.
2634
- Return type is now **always** a `msrest.polling.LROPoller`, regardless of the optional parameters used.
27-
- The behavior has changed when using `raw=True`. Instead of returning the initial call result as `ClientRawResponse`,
35+
- The behavior has changed when using `raw=True`. Instead of returning the initial call result as `ClientRawResponse`,
2836
without polling, now this returns an LROPoller. After polling, the final resource will be returned as a `ClientRawResponse`.
2937
- New `polling` parameter. The default behavior is `Polling=True` which will poll using ARM algorithm. When `Polling=False`,
3038
the response of the initial call will be returned without polling.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
recursive-include tests *.py *.yaml
12
include *.rst
23
include azure/__init__.py
34
include azure/mgmt/__init__.py
Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,6 @@ For the older Azure Service Management (ASM) libraries, see
1414
For a more complete set of Azure libraries, see the `azure <https://pypi.python.org/pypi/azure>`__ bundle package.
1515

1616

17-
Compatibility
18-
=============
19-
20-
**IMPORTANT**: If you have an earlier version of the azure package
21-
(version < 1.0), you should uninstall it before installing this package.
22-
23-
You can check the version using pip:
24-
25-
.. code:: shell
26-
27-
pip freeze
28-
29-
If you see azure==0.11.0 (or any version below 1.0), uninstall it first:
30-
31-
.. code:: shell
32-
33-
pip uninstall azure
34-
35-
3617
Usage
3718
=====
3819

File renamed without changes.
File renamed without changes.
File renamed without changes.

azure-mgmt-search/azure/mgmt/search/models/__init__.py renamed to sdk/search/azure-mgmt-search/azure/mgmt/search/models/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
from .query_key_py3 import QueryKey
1717
from .sku_py3 import Sku
1818
from .search_service_py3 import SearchService
19+
from .identity_py3 import Identity
1920
from .resource_py3 import Resource
2021
from .operation_display_py3 import OperationDisplay
2122
from .operation_py3 import Operation
@@ -27,6 +28,7 @@
2728
from .query_key import QueryKey
2829
from .sku import Sku
2930
from .search_service import SearchService
31+
from .identity import Identity
3032
from .resource import Resource
3133
from .operation_display import OperationDisplay
3234
from .operation import Operation
@@ -40,6 +42,7 @@
4042
HostingMode,
4143
SearchServiceStatus,
4244
ProvisioningState,
45+
IdentityType,
4346
AdminKeyKind,
4447
)
4548

@@ -50,6 +53,7 @@
5053
'QueryKey',
5154
'Sku',
5255
'SearchService',
56+
'Identity',
5357
'Resource',
5458
'OperationDisplay',
5559
'Operation',
@@ -62,5 +66,6 @@
6266
'HostingMode',
6367
'SearchServiceStatus',
6468
'ProvisioningState',
69+
'IdentityType',
6570
'AdminKeyKind',
6671
]

azure-mgmt-search/azure/mgmt/search/models/admin_key_result.py renamed to sdk/search/azure-mgmt-search/azure/mgmt/search/models/admin_key_result.py

File renamed without changes.

0 commit comments

Comments
 (0)