Skip to content

Commit

Permalink
Generated from d605882bdcb7e402badbf4aeca8d66f20a9d197e (#4465)
Browse files Browse the repository at this point in the history
Update managedserviceidentity type enum

Enum is currently missing the ua + sa combination + "none" type. We do support those values in our API and as such need the swagger to reflect that.
  • Loading branch information
AutorestCI authored Apr 2, 2019
1 parent 397d62a commit 52ff136
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
6 changes: 4 additions & 2 deletions profiles/latest/web/mgmt/web/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,10 @@ const (
type ManagedServiceIdentityType = original.ManagedServiceIdentityType

const (
SystemAssigned ManagedServiceIdentityType = original.SystemAssigned
UserAssigned ManagedServiceIdentityType = original.UserAssigned
ManagedServiceIdentityTypeNone ManagedServiceIdentityType = original.ManagedServiceIdentityTypeNone
ManagedServiceIdentityTypeSystemAssigned ManagedServiceIdentityType = original.ManagedServiceIdentityTypeSystemAssigned
ManagedServiceIdentityTypeSystemAssignedUserAssigned ManagedServiceIdentityType = original.ManagedServiceIdentityTypeSystemAssignedUserAssigned
ManagedServiceIdentityTypeUserAssigned ManagedServiceIdentityType = original.ManagedServiceIdentityTypeUserAssigned
)

type MySQLMigrationType = original.MySQLMigrationType
Expand Down
6 changes: 4 additions & 2 deletions profiles/preview/web/mgmt/web/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,10 @@ const (
type ManagedServiceIdentityType = original.ManagedServiceIdentityType

const (
SystemAssigned ManagedServiceIdentityType = original.SystemAssigned
UserAssigned ManagedServiceIdentityType = original.UserAssigned
ManagedServiceIdentityTypeNone ManagedServiceIdentityType = original.ManagedServiceIdentityTypeNone
ManagedServiceIdentityTypeSystemAssigned ManagedServiceIdentityType = original.ManagedServiceIdentityTypeSystemAssigned
ManagedServiceIdentityTypeSystemAssignedUserAssigned ManagedServiceIdentityType = original.ManagedServiceIdentityTypeSystemAssignedUserAssigned
ManagedServiceIdentityTypeUserAssigned ManagedServiceIdentityType = original.ManagedServiceIdentityTypeUserAssigned
)

type MySQLMigrationType = original.MySQLMigrationType
Expand Down
16 changes: 10 additions & 6 deletions services/web/mgmt/2018-02-01/web/models.go

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

0 comments on commit 52ff136

Please sign in to comment.