public DataBricksController(IYResourceClient resourceClient, IYHttpRequestHandler client, IYEngineProvider engineProvider, KeyVaultsController keyVaultsController, IOptions <YMicrosoftIdentityOptions> azureAdOptions) { this.resourceClient = resourceClient; this.client = client; this.engineProvider = engineProvider; this.keyVaultsController = keyVaultsController; this.options = azureAdOptions.Value; }
public AppInsightsController(IYHttpRequestHandler client, IYEngineProvider engineProvider, DataFactoriesController dataFactoriesController, KeyVaultsController keyVaultsController, IOptions <YMicrosoftIdentityOptions> azureAdOptions) { this.client = client; this.engineProvider = engineProvider; this.dataFactoriesController = dataFactoriesController; this.keyVaultsController = keyVaultsController; this.options = azureAdOptions.Value; }
public DataFactoriesController(IYResourceClient resourceClient, IYHttpRequestHandler client, IYEngineProvider engineProvider, IOptions <YMicrosoftIdentityOptions> azureAdOptions, KeyVaultsController keyVaultsController, IYDataSourcesService dataSourcesService, IYAuthProvider authProvider) { this.resourceClient = resourceClient; this.client = client; this.engineProvider = engineProvider; this.keyVaultsController = keyVaultsController; this.dataSourcesService = dataSourcesService; this.authProvider = authProvider; this.options = azureAdOptions.Value; }