Namespace: microsoft.graph.industryData
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Create a new azureDataLakeConnector object.
This API is available in the following national cloud deployments.
Global service |
US Government L4 |
US Government L5 (DOD) |
China operated by 21Vianet |
✅ |
❌ |
❌ |
❌ |
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.
Permission type |
Least privileged permissions |
Higher privileged permissions |
Delegated (work or school account) |
IndustryData-DataConnector.ReadWrite.All |
Not available. |
Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
Application |
IndustryData-DataConnector.ReadWrite.All |
Not available. |
HTTP request
POST /external/industryData/dataConnectors
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.
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"
}
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models.IndustryData;
var requestBody = new AzureDataLakeConnector
{
OdataType = "#microsoft.graph.industryData.azureDataLakeConnector",
DisplayName = "CSV connector",
FileFormat = new FileFormatReferenceValue
{
OdataType = "microsoft.graph.industryData.fileFormatReferenceValue",
Code = "schoolDataSyncV1",
},
AdditionalData = new Dictionary<string, object>
{
{
"sourceSystem@odata.bind" , "https://graph.microsoft.com/beta/external/industryData/sourceSystems('aa050107-5784-4a8e-1876-08daddab21bc')"
},
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.External.IndustryData.DataConnectors.PostAsync(requestBody);
mgc-beta external industry-data data-connectors create --body '{\
"@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"\
}\
}\
'
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphmodelsindustrydata "github.com/microsoftgraph/msgraph-beta-sdk-go/models/industrydata"
//other-imports
)
requestBody := graphmodelsindustrydata.NewIndustryDataConnector()
displayName := "CSV connector"
requestBody.SetDisplayName(&displayName)
fileFormat := graphmodelsindustrydata.NewFileFormatReferenceValue()
code := "schoolDataSyncV1"
fileFormat.SetCode(&code)
requestBody.SetFileFormat(fileFormat)
additionalData := map[string]interface{}{
"sourceSystem@odata.bind" : "https://graph.microsoft.com/beta/external/industryData/sourceSystems('aa050107-5784-4a8e-1876-08daddab21bc')",
}
requestBody.SetAdditionalData(additionalData)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
dataConnectors, err := graphClient.External().IndustryData().DataConnectors().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.beta.models.industrydata.AzureDataLakeConnector industryDataConnector = new com.microsoft.graph.beta.models.industrydata.AzureDataLakeConnector();
industryDataConnector.setOdataType("#microsoft.graph.industryData.azureDataLakeConnector");
industryDataConnector.setDisplayName("CSV connector");
com.microsoft.graph.beta.models.industrydata.FileFormatReferenceValue fileFormat = new com.microsoft.graph.beta.models.industrydata.FileFormatReferenceValue();
fileFormat.setOdataType("microsoft.graph.industryData.fileFormatReferenceValue");
fileFormat.setCode("schoolDataSyncV1");
industryDataConnector.setFileFormat(fileFormat);
HashMap<String, Object> additionalData = new HashMap<String, Object>();
additionalData.put("sourceSystem@odata.bind", "https://graph.microsoft.com/beta/external/industryData/sourceSystems('aa050107-5784-4a8e-1876-08daddab21bc')");
industryDataConnector.setAdditionalData(additionalData);
com.microsoft.graph.models.industrydata.IndustryDataConnector result = graphClient.external().industryData().dataConnectors().post(industryDataConnector);
const options = {
authProvider,
};
const client = Client.init(options);
const industryDataConnector = {
'@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'
}
};
await client.api('/external/industryData/dataConnectors')
.version('beta')
.post(industryDataConnector);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\IndustryData\AzureDataLakeConnector;
use Microsoft\Graph\Beta\Generated\Models\IndustryData\FileFormatReferenceValue;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new AzureDataLakeConnector();
$requestBody->setOdataType('#microsoft.graph.industryData.azureDataLakeConnector');
$requestBody->setDisplayName('CSV connector');
$fileFormat = new FileFormatReferenceValue();
$fileFormat->setOdataType('microsoft.graph.industryData.fileFormatReferenceValue');
$fileFormat->setCode('schoolDataSyncV1');
$requestBody->setFileFormat($fileFormat);
$additionalData = [
'sourceSystem@odata.bind' => 'https://graph.microsoft.com/beta/external/industryData/sourceSystems(\'aa050107-5784-4a8e-1876-08daddab21bc\')',
];
$requestBody->setAdditionalData($additionalData);
$result = $graphServiceClient->external()->industryData()->dataConnectors()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.Search
$params = @{
"@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"
}
}
New-MgBetaExternalIndustryDataConnector -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.industry_data.azure_data_lake_connector import AzureDataLakeConnector
from msgraph_beta.generated.models.industry_data.file_format_reference_value import FileFormatReferenceValue
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = AzureDataLakeConnector(
odata_type = "#microsoft.graph.industryData.azureDataLakeConnector",
display_name = "CSV connector",
file_format = FileFormatReferenceValue(
odata_type = "microsoft.graph.industryData.fileFormatReferenceValue",
code = "schoolDataSyncV1",
),
additional_data = {
"source_system@odata_bind" : "https://graph.microsoft.com/beta/external/industryData/sourceSystems('aa050107-5784-4a8e-1876-08daddab21bc')",
}
)
result = await graph_client.external.industry_data.data_connectors.post(request_body)
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"
}
}