1//go:build go1.9
2// +build go1.9
3
4// Copyright (c) Microsoft Corporation. All rights reserved.
5// Licensed under the MIT License. See License.txt in the project root for license information.
6
7// This code was auto-generated by:
8// github.com/Azure/azure-sdk-for-go/tools/profileBuilder
9
10package marketplaceordering
11
12import (
13	"context"
14
15	original "github.com/Azure/azure-sdk-for-go/services/marketplaceordering/mgmt/2015-06-01/marketplaceordering"
16)
17
18const (
19	DefaultBaseURI = original.DefaultBaseURI
20)
21
22type AgreementProperties = original.AgreementProperties
23type AgreementTerms = original.AgreementTerms
24type BaseClient = original.BaseClient
25type ErrorResponse = original.ErrorResponse
26type ErrorResponseError = original.ErrorResponseError
27type ListAgreementTerms = original.ListAgreementTerms
28type MarketplaceAgreementsClient = original.MarketplaceAgreementsClient
29type Operation = original.Operation
30type OperationDisplay = original.OperationDisplay
31type OperationListResult = original.OperationListResult
32type OperationListResultIterator = original.OperationListResultIterator
33type OperationListResultPage = original.OperationListResultPage
34type OperationsClient = original.OperationsClient
35type Resource = original.Resource
36
37func New(subscriptionID string) BaseClient {
38	return original.New(subscriptionID)
39}
40func NewMarketplaceAgreementsClient(subscriptionID string) MarketplaceAgreementsClient {
41	return original.NewMarketplaceAgreementsClient(subscriptionID)
42}
43func NewMarketplaceAgreementsClientWithBaseURI(baseURI string, subscriptionID string) MarketplaceAgreementsClient {
44	return original.NewMarketplaceAgreementsClientWithBaseURI(baseURI, subscriptionID)
45}
46func NewOperationListResultIterator(page OperationListResultPage) OperationListResultIterator {
47	return original.NewOperationListResultIterator(page)
48}
49func NewOperationListResultPage(cur OperationListResult, getNextPage func(context.Context, OperationListResult) (OperationListResult, error)) OperationListResultPage {
50	return original.NewOperationListResultPage(cur, getNextPage)
51}
52func NewOperationsClient(subscriptionID string) OperationsClient {
53	return original.NewOperationsClient(subscriptionID)
54}
55func NewOperationsClientWithBaseURI(baseURI string, subscriptionID string) OperationsClient {
56	return original.NewOperationsClientWithBaseURI(baseURI, subscriptionID)
57}
58func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
59	return original.NewWithBaseURI(baseURI, subscriptionID)
60}
61func UserAgent() string {
62	return original.UserAgent() + " profiles/latest"
63}
64func Version() string {
65	return original.Version()
66}
67