Skip to content
Merged
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
9 changes: 9 additions & 0 deletions profiles/preview/consumption/mgmt/consumption/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ package consumption

import original "github.com/Azure/azure-sdk-for-go/services/consumption/mgmt/2018-06-30/consumption"

type AggregatedCostClient = original.AggregatedCostClient
type BalancesClient = original.BalancesClient
type BudgetsClient = original.BudgetsClient

Expand Down Expand Up @@ -113,6 +114,8 @@ type Forecast = original.Forecast
type ForecastProperties = original.ForecastProperties
type ForecastPropertiesConfidenceLevelsItem = original.ForecastPropertiesConfidenceLevelsItem
type ForecastsListResult = original.ForecastsListResult
type ManagementGroupAggregatedCostProperties = original.ManagementGroupAggregatedCostProperties
type ManagementGroupAggregatedCostResult = original.ManagementGroupAggregatedCostResult
type Marketplace = original.Marketplace
type MarketplaceProperties = original.MarketplaceProperties
type MarketplacesListResult = original.MarketplacesListResult
Expand Down Expand Up @@ -162,6 +165,12 @@ type ReservationsSummariesClient = original.ReservationsSummariesClient
type TagsClient = original.TagsClient
type UsageDetailsClient = original.UsageDetailsClient

func NewAggregatedCostClient(subscriptionID string) AggregatedCostClient {
return original.NewAggregatedCostClient(subscriptionID)
}
func NewAggregatedCostClientWithBaseURI(baseURI string, subscriptionID string) AggregatedCostClient {
return original.NewAggregatedCostClientWithBaseURI(baseURI, subscriptionID)
}
func NewBalancesClient(subscriptionID string) BalancesClient {
return original.NewBalancesClient(subscriptionID)
}
Expand Down
173 changes: 173 additions & 0 deletions services/consumption/mgmt/2018-06-30/consumption/aggregatedcost.go

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

111 changes: 111 additions & 0 deletions services/consumption/mgmt/2018-06-30/consumption/models.go

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

Loading