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 network/resource-manager] Application gateway Identity and Keyvault support #3354

Merged
merged 1 commit into from
Nov 20, 2018
Merged
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
14 changes: 14 additions & 0 deletions profiles/preview/network/mgmt/network/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,15 @@ const (
Standard PublicIPPrefixSkuName = original.Standard
)

type ResourceIdentityType = original.ResourceIdentityType

const (
ResourceIdentityTypeNone ResourceIdentityType = original.ResourceIdentityTypeNone
ResourceIdentityTypeSystemAssigned ResourceIdentityType = original.ResourceIdentityTypeSystemAssigned
ResourceIdentityTypeSystemAssignedUserAssigned ResourceIdentityType = original.ResourceIdentityTypeSystemAssignedUserAssigned
ResourceIdentityTypeUserAssigned ResourceIdentityType = original.ResourceIdentityTypeUserAssigned
)

type RouteNextHopType = original.RouteNextHopType

const (
Expand Down Expand Up @@ -1276,6 +1285,8 @@ type LocalNetworkGatewaysCreateOrUpdateFuture = original.LocalNetworkGatewaysCre
type LocalNetworkGatewaysDeleteFuture = original.LocalNetworkGatewaysDeleteFuture
type LocalNetworkGatewaysUpdateTagsFuture = original.LocalNetworkGatewaysUpdateTagsFuture
type LogSpecification = original.LogSpecification
type ManagedServiceIdentity = original.ManagedServiceIdentity
type ManagedServiceIdentityUserAssignedIdentitiesValue = original.ManagedServiceIdentityUserAssignedIdentitiesValue
type MatchedRule = original.MatchedRule
type MetricSpecification = original.MetricSpecification
type NextHopParameters = original.NextHopParameters
Expand Down Expand Up @@ -2051,6 +2062,9 @@ func PossiblePublicIPAddressSkuNameValues() []PublicIPAddressSkuName {
func PossiblePublicIPPrefixSkuNameValues() []PublicIPPrefixSkuName {
return original.PossiblePublicIPPrefixSkuNameValues()
}
func PossibleResourceIdentityTypeValues() []ResourceIdentityType {
return original.PossibleResourceIdentityTypeValues()
}
func PossibleRouteNextHopTypeValues() []RouteNextHopType {
return original.PossibleRouteNextHopTypeValues()
}
Expand Down
77 changes: 75 additions & 2 deletions services/network/mgmt/2018-10-01/network/models.go

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