Пример #1
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;
 }
Пример #2
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;
 }
Пример #3
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;
 }
Пример #4
0
 public ResourceGroupsController(IYResourceClient client)
 {
     this.client = client;
 }
Пример #5
0
 public StatusController(IYResourceClient client)
 {
     this.client = client;
 }