forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 1
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
7bdc9aa
commit 913b1bb
Showing
2 changed files
with
33 additions
and
12 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
21 changes: 15 additions & 6 deletions
21
src/Support/Support.Autorest/examples/Get-AzSupportService.md
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 |
---|---|---|
@@ -1,22 +1,31 @@ | ||
### Example 1: {{ Add title here }} | ||
```powershell | ||
{{ Add code here }} | ||
Get-AzSupportService | ||
``` | ||
|
||
```output | ||
{{ Add output here (remove the output block if the example doesn't have an output) }} | ||
DisplayName Name ResourceType | ||
----------- ---- ------------ | ||
Activity Logs 484e2236-bc6d-b1bb-76d2-7d09278cf9ea {} | ||
Advisor 26d8424b-0a41-4443-cbc6-0309ea8708d0 {} | ||
AKS Edge Essentials 1232100c-42c0-f626-2b4f-8c8a4877acad {Microsoft.Kubernetes/connectedClusters} | ||
``` | ||
|
||
{{ Add description here }} | ||
Lists all the Azure services available for support ticket creation. For **Technical** issues, select the Service Id that maps to the Azure service/product as displayed in the **Services** drop-down list on the Azure portal's [New support request](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/overview) page. Always use the service and its corresponding problem classification(s) obtained programmatically for support ticket creation. This practice ensures that you always have the most recent set of service and problem classification Ids. | ||
|
||
### Example 2: {{ Add title here }} | ||
```powershell | ||
{{ Add code here }} | ||
Get-AzSupportService -Name "484e2236-bc6d-b1bb-76d2-7d09278cf9ea" | ||
``` | ||
|
||
```output | ||
{{ Add output here (remove the output block if the example doesn't have an output) }} | ||
DisplayName : Activity Logs | ||
Id : /providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea | ||
Name : 484e2236-bc6d-b1bb-76d2-7d09278cf9ea | ||
ResourceGroupName : | ||
ResourceType : {} | ||
Type : Microsoft.Support/services | ||
``` | ||
|
||
{{ Add description here }} | ||
Gets a specific Azure service for support ticket creation. | ||
|