Ejemplo n.º 1
0
 public NewModel(IYHttpRequestHandler client, EnginesController enginesController,
                 DataFactoriesController dataFactoriesController, AzureSqlDatabaseController azureSqlDatabaseController)
 {
     this.client                     = client;
     this.enginesController          = enginesController;
     this.dataFactoriesController    = dataFactoriesController;
     this.azureSqlDatabaseController = azureSqlDatabaseController;
 }
Ejemplo n.º 2
0
 public AuthCommand(IYAuthProvider authProvider,
                    IYHttpRequestHandler client,
                    IOptions <YMicrosoftIdentityOptions> azureAdOptions)
 {
     AzureAdOptions = azureAdOptions.Value;
     AuthProvider   = authProvider;
     Client         = client;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 4
0
 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 7
0
 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;
 }
Ejemplo n.º 8
0
 public StoragesController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Ejemplo n.º 9
0
 public DeployModel(IYHttpRequestHandler client, EnginesController enginesController)
 {
     this.client            = client;
     this.enginesController = enginesController;
 }
Ejemplo n.º 10
0
 public DataFactoriesController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Ejemplo n.º 11
0
 public EngineShowCommand(IYAuthProvider authProvider,
                          IYHttpRequestHandler httpRequestHandler,
                          IOptions <YMicrosoftIdentityOptions> identityOptions) : base(authProvider, httpRequestHandler, identityOptions)
 {
 }
Ejemplo n.º 12
0
 public EnginesController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Ejemplo n.º 13
0
 public EditModel(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Ejemplo n.º 14
0
 public DatabricksController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Ejemplo n.º 15
0
 public SettingsController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Ejemplo n.º 16
0
 public DetailsModel(IYHttpRequestHandler client, DataFactoriesController dataFactoriesController)
 {
     this.client = client;
     this.dataFactoriesController = dataFactoriesController;
 }
Ejemplo n.º 17
0
 public EngineRequestDetailsModel(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Ejemplo n.º 18
0
 public AzureSqlDatabaseController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Ejemplo n.º 19
0
 public IndexModel(IYHttpRequestHandler client, EnginesController enginesController, DataFactoriesController dataFactoriesController)
 {
     this.client                  = client;
     this.enginesController       = enginesController;
     this.dataFactoriesController = dataFactoriesController;
 }
Ejemplo n.º 20
0
 public ResourceGroupsController(IYHttpRequestHandler client, IOptions <YMicrosoftIdentityOptions> options)
 {
     this.client  = client;
     this.options = options.Value;
 }
Ejemplo n.º 21
0
 public NotificationsController(IYHttpRequestHandler client)
 {
     this.client = client;
 }
Ejemplo n.º 22
0
 public YResourceClient(IYAuthProvider authProvider, IYHttpRequestHandler requestHandler, IOptions <YMicrosoftIdentityOptions> options)
 {
     this.authProvider   = authProvider;
     this.requestHandler = requestHandler;
     this.options        = options.Value;
 }
Ejemplo n.º 23
0
 public IndexModel(IYHttpRequestHandler client)
 {
     this.client = client;
 }