-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[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
- Loading branch information
1 parent
6e5ba1b
commit eb471ca
Showing
50 changed files
with
262 additions
and
818 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
azure-mgmt-search/MANIFEST.in → sdk/search/azure-mgmt-search/MANIFEST.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
recursive-include tests *.py *.yaml | ||
include *.rst | ||
include azure/__init__.py | ||
include azure/mgmt/__init__.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
48 changes: 48 additions & 0 deletions
48
sdk/search/azure-mgmt-search/azure/mgmt/search/models/identity.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class Identity(Model): | ||
"""Identity for the resource. | ||
Variables are only populated by the server, and will be ignored when | ||
sending a request. | ||
All required parameters must be populated in order to send to Azure. | ||
:ivar principal_id: The principal ID of resource identity. | ||
:vartype principal_id: str | ||
:ivar tenant_id: The tenant ID of resource. | ||
:vartype tenant_id: str | ||
:param type: Required. The identity type. Possible values include: 'None', | ||
'SystemAssigned' | ||
:type type: str or ~azure.mgmt.search.models.IdentityType | ||
""" | ||
|
||
_validation = { | ||
'principal_id': {'readonly': True}, | ||
'tenant_id': {'readonly': True}, | ||
'type': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'principal_id': {'key': 'principalId', 'type': 'str'}, | ||
'tenant_id': {'key': 'tenantId', 'type': 'str'}, | ||
'type': {'key': 'type', 'type': 'IdentityType'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(Identity, self).__init__(**kwargs) | ||
self.principal_id = None | ||
self.tenant_id = None | ||
self.type = kwargs.get('type', None) |
48 changes: 48 additions & 0 deletions
48
sdk/search/azure-mgmt-search/azure/mgmt/search/models/identity_py3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class Identity(Model): | ||
"""Identity for the resource. | ||
Variables are only populated by the server, and will be ignored when | ||
sending a request. | ||
All required parameters must be populated in order to send to Azure. | ||
:ivar principal_id: The principal ID of resource identity. | ||
:vartype principal_id: str | ||
:ivar tenant_id: The tenant ID of resource. | ||
:vartype tenant_id: str | ||
:param type: Required. The identity type. Possible values include: 'None', | ||
'SystemAssigned' | ||
:type type: str or ~azure.mgmt.search.models.IdentityType | ||
""" | ||
|
||
_validation = { | ||
'principal_id': {'readonly': True}, | ||
'tenant_id': {'readonly': True}, | ||
'type': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'principal_id': {'key': 'principalId', 'type': 'str'}, | ||
'tenant_id': {'key': 'tenantId', 'type': 'str'}, | ||
'type': {'key': 'type', 'type': 'IdentityType'}, | ||
} | ||
|
||
def __init__(self, *, type, **kwargs) -> None: | ||
super(Identity, self).__init__(**kwargs) | ||
self.principal_id = None | ||
self.tenant_id = None | ||
self.type = type |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.