Skip to content

Latest commit

 

History

History
146 lines (107 loc) · 5.44 KB

File metadata and controls

146 lines (107 loc) · 5.44 KB
title Create azureDataLakeConnector
description Create a new azureDataLakeConnector object.
author mlafleur
ms.localizationpriority medium
ms.subservice industry-data-etl
doc_type apiPageType
ms.date 06/05/2024

Create azureDataLakeConnector

Namespace: microsoft.graph.industryData

[!INCLUDE beta-disclaimer]

Create a new azureDataLakeConnector object.

[!INCLUDE national-cloud-support]

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

HTTP request

POST /external/industryData/dataConnectors

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type application/json. Required.

Request body

In the request body, supply a JSON representation of the azureDataLakeConnector object.

You can specify the following properties when you create an azureDataLakeConnector.

Property Type Description
displayName String The name of the data connector. Required.
fileFormat microsoft.graph.industryData.fileFormatReferenceValue A reference to a file format entry in the referenceDefinition collection. Optional.

Response

If successful, this method returns a 201 Created response code and a microsoft.graph.industryData.azureDataLakeConnector object in the response body.

Examples

Request

The following example shows a request.

POST https://graph.microsoft.com/beta/external/industryData/dataConnectors
Content-Type: application/json
Content-length: 104

{
    "@odata.type": "#microsoft.graph.industryData.azureDataLakeConnector",
    "displayName": "CSV connector",
    "sourceSystem@odata.bind": "https://graph.microsoft.com/beta/external/industryData/sourceSystems('aa050107-5784-4a8e-1876-08daddab21bc')",
    "fileFormat": {
      "@odata.type": "microsoft.graph.industryData.fileFormatReferenceValue",
      "code": "schoolDataSyncV1"
    }
}

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 201 Created
Content-Type: application/json

{
  "@odata.type": "#microsoft.graph.industryData.azureDataLakeConnector",
  "displayName": "CSV connector",
  "id": "51dca0a0-85f6-4478-f526-08daddab2271",
  "fileFormat": {
    "@odata.type": "microsoft.graph.industryData.fileFormatReferenceValue",
    "code": "schoolDataSyncV1"
  }
}