1// +build go1.9
2
3// Copyright 2020 Microsoft Corporation
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//
9//     http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
16
17// This code was auto-generated by:
18// github.com/Azure/azure-sdk-for-go/tools/profileBuilder
19
20package marketplaceordering
21
22import (
23	"context"
24
25	original "github.com/Azure/azure-sdk-for-go/services/marketplaceordering/mgmt/2015-06-01/marketplaceordering"
26)
27
28const (
29	DefaultBaseURI = original.DefaultBaseURI
30)
31
32type AgreementProperties = original.AgreementProperties
33type AgreementTerms = original.AgreementTerms
34type BaseClient = original.BaseClient
35type ErrorResponse = original.ErrorResponse
36type ErrorResponseError = original.ErrorResponseError
37type ListAgreementTerms = original.ListAgreementTerms
38type MarketplaceAgreementsClient = original.MarketplaceAgreementsClient
39type Operation = original.Operation
40type OperationDisplay = original.OperationDisplay
41type OperationListResult = original.OperationListResult
42type OperationListResultIterator = original.OperationListResultIterator
43type OperationListResultPage = original.OperationListResultPage
44type OperationsClient = original.OperationsClient
45type Resource = original.Resource
46
47func New(subscriptionID string) BaseClient {
48	return original.New(subscriptionID)
49}
50func NewMarketplaceAgreementsClient(subscriptionID string) MarketplaceAgreementsClient {
51	return original.NewMarketplaceAgreementsClient(subscriptionID)
52}
53func NewMarketplaceAgreementsClientWithBaseURI(baseURI string, subscriptionID string) MarketplaceAgreementsClient {
54	return original.NewMarketplaceAgreementsClientWithBaseURI(baseURI, subscriptionID)
55}
56func NewOperationListResultIterator(page OperationListResultPage) OperationListResultIterator {
57	return original.NewOperationListResultIterator(page)
58}
59func NewOperationListResultPage(getNextPage func(context.Context, OperationListResult) (OperationListResult, error)) OperationListResultPage {
60	return original.NewOperationListResultPage(getNextPage)
61}
62func NewOperationsClient(subscriptionID string) OperationsClient {
63	return original.NewOperationsClient(subscriptionID)
64}
65func NewOperationsClientWithBaseURI(baseURI string, subscriptionID string) OperationsClient {
66	return original.NewOperationsClientWithBaseURI(baseURI, subscriptionID)
67}
68func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
69	return original.NewWithBaseURI(baseURI, subscriptionID)
70}
71func UserAgent() string {
72	return original.UserAgent() + " profiles/preview"
73}
74func Version() string {
75	return original.Version()
76}
77