1package managementgroupsapi
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/preview/resources/mgmt/2017-11-01-preview/managementgroups"
23	"github.com/Azure/go-autorest/autorest"
24)
25
26// ClientAPI contains the set of methods on the Client type.
27type ClientAPI interface {
28	CreateOrUpdate(ctx context.Context, groupID string, createManagementGroupRequest managementgroups.CreateManagementGroupRequest, cacheControl string) (result managementgroups.ManagementGroup, err error)
29	Delete(ctx context.Context, groupID string, cacheControl string) (result autorest.Response, err error)
30	Get(ctx context.Context, groupID string, expand string, recurse *bool, cacheControl string) (result managementgroups.ManagementGroup, err error)
31	List(ctx context.Context, cacheControl string, skiptoken string) (result managementgroups.ListResultPage, err error)
32	Update(ctx context.Context, groupID string, createManagementGroupRequest managementgroups.CreateManagementGroupRequest, cacheControl string) (result managementgroups.ManagementGroup, err error)
33}
34
35var _ ClientAPI = (*managementgroups.Client)(nil)
36
37// SubscriptionsClientAPI contains the set of methods on the SubscriptionsClient type.
38type SubscriptionsClientAPI interface {
39	Create(ctx context.Context, groupID string, subscriptionID string, cacheControl string) (result autorest.Response, err error)
40	Delete(ctx context.Context, groupID string, subscriptionID string, cacheControl string) (result autorest.Response, err error)
41}
42
43var _ SubscriptionsClientAPI = (*managementgroups.SubscriptionsClient)(nil)
44
45// OperationsClientAPI contains the set of methods on the OperationsClient type.
46type OperationsClientAPI interface {
47	List(ctx context.Context) (result managementgroups.OperationListResultPage, err error)
48}
49
50var _ OperationsClientAPI = (*managementgroups.OperationsClient)(nil)
51