Skip to content

Commit

Permalink
Generated from c7ff553c30947fdc9a3e133cc8c1ec3740abc0ac (#6046)
Browse files Browse the repository at this point in the history
[SRP] Support Active Directory and regenerate kerb keys
  • Loading branch information
AutorestCI authored Oct 16, 2019
1 parent 4285a5c commit fcc20e4
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 10 deletions.
11 changes: 11 additions & 0 deletions profiles/latest/storage/mgmt/storage/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ type DirectoryServiceOptions = original.DirectoryServiceOptions

const (
DirectoryServiceOptionsAADDS DirectoryServiceOptions = original.DirectoryServiceOptionsAADDS
DirectoryServiceOptionsAD DirectoryServiceOptions = original.DirectoryServiceOptionsAD
DirectoryServiceOptionsNone DirectoryServiceOptions = original.DirectoryServiceOptionsNone
)

Expand Down Expand Up @@ -173,6 +174,12 @@ const (
LeaseStatusUnlocked LeaseStatus = original.LeaseStatusUnlocked
)

type ListKeyExpand = original.ListKeyExpand

const (
Kerb ListKeyExpand = original.Kerb
)

type Permissions = original.Permissions

const (
Expand Down Expand Up @@ -300,6 +307,7 @@ type AccountUpdateParameters = original.AccountUpdateParameters
type AccountsClient = original.AccountsClient
type AccountsCreateFuture = original.AccountsCreateFuture
type AccountsFailoverFuture = original.AccountsFailoverFuture
type ActiveDirectoryProperties = original.ActiveDirectoryProperties
type AzureEntityResource = original.AzureEntityResource
type AzureFilesIdentityBasedAuthentication = original.AzureFilesIdentityBasedAuthentication
type BaseClient = original.BaseClient
Expand Down Expand Up @@ -523,6 +531,9 @@ func PossibleLeaseStateValues() []LeaseState {
func PossibleLeaseStatusValues() []LeaseStatus {
return original.PossibleLeaseStatusValues()
}
func PossibleListKeyExpandValues() []ListKeyExpand {
return original.PossibleListKeyExpandValues()
}
func PossiblePermissionsValues() []Permissions {
return original.PossiblePermissionsValues()
}
Expand Down
11 changes: 11 additions & 0 deletions profiles/preview/storage/mgmt/storage/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ type DirectoryServiceOptions = original.DirectoryServiceOptions

const (
DirectoryServiceOptionsAADDS DirectoryServiceOptions = original.DirectoryServiceOptionsAADDS
DirectoryServiceOptionsAD DirectoryServiceOptions = original.DirectoryServiceOptionsAD
DirectoryServiceOptionsNone DirectoryServiceOptions = original.DirectoryServiceOptionsNone
)

Expand Down Expand Up @@ -173,6 +174,12 @@ const (
LeaseStatusUnlocked LeaseStatus = original.LeaseStatusUnlocked
)

type ListKeyExpand = original.ListKeyExpand

const (
Kerb ListKeyExpand = original.Kerb
)

type Permissions = original.Permissions

const (
Expand Down Expand Up @@ -300,6 +307,7 @@ type AccountUpdateParameters = original.AccountUpdateParameters
type AccountsClient = original.AccountsClient
type AccountsCreateFuture = original.AccountsCreateFuture
type AccountsFailoverFuture = original.AccountsFailoverFuture
type ActiveDirectoryProperties = original.ActiveDirectoryProperties
type AzureEntityResource = original.AzureEntityResource
type AzureFilesIdentityBasedAuthentication = original.AzureFilesIdentityBasedAuthentication
type BaseClient = original.BaseClient
Expand Down Expand Up @@ -523,6 +531,9 @@ func PossibleLeaseStateValues() []LeaseState {
func PossibleLeaseStatusValues() []LeaseStatus {
return original.PossibleLeaseStatusValues()
}
func PossibleListKeyExpandValues() []ListKeyExpand {
return original.PossibleListKeyExpandValues()
}
func PossiblePermissionsValues() []Permissions {
return original.PossiblePermissionsValues()
}
Expand Down
26 changes: 20 additions & 6 deletions services/storage/mgmt/2019-04-01/storage/accounts.go

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

39 changes: 36 additions & 3 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.

0 comments on commit fcc20e4

Please sign in to comment.