openapi: 3.1.0 info: title: Azure Synapse Analytics - Access Control AzureADOnlyAuthentications PrivateEndpointConnections API description: Manage role assignments, role definitions, and access control for Synapse workspace resources. Supports Synapse role-based access control for fine-grained permissions. version: '2020-12-01' contact: name: Microsoft Azure Support url: https://azure.microsoft.com/en-us/support/ license: name: Microsoft url: https://azure.microsoft.com/en-us/support/legal/ servers: - url: https://{workspaceName}.dev.azuresynapse.net description: Synapse Data Plane variables: workspaceName: description: The workspace name. default: myworkspace security: - azure_auth: - user_impersonation tags: - name: PrivateEndpointConnections paths: ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Synapse/workspaces/{workspaceName}/privateEndpointConnections : get: operationId: PrivateEndpointConnections_List summary: Azure Synapse Analytics List private endpoint connections description: Lists private endpoint connections in a workspace. tags: - PrivateEndpointConnections parameters: - $ref: '#/components/parameters/ApiVersionParameter' - $ref: '#/components/parameters/SubscriptionIdParameter' - $ref: '#/components/parameters/ResourceGroupNameParameter' - $ref: '#/components/parameters/WorkspaceNameParameter' responses: '200': description: Successfully retrieved the list. content: application/json: schema: $ref: '#/components/schemas/PrivateEndpointConnectionList' default: description: Error response. content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Synapse/workspaces/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName} : get: operationId: PrivateEndpointConnections_Get summary: Azure Synapse Analytics Get a private endpoint connection description: Gets a private endpoint connection. tags: - PrivateEndpointConnections parameters: - $ref: '#/components/parameters/ApiVersionParameter' - $ref: '#/components/parameters/SubscriptionIdParameter' - $ref: '#/components/parameters/ResourceGroupNameParameter' - $ref: '#/components/parameters/WorkspaceNameParameter' - name: privateEndpointConnectionName in: path required: true description: The name of the private endpoint connection. schema: type: string responses: '200': description: Successfully retrieved. content: application/json: schema: $ref: '#/components/schemas/PrivateEndpointConnection' default: description: Error response. content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' put: operationId: PrivateEndpointConnections_Create summary: Azure Synapse Analytics Approve or reject a private endpoint connection description: Approve or reject a private endpoint connection. tags: - PrivateEndpointConnections parameters: - $ref: '#/components/parameters/ApiVersionParameter' - $ref: '#/components/parameters/SubscriptionIdParameter' - $ref: '#/components/parameters/ResourceGroupNameParameter' - $ref: '#/components/parameters/WorkspaceNameParameter' - name: privateEndpointConnectionName in: path required: true schema: type: string requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/PrivateEndpointConnection' responses: '200': description: Successfully updated. content: application/json: schema: $ref: '#/components/schemas/PrivateEndpointConnection' '201': description: Successfully created. content: application/json: schema: $ref: '#/components/schemas/PrivateEndpointConnection' default: description: Error response. content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' delete: operationId: PrivateEndpointConnections_Delete summary: Azure Synapse Analytics Delete a private endpoint connection description: Delete a private endpoint connection. tags: - PrivateEndpointConnections parameters: - $ref: '#/components/parameters/ApiVersionParameter' - $ref: '#/components/parameters/SubscriptionIdParameter' - $ref: '#/components/parameters/ResourceGroupNameParameter' - $ref: '#/components/parameters/WorkspaceNameParameter' - name: privateEndpointConnectionName in: path required: true schema: type: string responses: '200': description: Successfully deleted. '202': description: Deletion accepted. '204': description: Not found. default: description: Error response. content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' components: schemas: PrivateEndpointConnection: type: object properties: id: type: string readOnly: true name: type: string readOnly: true type: type: string readOnly: true properties: type: object properties: privateEndpoint: type: object properties: id: type: string readOnly: true privateLinkServiceConnectionState: type: object properties: status: type: string description: The connection state status. enum: - Approved - Pending - Rejected - Disconnected description: type: string actionsRequired: type: string readOnly: true provisioningState: type: string readOnly: true PrivateEndpointConnectionList: type: object properties: value: type: array items: $ref: '#/components/schemas/PrivateEndpointConnection' nextLink: type: string ErrorResponse: type: object properties: error: type: object properties: code: type: string message: type: string parameters: SubscriptionIdParameter: name: subscriptionId in: path required: true schema: type: string ApiVersionParameter: name: api-version in: query required: true schema: type: string default: '2021-06-01' ResourceGroupNameParameter: name: resourceGroupName in: path required: true schema: type: string WorkspaceNameParameter: name: workspaceName in: path required: true schema: type: string securitySchemes: azure_auth: type: oauth2 flows: implicit: authorizationUrl: https://login.microsoftonline.com/common/oauth2/authorize scopes: user_impersonation: impersonate your user account