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] [SRP] Expose lease container in Apr19 API. #4700

Merged
merged 1 commit into from
Apr 29, 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
15 changes: 15 additions & 0 deletions profiles/latest/storage/mgmt/storage/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,16 @@ 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 @@ -297,6 +307,8 @@ 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 @@ -395,6 +407,9 @@ func PossibleAccountExpandValues() []AccountExpand {
func PossibleAccountStatusValues() []AccountStatus {
return original.PossibleAccountStatusValues()
}
func PossibleAction1Values() []Action1 {
return original.PossibleAction1Values()
}
func PossibleActionValues() []Action {
return original.PossibleActionValues()
}
Expand Down
15 changes: 15 additions & 0 deletions profiles/preview/storage/mgmt/storage/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,16 @@ 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 @@ -297,6 +307,8 @@ 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 @@ -395,6 +407,9 @@ func PossibleAccountExpandValues() []AccountExpand {
func PossibleAccountStatusValues() []AccountStatus {
return original.PossibleAccountStatusValues()
}
func PossibleAction1Values() []Action1 {
return original.PossibleAction1Values()
}
func PossibleActionValues() []Action {
return original.PossibleActionValues()
}
Expand Down
106 changes: 106 additions & 0 deletions services/storage/mgmt/2019-04-01/storage/blobcontainers.go

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

44 changes: 44 additions & 0 deletions services/storage/mgmt/2019-04-01/storage/models.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.