public AzDevopsWaterMark(IKustoClientFactory kustoClientFactory, string organization, string projectId)
     : base(kustoClientFactory)
 {
     this.CreateTableIfNotExists(table, mappingName);
     this.organizationName = organization;
     this.projectId        = projectId;
 }
 public AzDevopsRelease(ReleaseRestAPIProvider releaseRestApiProvider, IKustoClientFactory kustoClientFactory, string organizationName, string projectId)
     : base(kustoClientFactory)
 {
     this.organizationName        = organizationName;
     this.projectId               = projectId;
     this._releaseRestApiProvider = releaseRestApiProvider;
     this.CreateTableIfNotExists(table, mappingName);
 }
 public AzDevopsAgentJobRequests(AgentJobRequestAPIProvider agentsRequestRestApiProvider, IKustoClientFactory kustoClientFactory, string organizationName, string projectId)
     : base(kustoClientFactory)
 {
     this.organizationName = organizationName;
     this.projectId        = projectId;
     this._agentsRequestRestApiProvider = agentsRequestRestApiProvider;
     this.CreateTableIfNotExists(table, mappingName);
 }
Esempio n. 4
0
 protected AzureDataExplorerService(IKustoClientFactory kustoClientFactory)
 {
     this._ingestionClient = kustoClientFactory.GetQueuedIngestClient();
     this._kustoConnectionStringBuilder = kustoClientFactory.KustoConnectionStringBuilder;
 }