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] storage/resource-manager #4674

Merged
merged 1 commit into from
Apr 26, 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
31 changes: 9 additions & 22 deletions profiles/latest/storage/mgmt/storage/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package storage

import original "github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-11-01/storage"
import original "github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2019-04-01/storage"

const (
DefaultBaseURI = original.DefaultBaseURI
Expand Down Expand Up @@ -51,16 +51,6 @@ const (
Allow Action = original.Allow
)

type Action1 = original.Action1

const (
Acquire Action1 = original.Acquire
Break Action1 = original.Break
Change Action1 = original.Change
Release Action1 = original.Release
Renew Action1 = original.Renew
)

type Bypass = original.Bypass

const (
Expand Down Expand Up @@ -227,12 +217,14 @@ const (
type SkuName = original.SkuName

const (
PremiumLRS SkuName = original.PremiumLRS
PremiumZRS SkuName = original.PremiumZRS
StandardGRS SkuName = original.StandardGRS
StandardLRS SkuName = original.StandardLRS
StandardRAGRS SkuName = original.StandardRAGRS
StandardZRS SkuName = original.StandardZRS
PremiumLRS SkuName = original.PremiumLRS
PremiumZRS SkuName = original.PremiumZRS
StandardGRS SkuName = original.StandardGRS
StandardGZRS SkuName = original.StandardGZRS
StandardLRS SkuName = original.StandardLRS
StandardRAGRS SkuName = original.StandardRAGRS
StandardRAGZRS SkuName = original.StandardRAGZRS
StandardZRS SkuName = original.StandardZRS
)

type SkuTier = original.SkuTier
Expand Down Expand Up @@ -305,8 +297,6 @@ type ImmutabilityPolicy = original.ImmutabilityPolicy
type ImmutabilityPolicyProperties = original.ImmutabilityPolicyProperties
type ImmutabilityPolicyProperty = original.ImmutabilityPolicyProperty
type KeyVaultProperties = original.KeyVaultProperties
type LeaseContainerRequest = original.LeaseContainerRequest
type LeaseContainerResponse = original.LeaseContainerResponse
type LegalHold = original.LegalHold
type LegalHoldProperties = original.LegalHoldProperties
type ListAccountSasResponse = original.ListAccountSasResponse
Expand Down Expand Up @@ -405,9 +395,6 @@ func PossibleAccountExpandValues() []AccountExpand {
func PossibleAccountStatusValues() []AccountStatus {
return original.PossibleAccountStatusValues()
}
func PossibleAction1Values() []Action1 {
return original.PossibleAction1Values()
}
func PossibleActionValues() []Action {
return original.PossibleActionValues()
}
Expand Down
2 changes: 1 addition & 1 deletion profiles/latest/storage/mgmt/storage/storageapi/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package storageapi

import original "github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-11-01/storage/storageapi"
import original "github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2019-04-01/storage/storageapi"

type AccountsClientAPI = original.AccountsClientAPI
type BlobContainersClientAPI = original.BlobContainersClientAPI
Expand Down
31 changes: 9 additions & 22 deletions profiles/preview/storage/mgmt/storage/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package storage

import original "github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-11-01/storage"
import original "github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2019-04-01/storage"

const (
DefaultBaseURI = original.DefaultBaseURI
Expand Down Expand Up @@ -51,16 +51,6 @@ const (
Allow Action = original.Allow
)

type Action1 = original.Action1

const (
Acquire Action1 = original.Acquire
Break Action1 = original.Break
Change Action1 = original.Change
Release Action1 = original.Release
Renew Action1 = original.Renew
)

type Bypass = original.Bypass

const (
Expand Down Expand Up @@ -227,12 +217,14 @@ const (
type SkuName = original.SkuName

const (
PremiumLRS SkuName = original.PremiumLRS
PremiumZRS SkuName = original.PremiumZRS
StandardGRS SkuName = original.StandardGRS
StandardLRS SkuName = original.StandardLRS
StandardRAGRS SkuName = original.StandardRAGRS
StandardZRS SkuName = original.StandardZRS
PremiumLRS SkuName = original.PremiumLRS
PremiumZRS SkuName = original.PremiumZRS
StandardGRS SkuName = original.StandardGRS
StandardGZRS SkuName = original.StandardGZRS
StandardLRS SkuName = original.StandardLRS
StandardRAGRS SkuName = original.StandardRAGRS
StandardRAGZRS SkuName = original.StandardRAGZRS
StandardZRS SkuName = original.StandardZRS
)

type SkuTier = original.SkuTier
Expand Down Expand Up @@ -305,8 +297,6 @@ type ImmutabilityPolicy = original.ImmutabilityPolicy
type ImmutabilityPolicyProperties = original.ImmutabilityPolicyProperties
type ImmutabilityPolicyProperty = original.ImmutabilityPolicyProperty
type KeyVaultProperties = original.KeyVaultProperties
type LeaseContainerRequest = original.LeaseContainerRequest
type LeaseContainerResponse = original.LeaseContainerResponse
type LegalHold = original.LegalHold
type LegalHoldProperties = original.LegalHoldProperties
type ListAccountSasResponse = original.ListAccountSasResponse
Expand Down Expand Up @@ -405,9 +395,6 @@ func PossibleAccountExpandValues() []AccountExpand {
func PossibleAccountStatusValues() []AccountStatus {
return original.PossibleAccountStatusValues()
}
func PossibleAction1Values() []Action1 {
return original.PossibleAction1Values()
}
func PossibleActionValues() []Action {
return original.PossibleActionValues()
}
Expand Down
2 changes: 1 addition & 1 deletion profiles/preview/storage/mgmt/storage/storageapi/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package storageapi

import original "github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-11-01/storage/storageapi"
import original "github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2019-04-01/storage/storageapi"

type AccountsClientAPI = original.AccountsClientAPI
type BlobContainersClientAPI = original.BlobContainersClientAPI
Expand Down
Loading