1package advisorapi
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
9import (
10	"context"
11	"github.com/Azure/azure-sdk-for-go/services/advisor/mgmt/2017-03-31/advisor"
12	"github.com/Azure/go-autorest/autorest"
13	"github.com/gofrs/uuid"
14)
15
16// RecommendationsClientAPI contains the set of methods on the RecommendationsClient type.
17type RecommendationsClientAPI interface {
18	Generate(ctx context.Context) (result autorest.Response, err error)
19	Get(ctx context.Context, resourceURI string, recommendationID string) (result advisor.ResourceRecommendationBase, err error)
20	GetGenerateStatus(ctx context.Context, operationID uuid.UUID) (result autorest.Response, err error)
21	List(ctx context.Context, filter string, top *int32, skipToken string) (result advisor.ResourceRecommendationBaseListResultPage, err error)
22	ListComplete(ctx context.Context, filter string, top *int32, skipToken string) (result advisor.ResourceRecommendationBaseListResultIterator, err error)
23}
24
25var _ RecommendationsClientAPI = (*advisor.RecommendationsClient)(nil)
26
27// OperationsClientAPI contains the set of methods on the OperationsClient type.
28type OperationsClientAPI interface {
29	List(ctx context.Context) (result advisor.OperationEntityListResultPage, err error)
30	ListComplete(ctx context.Context) (result advisor.OperationEntityListResultIterator, err error)
31}
32
33var _ OperationsClientAPI = (*advisor.OperationsClient)(nil)
34
35// SuppressionsClientAPI contains the set of methods on the SuppressionsClient type.
36type SuppressionsClientAPI interface {
37	Create(ctx context.Context, resourceURI string, recommendationID string, name string, suppressionContract advisor.SuppressionContract) (result advisor.SuppressionContract, err error)
38	Delete(ctx context.Context, resourceURI string, recommendationID string, name string) (result autorest.Response, err error)
39	Get(ctx context.Context, resourceURI string, recommendationID string, name string) (result advisor.SuppressionContract, err error)
40	List(ctx context.Context) (result advisor.ListSuppressionContract, err error)
41}
42
43var _ SuppressionsClientAPI = (*advisor.SuppressionsClient)(nil)
44