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] cognitiveservices/data-plane/LUIS/Authoring #3700

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ package authoringapi
import original "github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v2.0/luis/authoring/authoringapi"

type AppsClientAPI = original.AppsClientAPI
type AzureAccountsClientAPI = original.AzureAccountsClientAPI
type ExamplesClientAPI = original.ExamplesClientAPI
type FeaturesClientAPI = original.FeaturesClientAPI
type ModelClientAPI = original.ModelClientAPI
Expand Down
6 changes: 6 additions & 0 deletions profiles/preview/cognitiveservices/luis/authoring/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ type ApplicationUpdateObject = original.ApplicationUpdateObject
type AppsClient = original.AppsClient
type AvailableCulture = original.AvailableCulture
type AvailablePrebuiltEntityModel = original.AvailablePrebuiltEntityModel
type AzureAccountInfoObject = original.AzureAccountInfoObject
type AzureAccountsClient = original.AzureAccountsClient
type BaseClient = original.BaseClient
type BatchLabelExample = original.BatchLabelExample
type ChildEntity = original.ChildEntity
Expand Down Expand Up @@ -275,6 +277,7 @@ type ListAppVersionSettingObject = original.ListAppVersionSettingObject
type ListApplicationInfoResponse = original.ListApplicationInfoResponse
type ListAvailableCulture = original.ListAvailableCulture
type ListAvailablePrebuiltEntityModel = original.ListAvailablePrebuiltEntityModel
type ListAzureAccountInfoObject = original.ListAzureAccountInfoObject
type ListBatchLabelExample = original.ListBatchLabelExample
type ListClosedListEntityExtractor = original.ListClosedListEntityExtractor
type ListCompositeEntityExtractor = original.ListCompositeEntityExtractor
Expand Down Expand Up @@ -363,6 +366,9 @@ func New(endpoint string) BaseClient {
func NewAppsClient(endpoint string) AppsClient {
return original.NewAppsClient(endpoint)
}
func NewAzureAccountsClient(endpoint string) AzureAccountsClient {
return original.NewAzureAccountsClient(endpoint)
}
func NewExamplesClient(endpoint string) ExamplesClient {
return original.NewExamplesClient(endpoint)
}
Expand Down
167 changes: 161 additions & 6 deletions services/cognitiveservices/v2.0/luis/authoring/apps.go

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

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

Loading