Skip to content

Commit

Permalink
Generated from ebaee7c36eb7db67a4e648374f69f26a654b444f (#5885)
Browse files Browse the repository at this point in the history
[SRP] Add new storage account property largeFileSharesState
  • Loading branch information
AutorestCI authored Sep 26, 2019
1 parent f02b4ae commit 2a6ee36
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
10 changes: 10 additions & 0 deletions profiles/latest/storage/mgmt/storage/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,13 @@ const (
StorageV2 Kind = original.StorageV2
)

type LargeFileSharesState = original.LargeFileSharesState

const (
Disabled LargeFileSharesState = original.Disabled
Enabled LargeFileSharesState = original.Enabled
)

type LeaseDuration = original.LeaseDuration

const (
Expand Down Expand Up @@ -504,6 +511,9 @@ func PossibleKeySourceValues() []KeySource {
func PossibleKindValues() []Kind {
return original.PossibleKindValues()
}
func PossibleLargeFileSharesStateValues() []LargeFileSharesState {
return original.PossibleLargeFileSharesStateValues()
}
func PossibleLeaseDurationValues() []LeaseDuration {
return original.PossibleLeaseDurationValues()
}
Expand Down
10 changes: 10 additions & 0 deletions profiles/preview/storage/mgmt/storage/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,13 @@ const (
StorageV2 Kind = original.StorageV2
)

type LargeFileSharesState = original.LargeFileSharesState

const (
Disabled LargeFileSharesState = original.Disabled
Enabled LargeFileSharesState = original.Enabled
)

type LeaseDuration = original.LeaseDuration

const (
Expand Down Expand Up @@ -504,6 +511,9 @@ func PossibleKeySourceValues() []KeySource {
func PossibleKindValues() []Kind {
return original.PossibleKindValues()
}
func PossibleLargeFileSharesStateValues() []LargeFileSharesState {
return original.PossibleLargeFileSharesStateValues()
}
func PossibleLeaseDurationValues() []LeaseDuration {
return original.PossibleLeaseDurationValues()
}
Expand Down
21 changes: 21 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.

0 comments on commit 2a6ee36

Please sign in to comment.