1package advisorapi
2
3// Copyright (c) Microsoft and contributors.  All rights reserved.
4//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13//
14// See the License for the specific language governing permissions and
15// limitations under the License.
16//
17// Code generated by Microsoft (R) AutoRest Code Generator.
18// Changes may cause incorrect behavior and will be lost if the code is regenerated.
19
20import (
21	"context"
22	"github.com/Azure/azure-sdk-for-go/services/advisor/mgmt/2017-04-19/advisor"
23	"github.com/Azure/go-autorest/autorest"
24	"github.com/satori/go.uuid"
25)
26
27// RecommendationMetadataClientAPI contains the set of methods on the RecommendationMetadataClient type.
28type RecommendationMetadataClientAPI interface {
29	Get(ctx context.Context, name string) (result advisor.SetObject, err error)
30	List(ctx context.Context) (result advisor.MetadataEntityListResultPage, err error)
31	ListComplete(ctx context.Context) (result advisor.MetadataEntityListResultIterator, err error)
32}
33
34var _ RecommendationMetadataClientAPI = (*advisor.RecommendationMetadataClient)(nil)
35
36// ConfigurationsClientAPI contains the set of methods on the ConfigurationsClient type.
37type ConfigurationsClientAPI interface {
38	CreateInResourceGroup(ctx context.Context, configContract advisor.ConfigData, resourceGroup string) (result advisor.ARMErrorResponseBody, err error)
39	CreateInSubscription(ctx context.Context, configContract advisor.ConfigData) (result advisor.ARMErrorResponseBody, err error)
40	ListByResourceGroup(ctx context.Context, resourceGroup string) (result advisor.ConfigurationListResult, err error)
41	ListBySubscription(ctx context.Context) (result advisor.ConfigurationListResultPage, err error)
42	ListBySubscriptionComplete(ctx context.Context) (result advisor.ConfigurationListResultIterator, err error)
43}
44
45var _ ConfigurationsClientAPI = (*advisor.ConfigurationsClient)(nil)
46
47// RecommendationsClientAPI contains the set of methods on the RecommendationsClient type.
48type RecommendationsClientAPI interface {
49	Generate(ctx context.Context) (result autorest.Response, err error)
50	Get(ctx context.Context, resourceURI string, recommendationID string) (result advisor.ResourceRecommendationBase, err error)
51	GetGenerateStatus(ctx context.Context, operationID uuid.UUID) (result autorest.Response, err error)
52	List(ctx context.Context, filter string, top *int32, skipToken string) (result advisor.ResourceRecommendationBaseListResultPage, err error)
53	ListComplete(ctx context.Context, filter string, top *int32, skipToken string) (result advisor.ResourceRecommendationBaseListResultIterator, err error)
54}
55
56var _ RecommendationsClientAPI = (*advisor.RecommendationsClient)(nil)
57
58// OperationsClientAPI contains the set of methods on the OperationsClient type.
59type OperationsClientAPI interface {
60	List(ctx context.Context) (result advisor.OperationEntityListResultPage, err error)
61	ListComplete(ctx context.Context) (result advisor.OperationEntityListResultIterator, err error)
62}
63
64var _ OperationsClientAPI = (*advisor.OperationsClient)(nil)
65
66// SuppressionsClientAPI contains the set of methods on the SuppressionsClient type.
67type SuppressionsClientAPI interface {
68	Create(ctx context.Context, resourceURI string, recommendationID string, name string, suppressionContract advisor.SuppressionContract) (result advisor.SuppressionContract, err error)
69	Delete(ctx context.Context, resourceURI string, recommendationID string, name string) (result autorest.Response, err error)
70	Get(ctx context.Context, resourceURI string, recommendationID string, name string) (result advisor.SuppressionContract, err error)
71	List(ctx context.Context, top *int32, skipToken string) (result advisor.SuppressionContractListResultPage, err error)
72	ListComplete(ctx context.Context, top *int32, skipToken string) (result advisor.SuppressionContractListResultIterator, err error)
73}
74
75var _ SuppressionsClientAPI = (*advisor.SuppressionsClient)(nil)
76