Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,39 @@
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AnalysisServices/servers/{serverName}/dissociateGateway": {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how will calling this API change the payload of the GET /servers/{serverName} existing API that you have? THat has a gatewayResourceId which is associated with the server. What does disassociating that gateway mean?

"post": {
"description": "Dissociates a Unified Gateway associated with the server.",
"tags": [ "Servers" ],
"operationId": "Servers_DissociateGateway",
"parameters": [
{
"$ref": "#/parameters/ResourceGroupNameParameter"
},
{
"name": "serverName",
"in": "path",
"required": true,
"type": "string",
"pattern": "^[a-z][a-z0-9]*$",
"minLength": 3,
"maxLength": 63,
"description": "The name of the Analysis Services server. It must be at least 3 characters in length, and no more than 63."
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "OK."
}
}
}
}
},
"definitions": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,42 @@
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AnalysisServices/servers/{serverName}/dissociateGateway": {
"post": {
"description": "Dissociates a Unified Gateway associated with the server.",
"x-ms-examples": {
"Get details of a server": { "$ref": "./examples/dissociateGateway.json" }
},
"tags": [ "Servers" ],
"operationId": "Servers_DissociateGateway",
"parameters": [
{
"$ref": "#/parameters/ResourceGroupNameParameter"
},
{
"name": "serverName",
"in": "path",
"required": true,
"type": "string",
"pattern": "^[a-z][a-z0-9]*$",
"minLength": 3,
"maxLength": 63,
"description": "The name of the Analysis Services server. It must be at least 3 characters in length, and no more than 63."
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "OK."
}
}
}
},
"/providers/Microsoft.AnalysisServices/operations": {
"get": {
"tags": [
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"parameters": {
"subscriptionId": "613192d7-503f-477a-9cfe-4efc3ee2bd60",
"resourceGroupName": "TestRG",
"serverName": "azsdktest",
"api-version": "2017-08-01-beta"
},
"responses": {
"200": {
"headers": {}
}
}
}