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] botservice/resource-manager #2606

Merged
merged 4 commits into from
Sep 10, 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
54 changes: 54 additions & 0 deletions profiles/preview/preview/botservice/mgmt/botservices/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ const (
)

type BaseClient = original.BaseClient
type EnterpriseChannelsClient = original.EnterpriseChannelsClient
type ChannelName = original.ChannelName

const (
Expand Down Expand Up @@ -61,6 +62,36 @@ const (
ChannelNameWebChatChannel1 ChannelNameBasicChannel = original.ChannelNameWebChatChannel1
)

type EnterpriseChannelNodeState = original.EnterpriseChannelNodeState

const (
CreateFailed EnterpriseChannelNodeState = original.CreateFailed
Creating EnterpriseChannelNodeState = original.Creating
DeleteFailed EnterpriseChannelNodeState = original.DeleteFailed
Deleting EnterpriseChannelNodeState = original.Deleting
Started EnterpriseChannelNodeState = original.Started
StartFailed EnterpriseChannelNodeState = original.StartFailed
Starting EnterpriseChannelNodeState = original.Starting
StopFailed EnterpriseChannelNodeState = original.StopFailed
Stopped EnterpriseChannelNodeState = original.Stopped
Stopping EnterpriseChannelNodeState = original.Stopping
)

type EnterpriseChannelState = original.EnterpriseChannelState

const (
EnterpriseChannelStateCreateFailed EnterpriseChannelState = original.EnterpriseChannelStateCreateFailed
EnterpriseChannelStateCreating EnterpriseChannelState = original.EnterpriseChannelStateCreating
EnterpriseChannelStateDeleteFailed EnterpriseChannelState = original.EnterpriseChannelStateDeleteFailed
EnterpriseChannelStateDeleting EnterpriseChannelState = original.EnterpriseChannelStateDeleting
EnterpriseChannelStateStarted EnterpriseChannelState = original.EnterpriseChannelStateStarted
EnterpriseChannelStateStartFailed EnterpriseChannelState = original.EnterpriseChannelStateStartFailed
EnterpriseChannelStateStarting EnterpriseChannelState = original.EnterpriseChannelStateStarting
EnterpriseChannelStateStopFailed EnterpriseChannelState = original.EnterpriseChannelStateStopFailed
EnterpriseChannelStateStopped EnterpriseChannelState = original.EnterpriseChannelStateStopped
EnterpriseChannelStateStopping EnterpriseChannelState = original.EnterpriseChannelStateStopping
)

type Kind = original.Kind

const (
Expand Down Expand Up @@ -109,6 +140,17 @@ type DirectLineChannelProperties = original.DirectLineChannelProperties
type DirectLineSite = original.DirectLineSite
type EmailChannel = original.EmailChannel
type EmailChannelProperties = original.EmailChannelProperties
type EnterpriseChannel = original.EnterpriseChannel
type EnterpriseChannelCheckNameAvailabilityRequest = original.EnterpriseChannelCheckNameAvailabilityRequest
type EnterpriseChannelCheckNameAvailabilityResponse = original.EnterpriseChannelCheckNameAvailabilityResponse
type EnterpriseChannelNode = original.EnterpriseChannelNode
type EnterpriseChannelProperties = original.EnterpriseChannelProperties
type EnterpriseChannelResponseList = original.EnterpriseChannelResponseList
type EnterpriseChannelResponseListIterator = original.EnterpriseChannelResponseListIterator
type EnterpriseChannelResponseListPage = original.EnterpriseChannelResponseListPage
type EnterpriseChannelsCreateFuture = original.EnterpriseChannelsCreateFuture
type EnterpriseChannelsDeleteFuture = original.EnterpriseChannelsDeleteFuture
type EnterpriseChannelsUpdateFuture = original.EnterpriseChannelsUpdateFuture
type Error = original.Error
type ErrorBody = original.ErrorBody
type FacebookChannel = original.FacebookChannel
Expand Down Expand Up @@ -166,12 +208,24 @@ func New(subscriptionID string) BaseClient {
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
return original.NewWithBaseURI(baseURI, subscriptionID)
}
func NewEnterpriseChannelsClient(subscriptionID string) EnterpriseChannelsClient {
return original.NewEnterpriseChannelsClient(subscriptionID)
}
func NewEnterpriseChannelsClientWithBaseURI(baseURI string, subscriptionID string) EnterpriseChannelsClient {
return original.NewEnterpriseChannelsClientWithBaseURI(baseURI, subscriptionID)
}
func PossibleChannelNameValues() []ChannelName {
return original.PossibleChannelNameValues()
}
func PossibleChannelNameBasicChannelValues() []ChannelNameBasicChannel {
return original.PossibleChannelNameBasicChannelValues()
}
func PossibleEnterpriseChannelNodeStateValues() []EnterpriseChannelNodeState {
return original.PossibleEnterpriseChannelNodeStateValues()
}
func PossibleEnterpriseChannelStateValues() []EnterpriseChannelState {
return original.PossibleEnterpriseChannelStateValues()
}
func PossibleKindValues() []Kind {
return original.PossibleKindValues()
}
Expand Down

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

Loading