-
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.
Add location based deleted Web Apps (#5905)
* Add location based deleted Web Apps * Add examples * Fix examples * Remove additional properties. * Fix typo in parameters * Remove more additional properties * Remove additional id property
- Loading branch information
1 parent
3250da9
commit 3d3406f
Showing
3 changed files
with
154 additions
and
0 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
27 changes: 27 additions & 0 deletions
27
...resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetDeletedWebAppByLocation.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,27 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
"location": "West US 2", | ||
"deletedSiteId": "9", | ||
"api-version": "2018-02-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"name": "wussite6", | ||
"type": "Microsoft.Web/locations/deletedSites", | ||
"properties": { | ||
"deletedSiteId": 9, | ||
"deletedTimestamp": "2019-05-09T22:29:05.1337007", | ||
"subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
"resourceGroup": "rg1", | ||
"deletedSiteName": "wussite6", | ||
"slot": "Production", | ||
"kind": "app", | ||
"geoRegionName": "West US 2" | ||
} | ||
} | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
...source-manager/Microsoft.Web/stable/2018-02-01/examples/ListDeletedWebAppsByLocation.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,31 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
"location": "West US 2", | ||
"api-version": "2018-02-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "wussite6", | ||
"type": "Microsoft.Web/locations/deletedSites", | ||
"properties": { | ||
"deletedSiteId": 9, | ||
"deletedTimestamp": "2019-05-09T22:29:05.1337007", | ||
"subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
"resourceGroup": "rg1", | ||
"deletedSiteName": "wussite6", | ||
"slot": "Production", | ||
"kind": "app", | ||
"geoRegionName": "West US 2" | ||
} | ||
} | ||
], | ||
"nextLink": null | ||
} | ||
} | ||
} | ||
} |