Skip to content
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
15 changes: 15 additions & 0 deletions profiles/latest/web/mgmt/web/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,16 @@ const (
WebDeploy PublishingProfileFormat = original.WebDeploy
)

type RedundancyMode = original.RedundancyMode

const (
RedundancyModeActiveActive RedundancyMode = original.RedundancyModeActiveActive
RedundancyModeFailover RedundancyMode = original.RedundancyModeFailover
RedundancyModeGeoRedundant RedundancyMode = original.RedundancyModeGeoRedundant
RedundancyModeManual RedundancyMode = original.RedundancyModeManual
RedundancyModeNone RedundancyMode = original.RedundancyModeNone
)

type RenderingType = original.RenderingType

const (
Expand Down Expand Up @@ -864,6 +874,7 @@ type FunctionEnvelopeCollectionPage = original.FunctionEnvelopeCollectionPage
type FunctionEnvelopeProperties = original.FunctionEnvelopeProperties
type FunctionSecrets = original.FunctionSecrets
type FunctionSecretsProperties = original.FunctionSecretsProperties
type GeoDistribution = original.GeoDistribution
type GeoRegion = original.GeoRegion
type GeoRegionCollection = original.GeoRegionCollection
type GeoRegionCollectionIterator = original.GeoRegionCollectionIterator
Expand Down Expand Up @@ -1140,6 +1151,7 @@ type UsageCollectionPage = original.UsageCollectionPage
type UsageProperties = original.UsageProperties
type User = original.User
type UserProperties = original.UserProperties
type ValidateContainerSettingsRequest = original.ValidateContainerSettingsRequest
type ValidateProperties = original.ValidateProperties
type ValidateRequest = original.ValidateRequest
type ValidateResponse = original.ValidateResponse
Expand Down Expand Up @@ -1712,6 +1724,9 @@ func PossiblePublicCertificateLocationValues() []PublicCertificateLocation {
func PossiblePublishingProfileFormatValues() []PublishingProfileFormat {
return original.PossiblePublishingProfileFormatValues()
}
func PossibleRedundancyModeValues() []RedundancyMode {
return original.PossibleRedundancyModeValues()
}
func PossibleRenderingTypeValues() []RenderingType {
return original.PossibleRenderingTypeValues()
}
Expand Down
15 changes: 15 additions & 0 deletions profiles/preview/web/mgmt/web/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,16 @@ const (
WebDeploy PublishingProfileFormat = original.WebDeploy
)

type RedundancyMode = original.RedundancyMode

const (
RedundancyModeActiveActive RedundancyMode = original.RedundancyModeActiveActive
RedundancyModeFailover RedundancyMode = original.RedundancyModeFailover
RedundancyModeGeoRedundant RedundancyMode = original.RedundancyModeGeoRedundant
RedundancyModeManual RedundancyMode = original.RedundancyModeManual
RedundancyModeNone RedundancyMode = original.RedundancyModeNone
)

type RenderingType = original.RenderingType

const (
Expand Down Expand Up @@ -864,6 +874,7 @@ type FunctionEnvelopeCollectionPage = original.FunctionEnvelopeCollectionPage
type FunctionEnvelopeProperties = original.FunctionEnvelopeProperties
type FunctionSecrets = original.FunctionSecrets
type FunctionSecretsProperties = original.FunctionSecretsProperties
type GeoDistribution = original.GeoDistribution
type GeoRegion = original.GeoRegion
type GeoRegionCollection = original.GeoRegionCollection
type GeoRegionCollectionIterator = original.GeoRegionCollectionIterator
Expand Down Expand Up @@ -1140,6 +1151,7 @@ type UsageCollectionPage = original.UsageCollectionPage
type UsageProperties = original.UsageProperties
type User = original.User
type UserProperties = original.UserProperties
type ValidateContainerSettingsRequest = original.ValidateContainerSettingsRequest
type ValidateProperties = original.ValidateProperties
type ValidateRequest = original.ValidateRequest
type ValidateResponse = original.ValidateResponse
Expand Down Expand Up @@ -1712,6 +1724,9 @@ func PossiblePublicCertificateLocationValues() []PublicCertificateLocation {
func PossiblePublishingProfileFormatValues() []PublishingProfileFormat {
return original.PossiblePublishingProfileFormatValues()
}
func PossibleRedundancyModeValues() []RedundancyMode {
return original.PossibleRedundancyModeValues()
}
func PossibleRenderingTypeValues() []RenderingType {
return original.PossibleRenderingTypeValues()
}
Expand Down
85 changes: 85 additions & 0 deletions services/web/mgmt/2018-02-01/web/client.go

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

73 changes: 69 additions & 4 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.

Loading