Skip to content

Commit 24dc2c5

Browse files
Merge remote-tracking branch 'origin/main' into feature/agentserver-durable-tasks
2 parents cea253b + 0569215 commit 24dc2c5

32 files changed

Lines changed: 840 additions & 138 deletions

sdk/monitor/azure-mgmt-monitorslis/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Release History
22

3+
## 1.0.0b2 (2026-05-23)
4+
5+
### Features Added
6+
7+
- Enum `SamplingType` added member `AVERAGE`
8+
- Enum `SamplingType` added member `COUNT`
9+
10+
### Breaking Changes
11+
12+
- Enum value `SamplingType.AVG` was removed.
13+
- Enum values `SamplingType.MAX`, `SamplingType.MIN`, and `SamplingType.SUM` changed wire values to `"Max"`, `"Min"`, and `"Sum"` (previously `"max"`, `"min"`, and `"sum"`).
14+
- Enum `ConditionOperator` changed wire values: `==` to `eq`, `!=` to `ne`, `>` to `gt`, `>=` to `gte`, `<` to `lt`, `<=` to `lte`, `@in` to `in`, `!in` to `notin`, `!contains` to `notcontains`, and `!startswith` to `notstartswith`.
15+
- Enum `WindowUptimeCriteriaComparator` changed wire values: `>` to `gt`, `>=` to `gte`, `<` to `lt`, and `<=` to `lte`.
16+
- Minimum Python version raised to 3.10 (previously 3.9); Python 3.9 is no longer supported.
17+
318
## 1.0.0b1 (2026-04-27)
419

520
### Other Changes

sdk/monitor/azure-mgmt-monitorslis/_metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"apiVersions": {
44
"Microsoft.Monitor": "2025-03-01-preview"
55
},
6-
"commit": "fa74a24ebfcd57429a95ef827b06eae0e639800a",
6+
"commit": "8be8c75d9bb11ea95d8a7e251db74aa78b5cd76c",
77
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
88
"typespec_src": "specification/monitoringservice/resource-manager/Microsoft.Monitor/Slis",
9-
"emitterVersion": "0.61.3"
9+
"emitterVersion": "0.62.1"
1010
}

sdk/monitor/azure-mgmt-monitorslis/apiview-properties.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,6 @@
4343
"azure.mgmt.monitorslis.aio.operations.SlisOperations.delete": "Microsoft.Monitor.Slis.delete",
4444
"azure.mgmt.monitorslis.operations.SlisOperations.list_by_parent": "Microsoft.Monitor.Slis.listByParent",
4545
"azure.mgmt.monitorslis.aio.operations.SlisOperations.list_by_parent": "Microsoft.Monitor.Slis.listByParent"
46-
}
46+
},
47+
"CrossLanguageVersion": "42338712126b"
4748
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"AssetsRepo": "Azure/azure-sdk-assets",
3+
"AssetsRepoPrefixPath": "python",
4+
"TagPrefix": "python/monitor/azure-mgmt-monitorslis",
5+
"Tag": "python/monitor/azure-mgmt-monitorslis_3192c4a8f5"
6+
}

sdk/monitor/azure-mgmt-monitorslis/azure/mgmt/monitorslis/_client.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88

99
from copy import deepcopy
1010
from typing import Any, Optional, TYPE_CHECKING, cast
11-
from typing_extensions import Self
1211

1312
from azure.core.pipeline import policies
1413
from azure.core.rest import HttpRequest, HttpResponse
1514
from azure.core.settings import settings
1615
from azure.mgmt.core import ARMPipelineClient
1716
from azure.mgmt.core.policies import ARMAutoResourceProviderRegistrationPolicy
1817
from azure.mgmt.core.tools import get_arm_endpoints
18+
from typing_extensions import Self
1919

2020
from ._configuration import MonitorSlisMgmtClientConfiguration
2121
from ._utils.serialization import Deserializer, Serializer
@@ -39,8 +39,9 @@ class MonitorSlisMgmtClient:
3939
None.
4040
:paramtype cloud_setting: ~azure.core.AzureClouds
4141
:keyword api_version: The API version to use for this operation. Known values are
42-
"2025-03-01-preview". Default value is "2025-03-01-preview". Note that overriding this default
43-
value may result in unsupported behavior.
42+
"2025-03-01-preview" and None. Default value is None. If not set, the operation's default API
43+
version will be used. Note that overriding this default value may result in unsupported
44+
behavior.
4445
:paramtype api_version: str
4546
"""
4647

sdk/monitor/azure-mgmt-monitorslis/azure/mgmt/monitorslis/_configuration.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ class MonitorSlisMgmtClientConfiguration: # pylint: disable=too-many-instance-a
3232
None.
3333
:type cloud_setting: ~azure.core.AzureClouds
3434
:keyword api_version: The API version to use for this operation. Known values are
35-
"2025-03-01-preview". Default value is "2025-03-01-preview". Note that overriding this default
36-
value may result in unsupported behavior.
35+
"2025-03-01-preview" and None. Default value is None. If not set, the operation's default API
36+
version will be used. Note that overriding this default value may result in unsupported
37+
behavior.
3738
:paramtype api_version: str
3839
"""
3940

sdk/monitor/azure-mgmt-monitorslis/azure/mgmt/monitorslis/_patch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize
99
"""
1010

11-
1211
__all__: list[str] = [] # Add all objects you want publicly available to users at this package level
1312

1413

0 commit comments

Comments
 (0)