Skip to content

Commit bc0faa3

Browse files
[AutoRelease] t2-search-2025-04-02-90559(can only be merged by SDK owner) (#40332)
* code and test * Update changelog for 9.2.0b3 release date * update testcases --------- Co-authored-by: azure-sdk <PythonSdkPipelines> Co-authored-by: ChenxiJiang333 <[email protected]> Co-authored-by: ChenxiJiang333 <[email protected]>
1 parent 10f8534 commit bc0faa3

16 files changed

+297
-453
lines changed

sdk/search/azure-mgmt-search/CHANGELOG.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# Release History
22

3-
## 9.2.0b3 (2025-03-24)
3+
## 9.2.0b3 (2025-04-02)
44

55
### Features Added
66

77
- Client `SearchManagementClient` added operation group `offerings`
8-
- Client `SearchManagementClient` added operation group `service`
98
- Model `SearchService` added property `system_data`
109
- Model `SearchService` added property `endpoint`
1110
- Model `SearchService` added property `compute_type`
@@ -25,8 +24,8 @@
2524
- Added model `SkuOffering`
2625
- Added model `SkuOfferingLimits`
2726
- Added model `SystemData`
27+
- Operation group `ServicesOperations` added method `begin_upgrade`
2828
- Added operation group `OfferingsOperations`
29-
- Added operation group `ServiceOperations`
3029

3130
## 9.2.0b2 (2024-07-18)
3231

sdk/search/azure-mgmt-search/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pip install azure-identity
2424

2525
### Authentication
2626

27-
By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.
27+
By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configuration of the following environment variables.
2828

2929
- `AZURE_CLIENT_ID` for Azure client ID.
3030
- `AZURE_TENANT_ID` for Azure tenant ID.

sdk/search/azure-mgmt-search/_meta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"commit": "f6674831693bce0982f08ccf356255248a4c9a8f",
2+
"commit": "d19224ba51aa869cd99f981842b780d69d51c297",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.10.2",
55
"use": [

sdk/search/azure-mgmt-search/azure/mgmt/search/_search_management_client.py

-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
PrivateLinkResourcesOperations,
2828
QueryKeysOperations,
2929
SearchManagementClientOperationsMixin,
30-
ServiceOperations,
3130
ServicesOperations,
3231
SharedPrivateLinkResourcesOperations,
3332
UsagesOperations,
@@ -64,8 +63,6 @@ class SearchManagementClient(SearchManagementClientOperationsMixin): # pylint:
6463
NetworkSecurityPerimeterConfigurationsOperations operations
6564
:vartype network_security_perimeter_configurations:
6665
azure.mgmt.search.operations.NetworkSecurityPerimeterConfigurationsOperations
67-
:ivar service: ServiceOperations operations
68-
:vartype service: azure.mgmt.search.operations.ServiceOperations
6966
:param credential: Credential needed for the client to connect to Azure. Required.
7067
:type credential: ~azure.core.credentials.TokenCredential
7168
:param subscription_id: The unique identifier for a Microsoft Azure subscription. You can
@@ -132,7 +129,6 @@ def __init__(
132129
self.network_security_perimeter_configurations = NetworkSecurityPerimeterConfigurationsOperations(
133130
self._client, self._config, self._serialize, self._deserialize
134131
)
135-
self.service = ServiceOperations(self._client, self._config, self._serialize, self._deserialize)
136132

137133
def _send_request(self, request: HttpRequest, *, stream: bool = False, **kwargs: Any) -> HttpResponse:
138134
"""Runs the network request through the client's chained policies.

sdk/search/azure-mgmt-search/azure/mgmt/search/aio/_search_management_client.py

-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
PrivateLinkResourcesOperations,
2828
QueryKeysOperations,
2929
SearchManagementClientOperationsMixin,
30-
ServiceOperations,
3130
ServicesOperations,
3231
SharedPrivateLinkResourcesOperations,
3332
UsagesOperations,
@@ -65,8 +64,6 @@ class SearchManagementClient(SearchManagementClientOperationsMixin): # pylint:
6564
NetworkSecurityPerimeterConfigurationsOperations operations
6665
:vartype network_security_perimeter_configurations:
6766
azure.mgmt.search.aio.operations.NetworkSecurityPerimeterConfigurationsOperations
68-
:ivar service: ServiceOperations operations
69-
:vartype service: azure.mgmt.search.aio.operations.ServiceOperations
7067
:param credential: Credential needed for the client to connect to Azure. Required.
7168
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
7269
:param subscription_id: The unique identifier for a Microsoft Azure subscription. You can
@@ -133,7 +130,6 @@ def __init__(
133130
self.network_security_perimeter_configurations = NetworkSecurityPerimeterConfigurationsOperations(
134131
self._client, self._config, self._serialize, self._deserialize
135132
)
136-
self.service = ServiceOperations(self._client, self._config, self._serialize, self._deserialize)
137133

138134
def _send_request(
139135
self, request: HttpRequest, *, stream: bool = False, **kwargs: Any

sdk/search/azure-mgmt-search/azure/mgmt/search/aio/operations/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
from ._usages_operations import UsagesOperations # type: ignore
2424
from ._search_management_client_operations import SearchManagementClientOperationsMixin # type: ignore
2525
from ._network_security_perimeter_configurations_operations import NetworkSecurityPerimeterConfigurationsOperations # type: ignore
26-
from ._service_operations import ServiceOperations # type: ignore
2726

2827
from ._patch import __all__ as _patch_all
2928
from ._patch import *
@@ -41,7 +40,6 @@
4140
"UsagesOperations",
4241
"SearchManagementClientOperationsMixin",
4342
"NetworkSecurityPerimeterConfigurationsOperations",
44-
"ServiceOperations",
4543
]
4644
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
4745
_patch_sdk()

sdk/search/azure-mgmt-search/azure/mgmt/search/aio/operations/_service_operations.py

-174
This file was deleted.

0 commit comments

Comments
 (0)