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] [Storage] Support Failover #3047

Closed
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
13 changes: 13 additions & 0 deletions profiles/preview/storage/mgmt/storage/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,14 @@ const (
QuotaID ReasonCode = original.QuotaID
)

type ReplicationStatus = original.ReplicationStatus

const (
ReplicationStatusBootstrap ReplicationStatus = original.ReplicationStatusBootstrap
ReplicationStatusLive ReplicationStatus = original.ReplicationStatusLive
ReplicationStatusUnavailable ReplicationStatus = original.ReplicationStatusUnavailable
)

type Services = original.Services

const (
Expand Down Expand Up @@ -258,6 +266,7 @@ type AccountPropertiesUpdateParameters = original.AccountPropertiesUpdateParamet
type AccountRegenerateKeyParameters = original.AccountRegenerateKeyParameters
type AccountSasParameters = original.AccountSasParameters
type AccountsCreateFuture = original.AccountsCreateFuture
type AccountsFailoverFuture = original.AccountsFailoverFuture
type AccountUpdateParameters = original.AccountUpdateParameters
type AzureEntityResource = original.AzureEntityResource
type BlobContainer = original.BlobContainer
Expand All @@ -269,6 +278,7 @@ type Encryption = original.Encryption
type EncryptionService = original.EncryptionService
type EncryptionServices = original.EncryptionServices
type Endpoints = original.Endpoints
type GetLastSyncTimeResult = original.GetLastSyncTimeResult
type Identity = original.Identity
type ImmutabilityPolicy = original.ImmutabilityPolicy
type ImmutabilityPolicyProperties = original.ImmutabilityPolicyProperties
Expand Down Expand Up @@ -389,6 +399,9 @@ func PossibleReasonValues() []Reason {
func PossibleReasonCodeValues() []ReasonCode {
return original.PossibleReasonCodeValues()
}
func PossibleReplicationStatusValues() []ReplicationStatus {
return original.PossibleReplicationStatusValues()
}
func PossibleServicesValues() []Services {
return original.PossibleServicesValues()
}
Expand Down

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.

4 changes: 0 additions & 4 deletions services/storage/mgmt/2015-06-15/storage/accounts.go

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

4 changes: 0 additions & 4 deletions services/storage/mgmt/2016-01-01/storage/accounts.go

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

4 changes: 0 additions & 4 deletions services/storage/mgmt/2016-05-01/storage/accounts.go

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

4 changes: 0 additions & 4 deletions services/storage/mgmt/2016-12-01/storage/accounts.go

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

4 changes: 0 additions & 4 deletions services/storage/mgmt/2017-06-01/storage/accounts.go

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

4 changes: 0 additions & 4 deletions services/storage/mgmt/2017-10-01/storage/accounts.go

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

4 changes: 0 additions & 4 deletions services/storage/mgmt/2018-02-01/storage/accounts.go

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

169 changes: 165 additions & 4 deletions services/storage/mgmt/2018-07-01/storage/accounts.go

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

Loading