...
1 package anomalydetectorapi
2
3
4
5
6
7
8
9 import (
10 "context"
11 "github.com/Azure/azure-sdk-for-go/services/preview/cognitiveservices/v1.0/anomalydetector"
12 )
13
14
15 type BaseClientAPI interface {
16 DetectChangePoint(ctx context.Context, body anomalydetector.ChangePointDetectRequest) (result anomalydetector.ChangePointDetectResponse, err error)
17 DetectEntireSeries(ctx context.Context, body anomalydetector.DetectRequest) (result anomalydetector.EntireDetectResponse, err error)
18 DetectLastPoint(ctx context.Context, body anomalydetector.DetectRequest) (result anomalydetector.LastDetectResponse, err error)
19 }
20
21 var _ BaseClientAPI = (*anomalydetector.BaseClient)(nil)
22
View as plain text