1package azurestackapi
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/azurestack/mgmt/2017-06-01/azurestack"
12	"github.com/Azure/go-autorest/autorest"
13)
14
15// OperationsClientAPI contains the set of methods on the OperationsClient type.
16type OperationsClientAPI interface {
17	List(ctx context.Context) (result azurestack.OperationListPage, err error)
18	ListComplete(ctx context.Context) (result azurestack.OperationListIterator, err error)
19}
20
21var _ OperationsClientAPI = (*azurestack.OperationsClient)(nil)
22
23// CloudManifestFileClientAPI contains the set of methods on the CloudManifestFileClient type.
24type CloudManifestFileClientAPI interface {
25	Get(ctx context.Context, verificationVersion string, versionCreationDate string) (result azurestack.CloudManifestFileResponse, err error)
26	List(ctx context.Context) (result azurestack.CloudManifestFileResponse, err error)
27}
28
29var _ CloudManifestFileClientAPI = (*azurestack.CloudManifestFileClient)(nil)
30
31// ProductsClientAPI contains the set of methods on the ProductsClient type.
32type ProductsClientAPI interface {
33	Get(ctx context.Context, resourceGroup string, registrationName string, productName string) (result azurestack.Product, err error)
34	GetProduct(ctx context.Context, resourceGroup string, registrationName string, productName string, deviceConfiguration *azurestack.DeviceConfiguration) (result azurestack.Product, err error)
35	GetProducts(ctx context.Context, resourceGroup string, registrationName string, deviceConfiguration *azurestack.DeviceConfiguration) (result azurestack.ProductList, err error)
36	List(ctx context.Context, resourceGroup string, registrationName string) (result azurestack.ProductListPage, err error)
37	ListComplete(ctx context.Context, resourceGroup string, registrationName string) (result azurestack.ProductListIterator, err error)
38	ListDetails(ctx context.Context, resourceGroup string, registrationName string, productName string) (result azurestack.ExtendedProduct, err error)
39	UploadLog(ctx context.Context, resourceGroup string, registrationName string, productName string, marketplaceProductLogUpdate *azurestack.MarketplaceProductLogUpdate) (result azurestack.ProductLog, err error)
40}
41
42var _ ProductsClientAPI = (*azurestack.ProductsClient)(nil)
43
44// RegistrationsClientAPI contains the set of methods on the RegistrationsClient type.
45type RegistrationsClientAPI interface {
46	CreateOrUpdate(ctx context.Context, resourceGroup string, registrationName string, tokenParameter azurestack.RegistrationParameter) (result azurestack.Registration, err error)
47	Delete(ctx context.Context, resourceGroup string, registrationName string) (result autorest.Response, err error)
48	Get(ctx context.Context, resourceGroup string, registrationName string) (result azurestack.Registration, err error)
49	GetActivationKey(ctx context.Context, resourceGroup string, registrationName string) (result azurestack.ActivationKeyResult, err error)
50	List(ctx context.Context, resourceGroup string) (result azurestack.RegistrationListPage, err error)
51	ListComplete(ctx context.Context, resourceGroup string) (result azurestack.RegistrationListIterator, err error)
52	Update(ctx context.Context, resourceGroup string, registrationName string, tokenParameter azurestack.RegistrationParameter) (result azurestack.Registration, err error)
53}
54
55var _ RegistrationsClientAPI = (*azurestack.RegistrationsClient)(nil)
56
57// CustomerSubscriptionsClientAPI contains the set of methods on the CustomerSubscriptionsClient type.
58type CustomerSubscriptionsClientAPI interface {
59	Create(ctx context.Context, resourceGroup string, registrationName string, customerSubscriptionName string, customerCreationParameters azurestack.CustomerSubscription) (result azurestack.CustomerSubscription, err error)
60	Delete(ctx context.Context, resourceGroup string, registrationName string, customerSubscriptionName string) (result autorest.Response, err error)
61	Get(ctx context.Context, resourceGroup string, registrationName string, customerSubscriptionName string) (result azurestack.CustomerSubscription, err error)
62	List(ctx context.Context, resourceGroup string, registrationName string) (result azurestack.CustomerSubscriptionListPage, err error)
63	ListComplete(ctx context.Context, resourceGroup string, registrationName string) (result azurestack.CustomerSubscriptionListIterator, err error)
64}
65
66var _ CustomerSubscriptionsClientAPI = (*azurestack.CustomerSubscriptionsClient)(nil)
67