Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
4b5ef9b
Copy files from stable/2022-12-01
May 24, 2025
fef92b3
Update version to preview/2025-05-01
May 24, 2025
18eb698
Added tag for 2025-05-01 in readme file
May 24, 2025
538eab8
Unsuspend domain swagger update
May 24, 2025
4337c61
Fix Swagger LintDiff failed
May 29, 2025
74e2cc8
Merge branch 'main' into release-self-unsuspend-domainservice-api
marksmwangi May 29, 2025
d4adc34
Fix Swagger LintDiff errors
May 29, 2025
0687728
Merge branch 'release-self-unsuspend-domainservice-api' of https://gi…
May 29, 2025
131ce6c
fix Swagger ModelValidation failed
May 29, 2025
25bba9e
Merge branch 'main' into release-self-unsuspend-domainservice-api
marksmwangi May 30, 2025
0a000b3
update pattern for DomainServiceNameParameter as per AD policy
May 30, 2025
c2d5b1f
Merge branch 'release-self-unsuspend-domainservice-api' of https://gi…
May 30, 2025
c41835b
fix(spellcheck): replace 'unsuspends' and 'unsuspended' with standard…
May 30, 2025
e15eb4e
Conform to recomended spelling. unsuspended to resume
May 30, 2025
89762fd
Merge branch 'main' into release-self-unsuspend-domainservice-api
marksmwangi May 30, 2025
00544d9
Moved suppression into a fenced YAML code block under '## Suppression'
May 30, 2025
3e9d07d
Merge branch 'release-self-unsuspend-domainservice-api' of https://gi…
May 30, 2025
140178e
Added 'from' and 'where' fields to suppression directive in readme.md
May 30, 2025
25e25ea
update PathResourceProviderNamePascalCase suppression to use single-…
May 30, 2025
40e0542
update PathResourceProviderNamePascalCase suppression to use only 'wh…
May 30, 2025
35fa71a
Merge branch 'main' into release-self-unsuspend-domainservice-api
marksmwangi Jun 4, 2025
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
Prev Previous commit
Next Next commit
Unsuspend domain swagger update
  • Loading branch information
markwandatha committed May 24, 2025
commit 538eab85f7d7cfbc8b78a1f7d651a9abd04bbf94
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,67 @@
}
},
"paths": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}/unsuspend": {
"post": {
"tags": [
"DomainServices"
],
"operationId": "DomainServices_Unsuspend",
"summary": "Unsuspend Domain Service",
"description": "Unsuspends a suspended Domain Service resource.",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
},
{
"$ref": "#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/DomainServiceNameParameter"
}
],
"responses": {
"200": {
"description": "Domain service unsuspended successfully.",
"schema": {
"type": "object",
"properties": {
"message": {
"type": "string",
"example": "Domain service unsuspended successfully."
}
}
}
},
"400": {
"description": "Domain service could not be unsuspended (not in a suspended state or not eligible).",
"schema": {
"type": "object",
"properties": {
"message": {
"type": "string",
"example": "Domain service could not be unsuspended (not in a suspended state or not eligible)."
}
}
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "#/definitions/CloudError"
}
}
},
"x-ms-examples": {
"Unsuspend Domain Service": {
"$ref": "./examples/UnsuspendDomainService.json"
}
}
}
},
"/providers/Microsoft.AAD/operations": {
"get": {
"tags": [
Expand Down