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

EnableInteractivequery Changes #21936

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
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2656,3 +2656,4 @@ Offersby
Versionswithin
generatesastoken
updation
interactivequery
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"parameters": {
"subscriptionId": "2d03866b-587b-4e1f-a2fe-0a55958c655e",
"resourceGroupName": "drage-felles-prod-rg",
"workspaceName": "felles-prod-synapse-workspace",
"integrationRuntimeName": "SSIS-intergrationRuntime-Drage",
"integrationRuntimeOperationId": "5752dcdf918e4aecb941245ddf6ebb83",
"api-version": "2021-06-01-preview"
},
"responses": {
"200": {
"headers": {
"strict-Transport-Security": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"Date": "Thu, 14 Jun 2018 14:53:22 GMT",
"x-ms-request-id": "19efe790-074f-4241-ae94-0422935d0f46",
"x-ms-correlation-request-id": "19efe790-074f-4241-ae94-0422935d0f46",
"server": "Kestrel;Microsoft-HTTPAPI/2.0"
},
"body": {
"properties": {
"status": "InProgress",
"name": "5752dcdf918e4aecb941245ddf6ebb83",
"properties": null,
"error": null
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1445,6 +1445,64 @@
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Synapse/workspaces/{workspaceName}/integrationRuntimes/{integrationRuntimeName}/enableinteractivequery/operationstatuses/{integrationRuntimeOperationId}": {
"get": {
"operationId": "Get_IntegrationRuntimeEnableInteractivequery",
"summary": "Get integration runtime enable interactivequery operation status",
"description": "Get an integration runtime enable interactivequery operation status",
"tags": [
"IntegrationRuntime"
],
"deprecated": false,
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "../../../../common/v1/types.json#/parameters/WorkspaceNameParameter"
},
{
"$ref": "#/parameters/IntegrationRuntimeNameParameter"
},
{
"name": "integrationRuntimeOperationId",
"in": "path",
"required": true,
"type": "string",
"description": "Integration runtime Operation Id"
}
],
"responses": {
"200": {
"description": "OK.",
"schema": {
"$ref": "#/definitions/IntegrationRuntimeEnableinteractivequery"
}
},
"default": {
"description": "An error response received from GET integration runtime operation.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
}
}
},
"consumes": [],
"produces": [
"application/json"
],
"x-ms-examples": {
"Get integration runtime operation status": {
"$ref": "./examples/EnableInteractivequery_IntegrationRuntimes.json"
}
}
}
}
},
"definitions": {
Expand Down Expand Up @@ -3249,6 +3307,37 @@
"description": "The operation error message."
}
}
},
"IntegrationRuntimeEnableinteractivequery": {
"description": "Integration Runtime Operation Status Properties",
"type": "object",
"properties": {
"status": {
"enum": [
"InProgress",
"Succeeded",
"Failed"
],
"description": "EnableInteractivequery status of Integrationruntimes.",
"type": "string",
"x-ms-enum": {
"name": "Workspace status",
"modelAsString": true
}
},
"name": {
"type": "string",
"description": "The operation name."
},
"properties": {
"type": "object",
"description": "The operation properties."
},
"error": {
"type": "string",
"description": "The operation error message."
}
}
}
},
"parameters": {
Expand Down