1// +build go1.9
2
3// Copyright 2018 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 subscriptions
21
22import original "github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2016-06-01/subscriptions"
23
24const (
25	DefaultBaseURI = original.DefaultBaseURI
26)
27
28type BaseClient = original.BaseClient
29type SpendingLimit = original.SpendingLimit
30
31const (
32	CurrentPeriodOff SpendingLimit = original.CurrentPeriodOff
33	Off              SpendingLimit = original.Off
34	On               SpendingLimit = original.On
35)
36
37type State = original.State
38
39const (
40	Deleted  State = original.Deleted
41	Disabled State = original.Disabled
42	Enabled  State = original.Enabled
43	PastDue  State = original.PastDue
44	Warned   State = original.Warned
45)
46
47type ListResult = original.ListResult
48type ListResultIterator = original.ListResultIterator
49type ListResultPage = original.ListResultPage
50type Location = original.Location
51type LocationListResult = original.LocationListResult
52type Policies = original.Policies
53type Subscription = original.Subscription
54type TenantIDDescription = original.TenantIDDescription
55type TenantListResult = original.TenantListResult
56type TenantListResultIterator = original.TenantListResultIterator
57type TenantListResultPage = original.TenantListResultPage
58type Client = original.Client
59type TenantsClient = original.TenantsClient
60
61func New() BaseClient {
62	return original.New()
63}
64func NewWithBaseURI(baseURI string) BaseClient {
65	return original.NewWithBaseURI(baseURI)
66}
67func PossibleSpendingLimitValues() []SpendingLimit {
68	return original.PossibleSpendingLimitValues()
69}
70func PossibleStateValues() []State {
71	return original.PossibleStateValues()
72}
73func NewClient() Client {
74	return original.NewClient()
75}
76func NewClientWithBaseURI(baseURI string) Client {
77	return original.NewClientWithBaseURI(baseURI)
78}
79func NewTenantsClient() TenantsClient {
80	return original.NewTenantsClient()
81}
82func NewTenantsClientWithBaseURI(baseURI string) TenantsClient {
83	return original.NewTenantsClientWithBaseURI(baseURI)
84}
85func UserAgent() string {
86	return original.UserAgent() + " profiles/preview"
87}
88func Version() string {
89	return original.Version()
90}
91