public IoTHubMonitor(ITableStorageClient tableStorageClient, IBlobStorageClient blobStorageClient, IAzureManagementClient azureManagementClient, IAppConfigurationClient appConfigurationClient, AppConfig config)
 {
     this.tableStorageClient     = tableStorageClient;
     this.blobStorageClient      = blobStorageClient;
     this.azureManagementClient  = azureManagementClient;
     this.appConfigurationClient = appConfigurationClient;
     this.config = config;
 }
 public TenantOperations(ITableStorageClient tableStorageClient, IBlobStorageClient blobStorageClient, IAzureManagementClient azureManagementClient, IAppConfigurationClient appConfigurationClient, AppConfig config)
 {
     this.tableStorageClient     = tableStorageClient;
     this.blobStorageClient      = blobStorageClient;
     this.azureManagementClient  = azureManagementClient;
     this.appConfigurationClient = appConfigurationClient;
     this.config = config;
 }
Beispiel #3
0
        protected AzureManagementRequestBase(IAzureManagementClient client)
        {
            if (client == null)
            {
                throw new ArgumentNullException("client");
            }

            this.client = client;
        }
 public IoTHubMonitor(ITableStorageClient tableStorageClient, IBlobStorageClient blobStorageClient, IAzureManagementClient azureManagementClient, IAppConfigurationClient appConfigurationClient, AppConfig config, IKustoTableManagementClient kustoTableManagementClient, IDeviceGroupsConfigClient deviceGroupsConfigClient)
 {
     this.tableStorageClient     = tableStorageClient;
     this.blobStorageClient      = blobStorageClient;
     this.azureManagementClient  = azureManagementClient;
     this.appConfigurationClient = appConfigurationClient;
     this.config = config;
     this.kustoTableManagementClient = kustoTableManagementClient;
     this.deviceGroupClient          = deviceGroupsConfigClient;
 }
 public TenantOperations(ITableStorageClient tableStorageClient, IBlobStorageClient blobStorageClient, IAzureManagementClient azureManagementClient, IAppConfigurationClient appConfigurationClient, AppConfig config, IGrafanaClient grafanaClient, IKustoTableManagementClient kustoTableManagementClient, IIdentityGatewayClient identityGatewayClient, IKeyVaultClient keyVaultClient)
 {
     this.tableStorageClient     = tableStorageClient;
     this.blobStorageClient      = blobStorageClient;
     this.azureManagementClient  = azureManagementClient;
     this.appConfigurationClient = appConfigurationClient;
     this.config        = config;
     this.grafanaClient = grafanaClient;
     this.kustoTableManagementClient = kustoTableManagementClient;
     this.identityGatewayClient      = identityGatewayClient;
     this.keyVaultClient             = keyVaultClient;
 }
 public TenantContainer(
     ILogger <TenantContainer> logger,
     IRunbookHelper runbookHelper,
     IStorageClient cosmosClient,
     ITableStorageClient tableStorageClient,
     IIdentityGatewayClient identityGatewayClient,
     IDeviceGroupsConfigClient deviceGroupConfigClient,
     IAppConfigurationClient appConfigHelper,
     IBlobStorageClient blobStorageClient,
     AppConfig config,
     IAzureManagementClient azureManagementClient)
 {
     this.logger                = logger;
     this.runbookHelper         = runbookHelper;
     this.cosmosClient          = cosmosClient;
     this.tableStorageClient    = tableStorageClient;
     this.identityGatewayClient = identityGatewayClient;
     this.deviceGroupClient     = deviceGroupConfigClient;
     this.appConfigClient       = appConfigHelper;
     this.blobStorageClient     = blobStorageClient;
     this.config                = config;
     this.azureManagementClient = azureManagementClient;
 }
Beispiel #7
0
 public GetCloudServicesRequest(IAzureManagementClient client)
     : base(client)
 {
 }
Beispiel #8
0
 public ShutdownRoleRequest(IAzureManagementClient client)
     : base(client)
 {
 }
Beispiel #9
0
 public VirtualMachinesManager(VmManagerConfiguration configuration, IAzureManagementClient client)
 {
     this.configuration = configuration;
     this.client        = client;
 }
Beispiel #10
0
 public GetProductionDeploymentRequest(IAzureManagementClient client)
     : base(client)
 {
 }
Beispiel #11
0
 public GetOperationStatusRequest(IAzureManagementClient client) : base(client)
 {
 }
 public StartRoleRequest(IAzureManagementClient client)
     : base(client)
 {
 }