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

## 1.0.0b2 (2026-05-23)

### Features Added

- Enum `SamplingType` added member `AVERAGE`
- Enum `SamplingType` added member `COUNT`

### Breaking Changes

- Deleted or renamed enum value `SamplingType.AVG`

## 1.0.0b1 (2026-04-27)

### Other Changes
Expand Down
4 changes: 2 additions & 2 deletions sdk/monitor/azure-mgmt-monitorslis/_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"apiVersions": {
"Microsoft.Monitor": "2025-03-01-preview"
},
"commit": "fa74a24ebfcd57429a95ef827b06eae0e639800a",
"commit": "8be8c75d9bb11ea95d8a7e251db74aa78b5cd76c",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"typespec_src": "specification/monitoringservice/resource-manager/Microsoft.Monitor/Slis",
"emitterVersion": "0.61.3"
"emitterVersion": "0.62.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@
"azure.mgmt.monitorslis.aio.operations.SlisOperations.delete": "Microsoft.Monitor.Slis.delete",
"azure.mgmt.monitorslis.operations.SlisOperations.list_by_parent": "Microsoft.Monitor.Slis.listByParent",
"azure.mgmt.monitorslis.aio.operations.SlisOperations.list_by_parent": "Microsoft.Monitor.Slis.listByParent"
}
},
"CrossLanguageVersion": "42338712126b"
}
6 changes: 6 additions & 0 deletions sdk/monitor/azure-mgmt-monitorslis/assets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "python",
"TagPrefix": "python/monitor/azure-mgmt-monitorslis",
"Tag": "python/monitor/azure-mgmt-monitorslis_3192c4a8f5"
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
# --------------------------------------------------------------------------

from copy import deepcopy
import sys
from typing import Any, Optional, TYPE_CHECKING, cast
from typing_extensions import Self

from azure.core.pipeline import policies
from azure.core.rest import HttpRequest, HttpResponse
Expand All @@ -21,6 +21,11 @@
from ._utils.serialization import Deserializer, Serializer
from .operations import SlisOperations

if sys.version_info >= (3, 11):
from typing import Self
else:
from typing_extensions import Self # type: ignore

Comment on lines 9 to +28
if TYPE_CHECKING:
from azure.core import AzureClouds
from azure.core.credentials import TokenCredential
Expand All @@ -39,8 +44,9 @@ class MonitorSlisMgmtClient:
None.
:paramtype cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2025-03-01-preview". Default value is "2025-03-01-preview". Note that overriding this default
value may result in unsupported behavior.
"2025-03-01-preview" and None. Default value is None. If not set, the operation's default API
version will be used. Note that overriding this default value may result in unsupported
behavior.
:paramtype api_version: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ class MonitorSlisMgmtClientConfiguration: # pylint: disable=too-many-instance-a
None.
:type cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2025-03-01-preview". Default value is "2025-03-01-preview". Note that overriding this default
value may result in unsupported behavior.
"2025-03-01-preview" and None. Default value is None. If not set, the operation's default API
version will be used. Note that overriding this default value may result in unsupported
behavior.
:paramtype api_version: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize
"""


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


Expand Down
Loading
Loading