Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
5fe1f95
First set of changes
vimunuku Jun 20, 2022
af926cf
Changes for adding examples
vimunuku Jun 20, 2022
f02bc77
Minor change
vimunuku Jun 21, 2022
9da4111
Changes as per comments
vimunuku Jun 22, 2022
e4c49ad
Change to update swagger
vimunuku Jun 22, 2022
7404e36
Changes for handling lintdiff errors
vimunuku Jun 22, 2022
478d1c3
Minor change
vimunuku Jun 22, 2022
a436475
Changes as per PR comments
vimunuku Jun 22, 2022
10ed086
More changes
vimunuku Jun 22, 2022
98fc7fc
More changes
vimunuku Jun 28, 2022
0fa33e4
Adds base for updating Microsoft.Support from version stable/2020-04-…
raghumunukutla Sep 2, 2022
882387a
Updates readme
raghumunukutla Sep 2, 2022
0ee575d
Updates API version in new specs and examples
raghumunukutla Sep 2, 2022
0d83828
Changes for new preview api version
raghumunukutla Sep 2, 2022
d4552b5
Changes as per PR comments
raghumunukutla Sep 7, 2022
6f37502
Minor change
raghumunukutla Sep 8, 2022
aa0dd7b
Changes for adding File attachment related paths, definitions and exa…
vimunuku Feb 4, 2023
9b71f87
Changes as per review comments
vimunuku Feb 5, 2023
2e1741d
Changes as per PR comments
vimunuku Feb 5, 2023
0d5f5c1
More cahnges as per PR comments
vimunuku Feb 6, 2023
c1c9202
Changes as per PR comments from ARM team
vimunuku Feb 10, 2023
54e5f30
Changes for adding a new property as part of support ticket details m…
vimunuku Jun 16, 2023
d4235d2
Fixed duplicate operation Ids
vimunuku Jul 27, 2023
cefa9d9
Fixing intendation
vimunuku Aug 1, 2023
342c348
Addressed all the errors by adding suppression rules and fixing the e…
vimunuku Aug 8, 2023
b563354
Changes for addressing PR comments
vimunuku Aug 9, 2023
8f7aa93
Minor changes
vimunuku Aug 15, 2023
6132126
Addressed comments
vimunuku Aug 17, 2023
dd2cad4
Minor change
vimunuku Aug 17, 2023
a2135f2
Fixed minor typo comments
vimunuku Aug 17, 2023
e7553fb
Minor fix
vimunuku Aug 18, 2023
af04dda
Merge with latest of master
vimunuku Aug 18, 2023
c170710
Fixed prettier checks
vimunuku Aug 18, 2023
62761d7
Changes as per checks
vimunuku Aug 18, 2023
9c48d32
Fixed PR comments
vimunuku Aug 18, 2023
99fa6aa
Minor change and prettier check updates
vimunuku Aug 18, 2023
00d8014
More cahges to address the errors from checks
vimunuku Aug 19, 2023
f3f5468
Changes as per checks
vimunuku Aug 19, 2023
4238dd4
Fixed few prettier checks
vimunuku Aug 19, 2023
9af2e8f
More changes to fix model validation errors
vimunuku Aug 19, 2023
72c55cc
Minor fix
vimunuku Aug 19, 2023
62cdc52
Merge branch 'Azure:main' into release-support-Microsoft.Support-2022…
raghumunukutla Aug 23, 2023
052ee28
Changes as per comments
vimunuku Aug 23, 2023
c24828a
Adding a suppression for workspace getlist
vimunuku Aug 23, 2023
94212c1
Some model changes and associated updates to the examples
vimunuku Sep 7, 2023
fd14516
Changes to fix errors from checks
vimunuku Sep 7, 2023
bdca9fd
Changes to fix errors from checks
vimunuku Sep 7, 2023
06d8781
Minor fixes in examples
vimunuku Sep 7, 2023
e798e0e
Changes for addressing comments
vimunuku Sep 21, 2023
1086d7a
Changes to address check failures
vimunuku Sep 21, 2023
8f1d077
Changes to address multi level nesting comment
vimunuku Sep 22, 2023
5f9ed4a
Fixing prettier check and minor fix
vimunuku Sep 22, 2023
da12e79
Changes as per new comments
vimunuku Sep 22, 2023
c6740c9
Changes to remove suppression at file level
vimunuku Sep 25, 2023
c635a3a
Changes for removing supression rules at file level
vimunuku Sep 25, 2023
2107828
Changes to apply suppression rule to the definition wherever applicable
vimunuku Sep 25, 2023
5989d7f
Removing couple of suppression rules as they are taken care for new api
vimunuku Sep 27, 2023
18ee98d
Changes to suppress TopLevelResourcesListBySubscription for fileworks…
vimunuku Sep 28, 2023
63d0660
Reverting the suppression rule change
vimunuku Sep 28, 2023
e0583a2
Changing suppression code
vimunuku Sep 28, 2023
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
@@ -0,0 +1,18 @@
{
"parameters": {
"api-version": "2022-09-01-preview",
"checkNameAvailabilityInput": {
"name": "sampleName",
"type": "Microsoft.Support/supportTickets"
}
},
"responses": {
"200": {
"body": {
"nameAvailable": false,
"reason": "Name is already in use",
"message": "Name not available"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"parameters": {
"supportTicketName": "testticket",
"api-version": "2022-09-01-preview",
"checkNameAvailabilityInput": {
"name": "sampleName",
"type": "Microsoft.Support/communications"
}
},
"responses": {
"200": {
"body": {
"nameAvailable": false,
"reason": "Name is already in use",
"message": "Name not available"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"parameters": {
"subscriptionId": "subid",
"supportTicketName": "testticket",
"api-version": "2022-09-01-preview",
"checkNameAvailabilityInput": {
"name": "sampleName",
"type": "Microsoft.Support/communications"
}
},
"responses": {
"200": {
"body": {
"nameAvailable": false,
"reason": "Name is already in use",
"message": "Name not available"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"parameters": {
"subscriptionId": "subid",
"api-version": "2022-09-01-preview",
"checkNameAvailabilityInput": {
"name": "sampleName",
"type": "Microsoft.Support/supportTickets"
}
},
"responses": {
"200": {
"body": {
"nameAvailable": false,
"reason": "Name is already in use",
"message": "Name not available"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
"parameters": {
"subscriptionId": "subid",
"supportTicketName": "testticket",
"api-version": "2022-09-01-preview",
"createSupportTicketParameters": {
"properties": {
"serviceId": "/providers/Microsoft.Support/services/quota_service_guid",
"title": "my title",
"description": "my description",
"problemClassificationId": "/providers/Microsoft.Support/services/quota_service_guid/problemClassifications/batch_problemClassification_guid",
"severity": "moderate",
"advancedDiagnosticConsent": "Yes",
"supportPlanId": "U291cmNlOlNDTSxDbGFyaWZ5SW5zdGFsbGF0aW9uU2l0ZUlkOjcsTGluZUl0ZW1JZDo5ODY1NzIyOSxDb250cmFjdElkOjk4NjU5MTk0LFN1YnNjcmlwdGlvbklkOjc2Y2I3N2ZhLThiMTctNGVhYi05NDkzLWI2NWRhY2U5OTgxMyw=",
"contactDetails": {
"firstName": "abc",
"lastName": "xyz",
"primaryEmailAddress": "abc@contoso.com",
"preferredContactMethod": "email",
"preferredTimeZone": "Pacific Standard Time",
"preferredSupportLanguage": "en-US",
"country": "usa"
},
"quotaTicketDetails": {
"quotaChangeRequestVersion": "1.0",
"quotaChangeRequestSubType": "Account",
"quotaChangeRequests": [
{
"region": "EastUS",
"payload": "{\"AccountName\":\"test\",\"NewLimit\":200,\"Type\":\"Jobs\"}"
}
]
}
}
}
},
"responses": {
"202": {
"headers": {
"location": "https://management.azure.com/subscriptions/subid/providers/Microsoft.Support/operationResults/operationid?api-version=2022-09-01-preview",
"azure-asyncoperation": "https://management.azure.com/subscriptions/subid/providers/Microsoft.Support/operationsStatus/operationid?api-version=2022-09-01-preview"
}
},
"200": {
"body": {
"id": "/subscriptions/subid/providers/Microsoft.Support/supportTickets/testticket",
"name": "testticket",
"type": "Microsoft.Support/supportTickets",
"properties": {
"supportTicketId": "119120321001170",
"description": "my description",
"problemClassificationId": "/providers/Microsoft.Support/services/quota_service_guid/problemClassifications/batch_problemClassification_guid",
"problemClassificationDisplayName": "Batch",
"severity": "moderate",
"require24X7Response": false,
"advancedDiagnosticConsent": "Yes",
"supportPlanId": "U291cmNlOlNDTSxDbGFyaWZ5SW5zdGFsbGF0aW9uU2l0ZUlkOjcsTGluZUl0ZW1JZDo5ODY1NzIyOSxDb250cmFjdElkOjk4NjU5MTk0LFN1YnNjcmlwdGlvbklkOjc2Y2I3N2ZhLThiMTctNGVhYi05NDkzLWI2NWRhY2U5OTgxMyw=",
"fileWorkspaceName": "testticket",
"contactDetails": {
"firstName": "abc",
"lastName": "xyz",
"preferredContactMethod": "email",
"primaryEmailAddress": "abc@contoso.com",
"preferredTimeZone": "Pacific Standard Time",
"country": "usa",
"preferredSupportLanguage": "en-US"
},
"quotaTicketDetails": {
"quotaChangeRequestVersion": "1.0",
"quotaChangeRequestSubType": "Account",
"quotaChangeRequests": [
{
"region": "EastUS",
"payload": "{\"AccountName\":\"test\",\"NewLimit\":200,\"Type\":\"Jobs\"}"
}
]
},
"serviceLevelAgreement": {
"startTime": "2020-03-20T21:36:18Z",
"expirationTime": "2020-03-21T17:36:18Z",
"slaMinutes": 240
},
"supportEngineer": {
"emailAddress": null
},
"supportPlanType": "Premier",
"supportPlanDisplayName": "Premier",
"title": "my title",
"serviceId": "/providers/Microsoft.Support/services/quota_service_guid",
"serviceDisplayName": "Service and subscription limits (quotas)",
"status": "Open",
"createdDate": "2020-03-20T21:36:18Z",
"modifiedDate": "2020-03-20T21:36:23Z"
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
"parameters": {
"subscriptionId": "subid",
"supportTicketName": "testticket",
"api-version": "2022-09-01-preview",
"createSupportTicketParameters": {
"properties": {
"serviceId": "/providers/Microsoft.Support/services/quota_service_guid",
"title": "my title",
"description": "my description",
"problemClassificationId": "/providers/Microsoft.Support/services/quota_service_guid/problemClassifications/batch_problemClassification_guid",
"severity": "moderate",
"advancedDiagnosticConsent": "Yes",
"supportPlanId": "U291cmNlOlNDTSxDbGFyaWZ5SW5zdGFsbGF0aW9uU2l0ZUlkOjcsTGluZUl0ZW1JZDo5ODY1NzIyOSxDb250cmFjdElkOjk4NjU5MTk0LFN1YnNjcmlwdGlvbklkOjc2Y2I3N2ZhLThiMTctNGVhYi05NDkzLWI2NWRhY2U5OTgxMyw=",
"contactDetails": {
"firstName": "abc",
"lastName": "xyz",
"primaryEmailAddress": "abc@contoso.com",
"preferredContactMethod": "email",
"preferredTimeZone": "Pacific Standard Time",
"preferredSupportLanguage": "en-US",
"country": "usa"
},
"quotaTicketDetails": {
"quotaChangeRequestVersion": "1.0",
"quotaChangeRequestSubType": "Account",
"quotaChangeRequests": [
{
"region": "EastUS",
"payload": "{\"AccountName\":\"test\",\"VMFamily\":\"standardA0_A7Family\",\"NewLimit\":200,\"Type\":\"Dedicated\"}"
}
]
}
}
}
},
"responses": {
"202": {
"headers": {
"location": "https://management.azure.com/subscriptions/subid/providers/Microsoft.Support/operationResults/operationid?api-version=2022-09-01-preview",
"azure-asyncoperation": "https://management.azure.com/subscriptions/subid/providers/Microsoft.Support/operationsStatus/operationid?api-version=2022-09-01-preview"
}
},
"200": {
"body": {
"id": "/subscriptions/subid/providers/Microsoft.Support/supportTickets/testticket",
"name": "testticket",
"type": "Microsoft.Support/supportTickets",
"properties": {
"supportTicketId": "119120321001170",
"description": "my description",
"problemClassificationId": "/providers/Microsoft.Support/services/quota_service_guid/problemClassifications/batch_problemClassification_guid",
"problemClassificationDisplayName": "Batch",
"severity": "moderate",
"require24X7Response": false,
"advancedDiagnosticConsent": "Yes",
"supportPlanId": "U291cmNlOlNDTSxDbGFyaWZ5SW5zdGFsbGF0aW9uU2l0ZUlkOjcsTGluZUl0ZW1JZDo5ODY1NzIyOSxDb250cmFjdElkOjk4NjU5MTk0LFN1YnNjcmlwdGlvbklkOjc2Y2I3N2ZhLThiMTctNGVhYi05NDkzLWI2NWRhY2U5OTgxMyw=",
"fileWorkspaceName": "testticket",
"contactDetails": {
"firstName": "abc",
"lastName": "xyz",
"preferredContactMethod": "email",
"primaryEmailAddress": "abc@contoso.com",
"preferredTimeZone": "Pacific Standard Time",
"country": "usa",
"preferredSupportLanguage": "en-US"
},
"quotaTicketDetails": {
"quotaChangeRequestVersion": "1.0",
"quotaChangeRequestSubType": "Account",
"quotaChangeRequests": [
{
"region": "EastUS",
"payload": "{\"AccountName\":\"test\",\"VMFamily\":\"standardA0_A7Family\",\"NewLimit\":200,\"Type\":\"Dedicated\"}"
}
]
},
"serviceLevelAgreement": {
"startTime": "2020-03-20T21:36:18Z",
"expirationTime": "2020-03-21T17:36:18Z",
"slaMinutes": 240
},
"supportEngineer": {
"emailAddress": null
},
"supportPlanType": "Premier",
"supportPlanDisplayName": "Premier",
"title": "my title",
"serviceId": "/providers/Microsoft.Support/services/quota_service_guid",
"serviceDisplayName": "Service and subscription limits (quotas)",
"status": "Open",
"createdDate": "2020-03-20T21:36:18Z",
"modifiedDate": "2020-03-20T21:36:23Z"
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
"parameters": {
"subscriptionId": "subid",
"supportTicketName": "testticket",
"api-version": "2022-09-01-preview",
"createSupportTicketParameters": {
"properties": {
"serviceId": "/providers/Microsoft.Support/services/quota_service_guid",
"title": "my title",
"description": "my description",
"problemClassificationId": "/providers/Microsoft.Support/services/quota_service_guid/problemClassifications/batch_problemClassification_guid",
"severity": "moderate",
"advancedDiagnosticConsent": "Yes",
"supportPlanId": "U291cmNlOlNDTSxDbGFyaWZ5SW5zdGFsbGF0aW9uU2l0ZUlkOjcsTGluZUl0ZW1JZDo5ODY1NzIyOSxDb250cmFjdElkOjk4NjU5MTk0LFN1YnNjcmlwdGlvbklkOjc2Y2I3N2ZhLThiMTctNGVhYi05NDkzLWI2NWRhY2U5OTgxMyw=",
"contactDetails": {
"firstName": "abc",
"lastName": "xyz",
"primaryEmailAddress": "abc@contoso.com",
"preferredContactMethod": "email",
"preferredTimeZone": "Pacific Standard Time",
"preferredSupportLanguage": "en-US",
"country": "usa"
},
"quotaTicketDetails": {
"quotaChangeRequestVersion": "1.0",
"quotaChangeRequestSubType": "Account",
"quotaChangeRequests": [
{
"region": "EastUS",
"payload": "{\"AccountName\":\"test\",\"NewLimit\":200,\"Type\":\"LowPriority\"}"
}
]
}
}
}
},
"responses": {
"202": {
"headers": {
"location": "https://management.azure.com/subscriptions/subid/providers/Microsoft.Support/operationResults/operationid?api-version=2022-09-01-preview",
"azure-asyncoperation": "https://management.azure.com/subscriptions/subid/providers/Microsoft.Support/operationsStatus/operationid?api-version=2022-09-01-preview"
}
},
"200": {
"body": {
"id": "/subscriptions/subid/providers/Microsoft.Support/supportTickets/testticket",
"name": "testticket",
"type": "Microsoft.Support/supportTickets",
"properties": {
"supportTicketId": "119120321001170",
"description": "my description",
"problemClassificationId": "/providers/Microsoft.Support/services/quota_service_guid/problemClassifications/batch_problemClassification_guid",
"problemClassificationDisplayName": "Batch",
"severity": "moderate",
"require24X7Response": false,
"advancedDiagnosticConsent": "Yes",
"supportPlanId": "U291cmNlOlNDTSxDbGFyaWZ5SW5zdGFsbGF0aW9uU2l0ZUlkOjcsTGluZUl0ZW1JZDo5ODY1NzIyOSxDb250cmFjdElkOjk4NjU5MTk0LFN1YnNjcmlwdGlvbklkOjc2Y2I3N2ZhLThiMTctNGVhYi05NDkzLWI2NWRhY2U5OTgxMyw=",
"fileWorkspaceName": "testticket",
"contactDetails": {
"firstName": "abc",
"lastName": "xyz",
"preferredContactMethod": "email",
"primaryEmailAddress": "abc@contoso.com",
"preferredTimeZone": "Pacific Standard Time",
"country": "usa",
"preferredSupportLanguage": "en-US"
},
"quotaTicketDetails": {
"quotaChangeRequestVersion": "1.0",
"quotaChangeRequestSubType": "Account",
"quotaChangeRequests": [
{
"region": "EastUS",
"payload": "{\"AccountName\":\"test\",\"NewLimit\":200,\"Type\":\"LowPriority\"}"
}
]
},
"serviceLevelAgreement": {
"startTime": "2020-03-20T21:36:18Z",
"expirationTime": "2020-03-21T17:36:18Z",
"slaMinutes": 240
},
"supportEngineer": {
"emailAddress": null
},
"supportPlanType": "Premier",
"supportPlanDisplayName": "Premier",
"title": "my title",
"serviceId": "/providers/Microsoft.Support/services/quota_service_guid",
"serviceDisplayName": "Service and subscription limits (quotas)",
"status": "Open",
"createdDate": "2020-03-20T21:36:18Z",
"modifiedDate": "2020-03-20T21:36:23Z"
}
}
}
}
}
Loading