Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@

package billingapi

import original "github.com/Azure/azure-sdk-for-go/services/preview/billing/mgmt/2018-03-01-preview/billing/billingapi"
import original "github.com/Azure/azure-sdk-for-go/services/preview/billing/mgmt/2018-11-01-preview/billing/billingapi"

type EnrollmentAccountsClientAPI = original.EnrollmentAccountsClientAPI
type InvoicesClientAPI = original.InvoicesClientAPI
type OperationsClientAPI = original.OperationsClientAPI
type PeriodsClientAPI = original.PeriodsClientAPI
type ProductsClientAPI = original.ProductsClientAPI
10 changes: 9 additions & 1 deletion profiles/preview/preview/billing/mgmt/billing/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package billing
import (
"context"

original "github.com/Azure/azure-sdk-for-go/services/preview/billing/mgmt/2018-03-01-preview/billing"
original "github.com/Azure/azure-sdk-for-go/services/preview/billing/mgmt/2018-11-01-preview/billing"
)

const (
Expand Down Expand Up @@ -57,7 +57,9 @@ type PeriodsClient = original.PeriodsClient
type PeriodsListResult = original.PeriodsListResult
type PeriodsListResultIterator = original.PeriodsListResultIterator
type PeriodsListResultPage = original.PeriodsListResultPage
type ProductsClient = original.ProductsClient
type Resource = original.Resource
type TransferProductProperties = original.TransferProductProperties

func New(subscriptionID string) BaseClient {
return original.New(subscriptionID)
Expand Down Expand Up @@ -110,6 +112,12 @@ func NewPeriodsListResultIterator(page PeriodsListResultPage) PeriodsListResultI
func NewPeriodsListResultPage(getNextPage func(context.Context, PeriodsListResult) (PeriodsListResult, error)) PeriodsListResultPage {
return original.NewPeriodsListResultPage(getNextPage)
}
func NewProductsClient(subscriptionID string) ProductsClient {
return original.NewProductsClient(subscriptionID)
}
func NewProductsClientWithBaseURI(baseURI string, subscriptionID string) ProductsClient {
return original.NewProductsClientWithBaseURI(baseURI, subscriptionID)
}
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
return original.NewWithBaseURI(baseURI, subscriptionID)
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

51 changes: 51 additions & 0 deletions services/preview/billing/mgmt/2018-11-01-preview/billing/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading