File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
sdk/monitor/azure-monitor-query Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 17
17
18
18
### Other Changes
19
19
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
+
20
31
## 1.3.0b2 (2023-11-20)
21
32
22
33
### Other Changes
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ def list_metric_namespaces(
154
154
namespaces. This should be provided as a datetime object.
155
155
:paramtype start_time: Optional[~datetime.datetime]
156
156
: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]
158
158
:raises ~azure.core.exceptions.HttpResponseError:
159
159
160
160
.. admonition:: Example:
@@ -188,7 +188,7 @@ def list_metric_definitions(
188
188
:keyword namespace: Metric namespace to query metric definitions for.
189
189
:paramtype namespace: Optional[str]
190
190
: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]
192
192
:raises ~azure.core.exceptions.HttpResponseError:
193
193
194
194
.. admonition:: Example:
You can’t perform that action at this time.
0 commit comments