Skip to content
Merged
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
4 changes: 4 additions & 0 deletions src/monitor-pipeline-group/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

1.0.0
++++++
* Update API version to 2026-04-01 (stable)

1.0.0b2
++++++
* Update API version to 2024-10-01-preview
Expand Down
2 changes: 1 addition & 1 deletion src/monitor-pipeline-group/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ az extension add --name monitor-pipeline-group
#### pipeline-group
##### Create
```
az monitor pipeline-group create --resource-group "myResourceGroup" --location "eastus" --name "myPipeline" --exporters @exporters.json --processors @processors.json --receivers @receivers.json --service @service.json --network-config [] --replicas 1 --extended-location @extendedLocation.json
az monitor pipeline-group create --resource-group "myResourceGroup" --location "eastus" --name "myPipeline" --exporters @exporters.json --processors @processors.json --receivers @receivers.json --service @service.json --replicas 1 --extended-location @extendedLocation.json
```
##### Show
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"monitor pipeline-group",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Pipeline Groups
"""Manage Azure Monitor Pipelines
"""
pass

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ class Delete(AAZCommand):
"""

_aaz_info = {
"version": "2024-10-01-preview",
"version": "2026-04-01",
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.monitor/pipelinegroups/{}", "2024-10-01-preview"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.monitor/pipelinegroups/{}", "2026-04-01"],
]
}

Expand Down Expand Up @@ -143,7 +143,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2024-10-01-preview",
"api-version", "2026-04-01",
required=True,
),
}
Expand Down
Loading
Loading