-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Microsoft.Support RP documentation updates (#9880)
* support rp swagger for public preview * fixing spelling error * addressing review comments * adding common resource properties * fixing readme.csharp.md * adding example that was missed * fix syntax error in swagger spec * fixing model validation error * put support for communication resource and other updates based on comments * updating communication to be async, fixing version on async and location headers * updating documentation and examples * fixing spelling error * ran prettier fix and addressing review comments * documentation updates * documentation update Co-authored-by: Bhavin Shah <[email protected]>
- Loading branch information
Showing
3 changed files
with
110 additions
and
7 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
100 changes: 100 additions & 0 deletions
100
...ger/Microsoft.Support/stable/2020-04-01/examples/CreateSqlManagedInstanceQuotaTicket.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,100 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "subid", | ||
"supportTicketName": "testticket", | ||
"api-version": "2020-04-01", | ||
"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/sql_managedinstance_problemClassification_guid", | ||
"severity": "moderate", | ||
"contactDetails": { | ||
"firstName": "abc", | ||
"lastName": "xyz", | ||
"primaryEmailAddress": "[email protected]", | ||
"preferredContactMethod": "email", | ||
"preferredTimeZone": "Pacific Standard Time", | ||
"preferredSupportLanguage": "en-US", | ||
"country": "usa" | ||
}, | ||
"quotaTicketDetails": { | ||
"quotaChangeRequestVersion": "1.0", | ||
"quotaChangeRequestSubType": "SQLMI", | ||
"quotaChangeRequests": [ | ||
{ | ||
"region": "EastUS", | ||
"payload": "{\"NewLimit\":200, \"Metadata\":null, \"Type\":\"vCore\"}" | ||
}, | ||
{ | ||
"region": "EastUS", | ||
"payload": "{\"NewLimit\":200, \"Metadata\":null, \"Type\":\"Subnet\"}" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"202": { | ||
"headers": { | ||
"location": "https://management.azure.com/subscriptions/subid/providers/Microsoft.Support/operationResults/operationid?api-version=2020-04-01", | ||
"azure-asyncoperation": "https://management.azure.com/subscriptions/subid/providers/Microsoft.Support/operationsStatus/operationid?api-version=2020-04-01" | ||
} | ||
}, | ||
"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/sql_datawarehouse_problemClassification_guid", | ||
"problemClassificationDisplayName": "SQL Database Managed Instance", | ||
"severity": "moderate", | ||
"require24X7Response": false, | ||
"contactDetails": { | ||
"firstName": "abc", | ||
"lastName": "xyz", | ||
"preferredContactMethod": "email", | ||
"primaryEmailAddress": "[email protected]", | ||
"preferredTimeZone": "Pacific Standard Time", | ||
"country": "usa", | ||
"preferredSupportLanguage": "en-US" | ||
}, | ||
"quotaTicketDetails": { | ||
"quotaChangeRequestVersion": "1.0", | ||
"quotaChangeRequestSubType": "SQLMI", | ||
"quotaChangeRequests": [ | ||
{ | ||
"region": "EastUS", | ||
"payload": "{\"NewLimit\":200, \"Metadata\":null, \"Type\":\"vCore\"}" | ||
}, | ||
{ | ||
"region": "EastUS", | ||
"payload": "{\"NewLimit\":200, \"Metadata\":null, \"Type\":\"Subnet\"}" | ||
} | ||
] | ||
}, | ||
"serviceLevelAgreement": { | ||
"startTime": "2020-03-20T21:36:18Z", | ||
"expirationTime": "2020-03-21T17:36:18Z", | ||
"slaMinutes": 240 | ||
}, | ||
"supportEngineer": { | ||
"emailAddress": null | ||
}, | ||
"supportPlanType": "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" | ||
} | ||
} | ||
} | ||
} | ||
} |
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