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
21 changes: 18 additions & 3 deletions profiles/preview/web/mgmt/web/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,14 @@ const (
Hour FrequencyUnit = original.Hour
)

type FtpsState = original.FtpsState

const (
AllAllowed FtpsState = original.AllAllowed
Disabled FtpsState = original.Disabled
FtpsOnly FtpsState = original.FtpsOnly
)

type HostingEnvironmentStatus = original.HostingEnvironmentStatus

const (
Expand Down Expand Up @@ -533,9 +541,9 @@ const (
type SslState = original.SslState

const (
Disabled SslState = original.Disabled
IPBasedEnabled SslState = original.IPBasedEnabled
SniEnabled SslState = original.SniEnabled
SslStateDisabled SslState = original.SslStateDisabled
SslStateIPBasedEnabled SslState = original.SslStateIPBasedEnabled
SslStateSniEnabled SslState = original.SslStateSniEnabled
)

type StatusOptions = original.StatusOptions
Expand Down Expand Up @@ -670,6 +678,8 @@ type AppsMigrateMySQLFuture = original.AppsMigrateMySQLFuture
type AppsMigrateStorageFuture = original.AppsMigrateStorageFuture
type AppsRestoreFromBackupBlobFuture = original.AppsRestoreFromBackupBlobFuture
type AppsRestoreFromBackupBlobSlotFuture = original.AppsRestoreFromBackupBlobSlotFuture
type AppsRestoreFromDeletedAppFuture = original.AppsRestoreFromDeletedAppFuture
type AppsRestoreFromDeletedAppSlotFuture = original.AppsRestoreFromDeletedAppSlotFuture
type AppsRestoreFuture = original.AppsRestoreFuture
type AppsRestoreSlotFuture = original.AppsRestoreSlotFuture
type AppsRestoreSnapshotFuture = original.AppsRestoreSnapshotFuture
Expand Down Expand Up @@ -740,6 +750,8 @@ type DataSource = original.DataSource
type DefaultErrorResponse = original.DefaultErrorResponse
type DefaultErrorResponseError = original.DefaultErrorResponseError
type DefaultErrorResponseErrorDetailsItem = original.DefaultErrorResponseErrorDetailsItem
type DeletedAppRestoreRequest = original.DeletedAppRestoreRequest
type DeletedAppRestoreRequestProperties = original.DeletedAppRestoreRequestProperties
type DeletedSite = original.DeletedSite
type DeletedWebAppCollection = original.DeletedWebAppCollection
type DeletedWebAppCollectionIterator = original.DeletedWebAppCollectionIterator
Expand Down Expand Up @@ -1226,6 +1238,9 @@ func PossibleDomainTypeValues() []DomainType {
func PossibleFrequencyUnitValues() []FrequencyUnit {
return original.PossibleFrequencyUnitValues()
}
func PossibleFtpsStateValues() []FtpsState {
return original.PossibleFtpsStateValues()
}
func PossibleHostingEnvironmentStatusValues() []HostingEnvironmentStatus {
return original.PossibleHostingEnvironmentStatusValues()
}
Expand Down
160 changes: 160 additions & 0 deletions services/web/mgmt/2018-02-01/web/apps.go

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

Loading