Skip to content
Open
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
26 changes: 26 additions & 0 deletions sdk/elastic/azure-mgmt-elastic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Release History

## 3.0.0b1 (2026-07-07)

### Features Added

- Model `MonitoredSubscriptionProperties` added property `system_data`
- Model `OpenAIIntegrationRPModel` added property `system_data`
- Added model `ProxyResource`
- Added model `Resource`
- Added model `TrackedResource`

### Breaking Changes

- For the method breakings, please refer to https://aka.ms/azsdk/python/migrate/operations for migration.
- Renamed client `MicrosoftElastic` to `ElasticMgmtClient`
- Method `AssociateTrafficFilterOperations.begin_associate` changed its parameter `ruleset_id` from `positional_or_keyword` to `keyword_only`
- Method `CreateAndAssociateIPFilterOperations.begin_create` changed its parameter `ips`/`name` from `positional_or_keyword` to `keyword_only`
- Method `CreateAndAssociatePLFilterOperations.begin_create` changed its parameter `name`/`private_endpoint_guid`/`private_endpoint_name` from `positional_or_keyword` to `keyword_only`
- Method `DetachAndDeleteTrafficFilterOperations.delete` changed its parameter `ruleset_id` from `positional_or_keyword` to `keyword_only`
- Method `DetachTrafficFilterOperations.begin_update` changed its parameter `ruleset_id` from `positional_or_keyword` to `keyword_only`
- Method `ElasticVersionsOperations.list` changed its parameter `region` from `positional_or_keyword` to `keyword_only`
- Method `TrafficFiltersOperations.delete` changed its parameter `ruleset_id` from `positional_or_keyword` to `keyword_only`

### Other Changes

- Deleted model `ConnectedPartnerResourcesListResponse`/`ElasticMonitorResourceListResponse`/`ElasticVersionsListResponse`/`MonitoredResourceListResponse`/`MonitoredSubscriptionPropertiesList`/`MonitoringTagRulesListResponse`/`OpenAIIntegrationRPModelListResponse`/`OperationListResult`/`VMHostListResponse` which actually were not used by SDK users

## 2.0.0 (2025-11-17)

### Features Added
Expand Down
10 changes: 5 additions & 5 deletions sdk/elastic/azure-mgmt-elastic/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Microsoft Azure SDK for Python

This is the Microsoft Azure Elastic Management Client Library.
This package has been tested with Python 3.9+.
This package has been tested with Python 3.10+.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).

## _Disclaimer_
Expand All @@ -12,7 +12,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For

### Prerequisites

- Python 3.9+ is required to use this package.
- Python 3.10+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package
Expand All @@ -24,7 +24,7 @@ pip install azure-identity

### Authentication

By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configuration of the following environment variables.
By default, [Microsoft Entra](https://learn.microsoft.com/entra/fundamentals/what-is-entra) token authentication depends on correct configuration of the following environment variables.

- `AZURE_CLIENT_ID` for Azure client ID.
- `AZURE_TENANT_ID` for Azure tenant ID.
Expand All @@ -36,11 +36,11 @@ With above configuration, client can be authenticated by following code:

```python
from azure.identity import DefaultAzureCredential
from azure.mgmt.elastic import MicrosoftElastic
from azure.mgmt.elastic import ElasticMgmtClient
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = MicrosoftElastic(credential=DefaultAzureCredential(), subscription_id=sub_id)
client = ElasticMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```

## Examples
Expand Down
16 changes: 8 additions & 8 deletions sdk/elastic/azure-mgmt-elastic/_metadata.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"commit": "22ae5674fc98c32b29fb60791bd51a8fbd41b25f",
"apiVersion": "2025-06-01",
"apiVersions": {
"Microsoft.Elastic": "2025-06-01"
},
"commit": "74d1bc903079523fec5c65b24b2770e6e06f14fa",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.10.2",
"use": [
"@autorest/python@6.41.3",
"@autorest/modelerfour@4.27.0"
],
"autorest_command": "autorest specification/elastic/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --package-mode=azure-mgmt --python --python-sdks-folder=/mnt/vss/_work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.41.3 --use=@autorest/modelerfour@4.27.0 --version=3.10.2 --version-tolerant=False",
"readme": "specification/elastic/resource-manager/readme.md"
"typespec_src": "specification/elastic/Elastic.Management",
"emitterVersion": "0.63.2",
"httpClientPythonVersion": "^0.34.0"
}
Loading
Loading