Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR] reservations/resource-manager #4554

Merged
merged 1 commit into from
Apr 17, 2019
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
16 changes: 11 additions & 5 deletions profiles/preview/preview/reservations/mgmt/reservations/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package reservations
import (
"context"

original "github.com/Azure/azure-sdk-for-go/services/preview/reservations/mgmt/2018-06-01/reservations"
original "github.com/Azure/azure-sdk-for-go/services/preview/reservations/mgmt/2019-04-01/reservations"
)

const (
Expand Down Expand Up @@ -99,9 +99,8 @@ const (
type InstanceFlexibility = original.InstanceFlexibility

const (
NotSupported InstanceFlexibility = original.NotSupported
Off InstanceFlexibility = original.Off
On InstanceFlexibility = original.On
Off InstanceFlexibility = original.Off
On InstanceFlexibility = original.On
)

type ReservationTerm = original.ReservationTerm
Expand All @@ -115,7 +114,6 @@ type ReservedResourceType = original.ReservedResourceType

const (
CosmosDb ReservedResourceType = original.CosmosDb
RedHat ReservedResourceType = original.RedHat
SQLDatabases ReservedResourceType = original.SQLDatabases
SuseLinux ReservedResourceType = original.SuseLinux
VirtualMachines ReservedResourceType = original.VirtualMachines
Expand All @@ -139,6 +137,10 @@ type AppliedReservationList = original.AppliedReservationList
type AppliedReservations = original.AppliedReservations
type AppliedReservationsProperties = original.AppliedReservationsProperties
type BaseClient = original.BaseClient
type CalculatePriceResponse = original.CalculatePriceResponse
type CalculatePriceResponseProperties = original.CalculatePriceResponseProperties
type CalculatePriceResponsePropertiesBillingCurrencyTotal = original.CalculatePriceResponsePropertiesBillingCurrencyTotal
type CalculatePriceResponsePropertiesPricingCurrencyTotal = original.CalculatePriceResponsePropertiesPricingCurrencyTotal
type Catalog = original.Catalog
type Client = original.Client
type Error = original.Error
Expand All @@ -163,10 +165,14 @@ type OrderList = original.OrderList
type OrderListIterator = original.OrderListIterator
type OrderListPage = original.OrderListPage
type OrderProperties = original.OrderProperties
type OrderPurchaseFuture = original.OrderPurchaseFuture
type OrderResponse = original.OrderResponse
type Patch = original.Patch
type PatchProperties = original.PatchProperties
type Properties = original.Properties
type PurchaseRequest = original.PurchaseRequest
type PurchaseRequestProperties = original.PurchaseRequestProperties
type PurchaseRequestPropertiesReservedResourceProperties = original.PurchaseRequestPropertiesReservedResourceProperties
type ReservationMergeFuture = original.ReservationMergeFuture
type ReservationUpdateFuture = original.ReservationUpdateFuture
type Response = original.Response
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package reservationsapi

import original "github.com/Azure/azure-sdk-for-go/services/preview/reservations/mgmt/2018-06-01/reservations/reservationsapi"
import original "github.com/Azure/azure-sdk-for-go/services/preview/reservations/mgmt/2019-04-01/reservations/reservationsapi"

type BaseClientAPI = original.BaseClientAPI
type ClientAPI = original.ClientAPI
Expand Down
208 changes: 208 additions & 0 deletions services/preview/reservations/mgmt/2019-04-01/reservations/client.go

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

Loading