-
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.RecommendationsService: Add a new custom action (#5363)
* Add a new custom action which returns the current status of the IR account * Add newline in the end of the files * Removed vscode dir * Fixed Json using Prettier * add a missing description to the object * moved description to be first property in the object * Fixed typo
- Loading branch information
Showing
3 changed files
with
140 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
...dationsService/preview/2021-02-01-preview/examples/Accounts_GetStatus_ModelingExists.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,36 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-02-01-preview", | ||
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", | ||
"resourceGroupName": "rg", | ||
"accountName": "sampleAccount" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"scopesStatuses": [ | ||
{ | ||
"scope": "modeling1", | ||
"statuses": [ | ||
{ | ||
"stage": "DataAccess", | ||
"status": "Success", | ||
"time": "2021-08-31T17:15:31.2485861Z" | ||
}, | ||
{ | ||
"stage": "DataValidation", | ||
"status": "Failed", | ||
"time": "2021-08-31T17:16:31.2485861Z" | ||
}, | ||
{ | ||
"stage": "Model", | ||
"status": "Pending", | ||
"time": "2021-08-31T17:17:31.2485861Z" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...tionsService/preview/2021-02-01-preview/examples/Accounts_GetStatus_NoModelingExists.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,13 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-02-01-preview", | ||
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", | ||
"resourceGroupName": "rg", | ||
"accountName": "sampleAccount" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": {} | ||
} | ||
} | ||
} |
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