Example #1
0
 public NewModel(IYHttpRequestHandler client, EnginesController enginesController,
                 DataFactoriesController dataFactoriesController, AzureSqlDatabaseController azureSqlDatabaseController)
 {
     this.client                     = client;
     this.enginesController          = enginesController;
     this.dataFactoriesController    = dataFactoriesController;
     this.azureSqlDatabaseController = azureSqlDatabaseController;
 }
Example #2
0
 public AuthCommand(IYAuthProvider authProvider,
                    IYHttpRequestHandler client,
                    IOptions <YMicrosoftIdentityOptions> azureAdOptions)
 {
     AzureAdOptions = azureAdOptions.Value;
     AuthProvider   = authProvider;
     Client         = client;
 }
Example #3
0
 public KeyVaultsController(IYResourceClient resourceClient,
                            IYHttpRequestHandler client,
                            IYEngineProvider engineProvider, IOptions <YMicrosoftIdentityOptions> azureAdOptions)
 {
     this.resourceClient = resourceClient;
     this.client         = client;
     this.engineProvider = engineProvider;
     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;
 }
Example #5
0
 public IndexModel(IYAuthProvider authProvider, IHttpClientFactory httpClientFactory,
                   IConfiguration configuration,
                   IYHttpRequestHandler client, IYResourceClient resourceClient, IOptions <YMicrosoftIdentityOptions> azureAdOptions)
 {
     this.authProvider      = authProvider;
     this.httpClientFactory = httpClientFactory;
     this.configuration     = configuration;
     this.client            = client;
     this.resourceClient    = resourceClient;
     this.httpClient        = this.httpClientFactory.CreateClient();
     this.options           = azureAdOptions.Value;
 }
Example #6
0
 public PurviewController(IYAuthProvider authProvider,
                          IOptions <YMicrosoftIdentityOptions> azureAdOptions,
                          IYHttpRequestHandler client,
                          IOptions <YPurviewOptions> hostOptions,
                          IYEngineProvider engineProvider,
                          DataFactoriesController dataFactoriesController)
 {
     this.authProvider      = authProvider;
     this.options           = azureAdOptions.Value;
     this.client            = client;
     this.hostOptions       = hostOptions.Value;
     this.engineProvider    = engineProvider;
     this.factoryController = dataFactoriesController;
 }
 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;
 }
Example #8
0
 public StoragesController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Example #9
0
 public DeployModel(IYHttpRequestHandler client, EnginesController enginesController)
 {
     this.client            = client;
     this.enginesController = enginesController;
 }
 public DataFactoriesController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Example #11
0
 public EngineShowCommand(IYAuthProvider authProvider,
                          IYHttpRequestHandler httpRequestHandler,
                          IOptions <YMicrosoftIdentityOptions> identityOptions) : base(authProvider, httpRequestHandler, identityOptions)
 {
 }
Example #12
0
 public EnginesController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Example #13
0
 public EditModel(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Example #14
0
 public DatabricksController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Example #15
0
 public SettingsController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Example #16
0
 public DetailsModel(IYHttpRequestHandler client, DataFactoriesController dataFactoriesController)
 {
     this.client = client;
     this.dataFactoriesController = dataFactoriesController;
 }
Example #17
0
 public EngineRequestDetailsModel(IYHttpRequestHandler client)
 {
     this.client = client;
 }
 public AzureSqlDatabaseController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Example #19
0
 public IndexModel(IYHttpRequestHandler client, EnginesController enginesController, DataFactoriesController dataFactoriesController)
 {
     this.client                  = client;
     this.enginesController       = enginesController;
     this.dataFactoriesController = dataFactoriesController;
 }
Example #20
0
 public ResourceGroupsController(IYHttpRequestHandler client, IOptions <YMicrosoftIdentityOptions> options)
 {
     this.client  = client;
     this.options = options.Value;
 }
 public NotificationsController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Example #22
0
 public YResourceClient(IYAuthProvider authProvider, IYHttpRequestHandler requestHandler, IOptions <YMicrosoftIdentityOptions> options)
 {
     this.authProvider   = authProvider;
     this.requestHandler = requestHandler;
     this.options        = options.Value;
 }
Example #23
0
 public IndexModel(IYHttpRequestHandler client)
 {
     this.client = client;
 }