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
@@ -0,0 +1,33 @@
{
"parameters": {
"subscriptionId": "cde3513f-fbc4-414d-abc2-c4b2ad011bd8",
"resourceGroupName": "kedodd2021synrg1",
"workspaceName": "kedoddsynprodws",
"trustedServiceByPassConfiguration": {
"properties": {
"trustedServiceBypassConfigurationInfo": {
"trustedServiceBypassEnabled": false
}
}
},
"api-version": "2021-06-01-preview"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/cde3513f-fbc4-414d-abc2-c4b2ad011bd8/resourceGroups/kedodd2021synrg1/providers/Microsoft.Synapse/workspaces/kedoddsynprodws/trustedServiceByPassConfiguration/default",
"type": "Microsoft.Synapse/workspaces/trustedServiceByPassConfiguration/default",
"name": "default",
"properties": {
"trustedServiceBypassConfigurationInfo": {
"trustedServiceBypassEnabled": false
}
}
}
]
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -878,6 +878,63 @@
"nextLinkName": null
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Synapse/workspaces/{workspaceName}/trustedServiceByPassConfiguration/default": {
"put": {
"operationId": "WorkspaceTrustedServiceByPassConfiguration_CreateOrUpdate",
"summary": "Create or update Trusted Service By Pass Configuration",
"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../../../../common/v1/types.json#/parameters/WorkspaceNameParameter"
},
{
"schema": {
"type": "object",
"items": {
"$ref": "#/definitions/TrustedServiceByPassConfiguration"
}
},
"name": "trustedServiceByPassConfiguration",
"in": "body",
"description": "Trusted Service By Pass Configuration",
"required": true
}
],
"responses": {
"200": {
"schema": {
"type": "object",
"items": {
"$ref": "#/definitions/TrustedServiceByPassConfiguration"
}
},
"description": "OK"
},
"default": {
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
},
"description": "Error"
}
},
"produces": [
"application/json"
],
"x-ms-examples": {
"Create or update trusted service by pass configuration": {
"$ref": "./examples/CreateOrUpdateTrustedServiceByPassConfiguration.json"
}
}
}
}
},
"definitions": {
Expand Down Expand Up @@ -1512,6 +1569,36 @@
"value"
],
"description": "The response to a list restorable dropped Sql pools request"
},
"TrustedServiceByPassConfiguration": {
"type": "object",
"title": "Trusted Service By Pass Configuration properties",
"description": "Trusted Service By Pass Configuration",
"allOf": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ProxyResource"
}
],
"properties": {
"properties": {
"title": "Trusted Service By Pass Configuration properties",
"description": "Trusted Service By Pass Configuration properties",
"type": "object",
"properties": {
"trustedServiceBypassConfigurationInfo": {
"description": "Trusted Service By pass Configuration Info",
"type": "object",
"properties": {
"trustedServiceBypassEnabled": {
"description": "Trusted Service By pass Enabled",
"type": "boolean"
}
}
}
},
"x-ms-client-flatten": true
}
}
}
}
}