Skip to content

Commit

Permalink
Generated from f0fe70b51825fdec12d01df500646be7e4dcff54 (#4215)
Browse files Browse the repository at this point in the history
Azure Search: Resource Manager: Support 'None' Identity type
  • Loading branch information
AutorestCI authored and jhendrixMSFT committed Mar 8, 2019
1 parent 32e0b81 commit dd4d1bb
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
10 changes: 10 additions & 0 deletions profiles/latest/search/mgmt/search/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ const (
HighDensity HostingMode = original.HighDensity
)

type IdentityType = original.IdentityType

const (
None IdentityType = original.None
SystemAssigned IdentityType = original.SystemAssigned
)

type ProvisioningState = original.ProvisioningState

const (
Expand Down Expand Up @@ -134,6 +141,9 @@ func PossibleAdminKeyKindValues() []AdminKeyKind {
func PossibleHostingModeValues() []HostingMode {
return original.PossibleHostingModeValues()
}
func PossibleIdentityTypeValues() []IdentityType {
return original.PossibleIdentityTypeValues()
}
func PossibleProvisioningStateValues() []ProvisioningState {
return original.PossibleProvisioningStateValues()
}
Expand Down
10 changes: 10 additions & 0 deletions profiles/preview/search/mgmt/search/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ const (
HighDensity HostingMode = original.HighDensity
)

type IdentityType = original.IdentityType

const (
None IdentityType = original.None
SystemAssigned IdentityType = original.SystemAssigned
)

type ProvisioningState = original.ProvisioningState

const (
Expand Down Expand Up @@ -134,6 +141,9 @@ func PossibleAdminKeyKindValues() []AdminKeyKind {
func PossibleHostingModeValues() []HostingMode {
return original.PossibleHostingModeValues()
}
func PossibleIdentityTypeValues() []IdentityType {
return original.PossibleIdentityTypeValues()
}
func PossibleProvisioningStateValues() []ProvisioningState {
return original.PossibleProvisioningStateValues()
}
Expand Down
19 changes: 17 additions & 2 deletions services/search/mgmt/2015-08-19/search/models.go

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

0 comments on commit dd4d1bb

Please sign in to comment.