Skip to content

Commit 484b4b1

Browse files
author
Bhavin Shah
committed
addressing review comments
1 parent f2814b4 commit 484b4b1

File tree

6 files changed

+17
-20
lines changed

6 files changed

+17
-20
lines changed

src/Support/Support.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@
4545
//
4646
// You can specify all the values or you can default the Build and Revision Numbers
4747
// by using the '*' as shown below:
48-
[assembly: AssemblyVersion("1.0.0")]
49-
[assembly: AssemblyFileVersion("1.0.0")]
48+
[assembly: AssemblyVersion("0.1.0")]
49+
[assembly: AssemblyFileVersion("0.1.0")]
5050
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/Support/Support/Az.Support.psd1

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.0.0'
15+
ModuleVersion = '0.1.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -110,7 +110,15 @@ PrivateData = @{
110110
# IconUri = ''
111111

112112
# ReleaseNotes of this module
113-
ReleaseNotes = '* Stable release of ''Az.Support'' module. A support ticket can now be closed using Update-AzSupportTicket cmdlet. A new severity HighestCriticalImpact was added that is available to certain customers. Get-AzSupportService returns one or more ARM ResourceTypes that the service is responsible for. ProductionOutage property was removed from support ticket details object.'
113+
ReleaseNotes = '* Preview release of ''Az.Support'' module. Added following cmdlets for creation and management of support tickets.
114+
- Get-AzSupportService
115+
- Get-AzSupportProblemClassification
116+
- New-AzSupportContactProfileObject
117+
- New-AzSupportTicket
118+
- Get-AzSupportTicket
119+
- Update-AzSupportTicket
120+
- New-AzSupportTicketCommunication
121+
- Get-AzSupportTicketCommunication'
114122

115123
# Prerelease string of this module
116124
# Prerelease = ''

src/Support/Support/ChangeLog.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,6 @@
2020

2121
## Upcoming Release
2222

23-
## Version 1.0.0
24-
* Stable release of `Az.Support` module. Following cmdlets can be used for creation and management of support tickets. Update-AzSupportTicket can now be used to close a support ticket as long as it is not assigned to a support engineer.
25-
- Get-AzSupportService
26-
- Get-AzSupportProblemClassification
27-
- New-AzSupportContactProfileObject
28-
- New-AzSupportTicket
29-
- Get-AzSupportTicket
30-
- Update-AzSupportTicket
31-
- New-AzSupportTicketCommunication
32-
- Get-AzSupportTicketCommunication
33-
3423
## Version 0.1.0
3524
* Preview release of `Az.Support` module. Added following cmdlets for creation and management of support tickets.
3625
- Get-AzSupportService

src/Support/Support/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("22d73af7-38c2-4bf6-b56f-4dc9db05d97a")]
28-
[assembly: AssemblyVersion("1.0.0")]
29-
[assembly: AssemblyFileVersion("1.0.0")]
28+
[assembly: AssemblyVersion("0.1.0")]
29+
[assembly: AssemblyFileVersion("0.1.0")]

