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
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@
}
},
"201": {
"headers": {
"Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/locations/eastus2/operationStatuses/sample-op-status?api-version=2022-08-01"
},
"body": {
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/grafana/myWorkspace",
"name": "myWorkspace",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
},
"responses": {
"200": {},
"202": {},
"202": {
"headers": {
"Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/locations/eastus2/operationStatuses/sample-op-status?api-version=2022-08-01"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@
}
},
"202": {
"headers": {
"Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/locations/eastus2/operationStatuses/sample-op-status?api-version=2022-08-01"
},
"body": {
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/grafana/myWorkspace",
"name": "myWorkspace",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
},
"responses": {
"201": {
"headers": {
"Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/locations/eastus2/operationStatuses/sample-op-status?api-version=2022-08-01"
},
"body": {
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/Microsoft.Dashboard/grafana/myWorkspace/privateEndpointConnections/myConnection",
"name": "myConnection",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
"privateEndpointConnectionName": "myConnection"
},
"responses": {
"202": {},
"202": {
"headers": {
"Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/locations/eastus2/operationStatuses/sample-op-status?api-version=2022-08-01"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,12 @@
},
"201": {
"description": "Created. The operation was successfully started and will complete asynchronously.",
"headers": {
"Azure-AsyncOperation": {
"description": "Operation URI for long running operation.",
"type": "string"
}
},
"schema": {
"$ref": "#/definitions/ManagedGrafana"
}
Expand Down Expand Up @@ -293,6 +299,12 @@
},
"202": {
"description": "Accepted. The operation was successfully started and will complete asynchronously.",
"headers": {
"Azure-AsyncOperation": {
"description": "Operation URI for long running operation.",
"type": "string"
}
},
"schema": {
"$ref": "#/definitions/ManagedGrafana"
}
Expand Down Expand Up @@ -338,7 +350,13 @@
"description": "OK. The workspace for Grafana resource is deleted."
},
"202": {
"description": "Accepted. The operation is accepted and will be completed asynchronously."
"description": "Accepted. The operation is accepted and will be completed asynchronously.",
"headers": {
"Azure-AsyncOperation": {
"description": "Operation URI for long running operation.",
"type": "string"
}
}
},
"204": {
"description": "No Content"
Expand Down Expand Up @@ -447,6 +465,12 @@
"responses": {
"201": {
"description": "Created. The operation was successfully started and will complete asynchronously.",
"headers": {
"Azure-AsyncOperation": {
"description": "Operation URI for long running operation.",
"type": "string"
}
},
"schema": {
"$ref": "#/definitions/PrivateEndpointConnection"
}
Expand Down Expand Up @@ -496,7 +520,13 @@
],
"responses": {
"202": {
"description": "Accepted. The operation is accepted and will be completed asynchronously."
"description": "Accepted. The operation is accepted and will be completed asynchronously.",
"headers": {
"Azure-AsyncOperation": {
"description": "Operation URI for long running operation.",
"type": "string"
}
}
},
"204": {
"description": "NoContent"
Expand Down