Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify Workbook Resource Type to include RG and remove unused endpoint #2898

Merged
merged 15 commits into from
Apr 20, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Fixed undefiend parameter issue with Delete verb.
  • Loading branch information
ericc1103 committed Mar 29, 2018
commit 4ba66aa10ab02dd9018381b7b3e7210174b60dc1
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"parameters": {
"api-version": "2015-05-01",
"resourceId": "Azure resource id",
"category": "workbook",
"location": "west us"
},
"responses": {
"200": {
},
"204": {
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -371,14 +371,11 @@
}
},
"delete": {
"description": "Delete a workbook.",
"description": "Delete a link between a source resource and workbook resource.",
"operationId": "Workbooks_DeleteLink",
"parameters": [
{
"$ref": "#/parameters/WorkbookResourceNameParameter"
},
{
"$ref": "#/parameters/SourceIdParameter"
"$ref": "#/parameters/ResourceIdParameter"
},
{
"$ref": "#/parameters/CategoryParameter"
Expand All @@ -403,7 +400,7 @@
},
"x-ms-examples": {
"WorkbookList": {
"$ref": "./examples/WorkbookResponseOnly.json"
"$ref": "./examples/WorkbookDeleteLink.json"
}
}
}
Expand Down Expand Up @@ -671,6 +668,14 @@
"description": "Azure Resource Id that will fetch all linked workbooks.",
"x-ms-parameter-location": "method"
},
"ResourceIdParameter": {
"name": "resourceId",
"in": "query",
"required": true,
"type": "string",
"description": "Azure Resource Id or any target workbook resource id.",
"x-ms-parameter-location": "method"
},
"CanFetchWorkbookContentParameter": {
"name": "canFetchContent",
"in": "query",
Expand Down