src/Support/Support/help/Get-AzSupportService.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Get-AzSupportService -Id <String> [-DefaultProfile <IAzureContextContainer>] [<C
2323
```
2424

2525
## DESCRIPTION
26-
Gets the current list of Azure services for which support is available. Each Azure service may contain one of more ARM ResouceTypes that it is responsible for, that you can use to identify the service when creating a technical support ticket for an ARM resource. Each Azure service has its own set of categories called problem classification. Get the current list of problem classification for a service using Get-AzSupportProblemClassification. You can use the service and problem classification GUID to create a new support ticket using New-AzSupportTicket.
26+
Gets the current list of Azure services for which support is available. Each service may contain one or more Azure resource manager (ARM) resource type information. Resource types (example: 'microsoft.compute/virtualmachines') can be useful to map the right product and ARM resource when creating a technical support ticket. Each Azure service has its own set of categories called problem classification. Get the current list of problem classification for a service using Get-AzSupportProblemClassification. You can use the service and problem classification GUID to create a new support ticket using New-AzSupportTicket.
2727

2828
Always use the service and problem classification GUIDs obtained programmatically. This practice ensures that you have the most recent set of service and problem classification GUIDs for support ticket creation.
2929

src/Support/Support/help/New-AzSupportTicket.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ test1 Test 150010521000317 Minimal Service and subscription limits (quotas) Op
225225

226226
### Example 13: Create a quota support ticket to increase quota for Low-priority cores for Machine Learning service. Use Get-AzSupportService and Get-AzSupportProblemClassification to retrieve correct GUIDs for Quota Machine Learning service problem classification.
227227
```powershell
228-
PS C:\> New-AzSupportTicket -Name "test1" -Title "Test" -Description "Test" -Severity "minimal" -ProblemClassificationId "/providers/Microsoft.Support/services/{quota_service_guid}/problemClassifications/{sql_datawarehouse_problemClassification_guid}" -QuotaTicketDetail @{QuotaChangeRequestVersion = "1.0" ; QuotaChangeRequestSubType = "BatchAml" ; QuotaChangeRequests = (@{Region = "westus"; Payload = "{`"NewLimit`":200,`"Type`":`"LowPriority`" }"})} -CustomerContactDetail @{FirstName = "first" ; LastName = "last" ; PreferredTimeZone = "pacific standard time" ; PreferredSupportLanguage = "en-us" ; Country = "USA" ; PreferredContactMethod = "Email" ; PrimaryEmailAddress = "[email protected]"}
228+
PS C:\> New-AzSupportTicket -Name "test1" -Title "Test" -Description "Test" -Severity "minimal" -ProblemClassificationId "/providers/Microsoft.Support/services/{quota_service_guid}/problemClassifications/{machine_learning_service_problemClassification_guid}" -QuotaTicketDetail @{QuotaChangeRequestVersion = "1.0" ; QuotaChangeRequestSubType = "BatchAml" ; QuotaChangeRequests = (@{Region = "westus"; Payload = "{`"NewLimit`":200,`"Type`":`"LowPriority`" }"})} -CustomerContactDetail @{FirstName = "first" ; LastName = "last" ; PreferredTimeZone = "pacific standard time" ; PreferredSupportLanguage = "en-us" ; Country = "USA" ; PreferredContactMethod = "Email" ; PrimaryEmailAddress = "[email protected]"}
229229
230230
Name Title SupportTicketId Severity ServiceDisplayName Status CreatedDate
231231
---- ----- --------------- -------- ------------------ ------ -----------
@@ -234,7 +234,7 @@ test1 Test 150010521000317 Minimal Service and subscription limits (quotas) Op
234234

235235
### Example 14: Create a quota support ticket to increase VM cores quota for a specific VM Family for Machine Learning service. Use Get-AzSupportService and Get-AzSupportProblemClassification to retrieve correct GUIDs for Quota Machine Learning service problem classification.
236236
```powershell
237-
PS C:\> New-AzSupportTicket -Name "test1" -Title "Test" -Description "Test" -Severity "minimal" -ProblemClassificationId "/providers/Microsoft.Support/services/{quota_service_guid}/problemClassifications/{sql_datawarehouse_problemClassification_guid}" -QuotaTicketDetail @{QuotaChangeRequestVersion = "1.0" ; QuotaChangeRequestSubType = "BatchAml" ; QuotaChangeRequests = (@{Region = "westus"; Payload = "{`"VMFamily`":`"standardDFamily`",`"NewLimit`":200,`"Type`":`"Dedicated`" }"})} -CustomerContactDetail @{FirstName = "first" ; LastName = "last" ; PreferredTimeZone = "pacific standard time" ; PreferredSupportLanguage = "en-us" ; Country = "USA" ; PreferredContactMethod = "Email" ; PrimaryEmailAddress = "[email protected]"}
237+
PS C:\> New-AzSupportTicket -Name "test1" -Title "Test" -Description "Test" -Severity "minimal" -ProblemClassificationId "/providers/Microsoft.Support/services/{quota_service_guid}/problemClassifications/{machine_learning_service_problemClassification_guid}" -QuotaTicketDetail @{QuotaChangeRequestVersion = "1.0" ; QuotaChangeRequestSubType = "BatchAml" ; QuotaChangeRequests = (@{Region = "westus"; Payload = "{`"VMFamily`":`"standardDFamily`",`"NewLimit`":200,`"Type`":`"Dedicated`" }"})} -CustomerContactDetail @{FirstName = "first" ; LastName = "last" ; PreferredTimeZone = "pacific standard time" ; PreferredSupportLanguage = "en-us" ; Country = "USA" ; PreferredContactMethod = "Email" ; PrimaryEmailAddress = "[email protected]"}
238238
239239
Name Title SupportTicketId Severity ServiceDisplayName Status CreatedDate
240240
---- ----- --------------- -------- ------------------ ------ -----------

0 commit comments

Comments
 (0)