Skip to content

Commit 3e3d34b

Browse files
authored
[Monitor] Pylint updates (#34429)
- Updates for next-pylint. - Added changelog entry for a previous release that was released from another branch. Signed-off-by: Paul Van Eck <[email protected]>
1 parent f2cb087 commit 3e3d34b

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

sdk/monitor/azure-monitor-query/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,17 @@
1717

1818
### Other Changes
1919

20+
## 1.2.1 (2024-01-31)
21+
22+
### Bugs Fixed
23+
24+
- Fixed certain keyword arguments from not being propagated when using `MetricsQueryClient`.
25+
26+
### Other Changes
27+
28+
- Internal updates to generated code.
29+
- Bumped minimum dependency on `azure-core` to `>=1.28.0`.
30+
2031
## 1.3.0b2 (2023-11-20)
2132

2233
### Other Changes

sdk/monitor/azure-monitor-query/azure/monitor/query/aio/_metrics_query_client_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def list_metric_namespaces(
154154
namespaces. This should be provided as a datetime object.
155155
:paramtype start_time: Optional[~datetime.datetime]
156156
:return: An iterator like instance of either MetricNamespace or the result of cls(response)
157-
:rtype: ~azure.core.paging.AsyncItemPaged[:class: `~azure.monitor.query.MetricNamespace`]
157+
:rtype: ~azure.core.paging.AsyncItemPaged[~azure.monitor.query.MetricNamespace]
158158
:raises ~azure.core.exceptions.HttpResponseError:
159159
160160
.. admonition:: Example:
@@ -188,7 +188,7 @@ def list_metric_definitions(
188188
:keyword namespace: Metric namespace to query metric definitions for.
189189
:paramtype namespace: Optional[str]
190190
:return: An iterator like instance of either MetricDefinition or the result of cls(response)
191-
:rtype: ~azure.core.paging.AsyncItemPaged[:class: `~azure.monitor.query.MetricDefinition`]
191+
:rtype: ~azure.core.paging.AsyncItemPaged[~azure.monitor.query.MetricDefinition]
192192
:raises ~azure.core.exceptions.HttpResponseError:
193193
194194
.. admonition:: Example:

0 commit comments

Comments
 (0)