-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9806054
commit 8a08543
Showing
14 changed files
with
1,385 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# [Command] _portal dashboard create_ | ||
|
||
Create a Dashboard. | ||
|
||
## Versions | ||
|
||
### [2022-12-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5wb3J0YWwvZGFzaGJvYXJkcy97fQ==/2022-12-01-preview.xml) **Stable** | ||
|
||
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.portal/dashboards/{} 2022-12-01-preview --> | ||
|
||
#### examples | ||
|
||
- Create a Dashboard | ||
```bash | ||
portal dashboard create --location "eastus" --name "testDashboard" --resource-group "testRG" --input-path "/src/json/properties.json" --tags aKey=aValue anotherKey=anotherValue | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# [Command] _portal dashboard delete_ | ||
|
||
Delete the Dashboard. | ||
|
||
## Versions | ||
|
||
### [2022-12-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5wb3J0YWwvZGFzaGJvYXJkcy97fQ==/2022-12-01-preview.xml) **Stable** | ||
|
||
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.portal/dashboards/{} 2022-12-01-preview --> | ||
|
||
#### examples | ||
|
||
- Delete a Dashboard | ||
```bash | ||
portal dashboard delete --name testDashboard --resource-group testRG | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# [Command] _portal dashboard list_ | ||
|
||
List all the dashboards within a subscription or a resource group. | ||
|
||
## Versions | ||
|
||
### [2022-12-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5wb3J0YWwvZGFzaGJvYXJkcw==/2022-12-01-preview.xml) **Stable** | ||
|
||
<!-- mgmt-plane /subscriptions/{}/providers/microsoft.portal/dashboards 2022-12-01-preview --> | ||
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.portal/dashboards 2022-12-01-preview --> | ||
|
||
#### examples | ||
|
||
- List all dashboards in a resourceGroup | ||
```bash | ||
portal dashboard list --resource-group testRG | ||
``` | ||
|
||
- List all dashboards in a subscription | ||
```bash | ||
portal dashboard list | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# [Command] _portal dashboard show_ | ||
|
||
Gets details for a dashboard. | ||
|
||
## Versions | ||
|
||
### [2022-12-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5wb3J0YWwvZGFzaGJvYXJkcy97fQ==/2022-12-01-preview.xml) **Stable** | ||
|
||
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.portal/dashboards/{} 2022-12-01-preview --> | ||
|
||
#### examples | ||
|
||
- Get a Dashboard | ||
```bash | ||
portal dashboard show --name testDashboard --resource-group testRG | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# [Command] _portal dashboard update_ | ||
|
||
Update an existing Dashboard. | ||
|
||
## Versions | ||
|
||
### [2022-12-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5wb3J0YWwvZGFzaGJvYXJkcy97fQ==/2022-12-01-preview.xml) **Stable** | ||
|
||
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.portal/dashboards/{} 2022-12-01-preview --> | ||
|
||
#### examples | ||
|
||
- Update a Dashboard | ||
```bash | ||
portal dashboard update --name "testDashboard" --resource-group "testRG" --input-path "/src/json/properties.json" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# [Group] _portal dashboard_ | ||
|
||
Manage portal dashboards. | ||
|
||
## Commands | ||
|
||
- [create](/Commands/portal/dashboard/_create.md) | ||
: Create a Dashboard. | ||
|
||
- [delete](/Commands/portal/dashboard/_delete.md) | ||
: Delete the Dashboard. | ||
|
||
- [list](/Commands/portal/dashboard/_list.md) | ||
: List all the dashboards within a subscription or a resource group. | ||
|
||
- [show](/Commands/portal/dashboard/_show.md) | ||
: Gets details for a dashboard. | ||
|
||
- [update](/Commands/portal/dashboard/_update.md) | ||
: Update an existing Dashboard. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# [Group] _portal_ | ||
|
||
Manage Portal. | ||
|
||
## Subgroups | ||
|
||
- [dashboard](/Commands/portal/dashboard/readme.md) | ||
: Manage portal dashboards. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.