简体   繁体   中英

Create Azure Data Factory v2 withot AD app registration

是否可以在不使用Azure创建AD应用程序的情况下创建Azure Data Factory v2客户端的任何方法?

Yes. You could do this with SDK or restful API

Data factory service identity is generated as follows:

  1. When creating data factory through Azure portal or PowerShell, service identity will always be created automatically since ADF V2 public preview.
  2. When creating data factory through SDK, service identity will be created only if you specify "Identity = new FactoryIdentity()" in the factory object for creation. See example in .NET quickstart - create data factory.
  3. When creating data factory through REST API, service identity will be created only if you specify "identity" section in request body. See example in REST quickstart - create data factory.

Please reference this doc.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM