Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR Azure.AI.AnomalyDetector] Fix topContributorCount to be optional with default of 10 #3766

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ public AnomalyDetectorClient(System.Uri endpoint, Azure.AzureKeyCredential crede
public virtual Azure.Response DetectUnivariateChangePoint(Azure.Core.RequestContent content, Azure.RequestContext context = null) { throw null; }
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.AI.AnomalyDetector.UnivariateChangePointDetectionResult>> DetectUnivariateChangePointAsync(Azure.AI.AnomalyDetector.UnivariateChangePointDetectionOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
public virtual System.Threading.Tasks.Task<Azure.Response> DetectUnivariateChangePointAsync(Azure.Core.RequestContent content, Azure.RequestContext context = null) { throw null; }
public virtual Azure.Response<Azure.AI.AnomalyDetector.UnivariateEntireDetectionResult> DetectUnivariateEntireSeries(Azure.AI.AnomalyDetector.UnivariateDetectionOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
public virtual Azure.Response DetectUnivariateEntireSeries(Azure.Core.RequestContent content, Azure.RequestContext context = null) { throw null; }
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.AI.AnomalyDetector.UnivariateEntireDetectionResult>> DetectUnivariateEntireSeriesAsync(Azure.AI.AnomalyDetector.UnivariateDetectionOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
public virtual System.Threading.Tasks.Task<Azure.Response> DetectUnivariateEntireSeriesAsync(Azure.Core.RequestContent content, Azure.RequestContext context = null) { throw null; }
public virtual Azure.Response<Azure.AI.AnomalyDetector.UnivariateLastDetectionResult> DetectUnivariateLastPoint(Azure.AI.AnomalyDetector.UnivariateDetectionOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
public virtual Azure.Response DetectUnivariateLastPoint(Azure.Core.RequestContent content, Azure.RequestContext context = null) { throw null; }
Expand Down Expand Up @@ -230,11 +228,11 @@ public ModelState() { }
}
public partial class MultivariateBatchDetectionOptions
{
public MultivariateBatchDetectionOptions(string dataSource, int topContributorCount, System.DateTimeOffset startTime, System.DateTimeOffset endTime) { }
public MultivariateBatchDetectionOptions(string dataSource, System.DateTimeOffset startTime, System.DateTimeOffset endTime) { }
public string DataSource { get { throw null; } set { } }
public System.DateTimeOffset EndTime { get { throw null; } set { } }
public System.DateTimeOffset StartTime { get { throw null; } set { } }
public int TopContributorCount { get { throw null; } set { } }
public int? TopContributorCount { get { throw null; } set { } }
}
public partial class MultivariateBatchDetectionResultSummary
{
Expand Down Expand Up @@ -343,18 +341,6 @@ public UnivariateDetectionOptions(System.Collections.Generic.IEnumerable<Azure.A
public int? Sensitivity { get { throw null; } set { } }
public System.Collections.Generic.IList<Azure.AI.AnomalyDetector.TimeSeriesPoint> Series { get { throw null; } }
}
public partial class UnivariateEntireDetectionResult
{
internal UnivariateEntireDetectionResult() { }
public System.Collections.Generic.IReadOnlyList<float> ExpectedValues { get { throw null; } }
public System.Collections.Generic.IReadOnlyList<bool> IsAnomaly { get { throw null; } }
public System.Collections.Generic.IReadOnlyList<bool> IsNegativeAnomaly { get { throw null; } }
public System.Collections.Generic.IReadOnlyList<bool> IsPositiveAnomaly { get { throw null; } }
public System.Collections.Generic.IReadOnlyList<float> LowerMargins { get { throw null; } }
public int Period { get { throw null; } }
public System.Collections.Generic.IReadOnlyList<float> Severity { get { throw null; } }
public System.Collections.Generic.IReadOnlyList<float> UpperMargins { get { throw null; } }
}
public partial class UnivariateLastDetectionResult
{
internal UnivariateLastDetectionResult() { }
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading