...

Source file src/github.com/Azure/azure-sdk-for-go/services/preview/cognitiveservices/v1.0/anomalydetector/anomalydetectorapi/interfaces.go

Documentation: github.com/Azure/azure-sdk-for-go/services/preview/cognitiveservices/v1.0/anomalydetector/anomalydetectorapi

     1  package anomalydetectorapi
     2  
     3  // Copyright (c) Microsoft Corporation. All rights reserved.
     4  // Licensed under the MIT License. See License.txt in the project root for license information.
     5  //
     6  // Code generated by Microsoft (R) AutoRest Code Generator.
     7  // Changes may cause incorrect behavior and will be lost if the code is regenerated.
     8  
     9  import (
    10  	"context"
    11  	"github.com/Azure/azure-sdk-for-go/services/preview/cognitiveservices/v1.0/anomalydetector"
    12  )
    13  
    14  // BaseClientAPI contains the set of methods on the BaseClient type.
    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