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 datafactory/resource-manager] fix: datafactory character encoding #5311

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
3 changes: 3 additions & 0 deletions profiles/latest/datafactory/mgmt/datafactory/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,7 @@ type TypeBasicActivity = original.TypeBasicActivity
const (
TypeActivity TypeBasicActivity = original.TypeActivity
TypeAppendVariable TypeBasicActivity = original.TypeAppendVariable
TypeAzureDataExplorerCommand TypeBasicActivity = original.TypeAzureDataExplorerCommand
TypeAzureFunctionActivity TypeBasicActivity = original.TypeAzureFunctionActivity
TypeAzureMLBatchExecution TypeBasicActivity = original.TypeAzureMLBatchExecution
TypeAzureMLUpdateResource TypeBasicActivity = original.TypeAzureMLUpdateResource
Expand Down Expand Up @@ -1102,6 +1103,8 @@ type AzureBlobStorageLinkedServiceTypeProperties = original.AzureBlobStorageLink
type AzureBlobStorageLocation = original.AzureBlobStorageLocation
type AzureBlobStorageReadSettings = original.AzureBlobStorageReadSettings
type AzureBlobStorageWriteSettings = original.AzureBlobStorageWriteSettings
type AzureDataExplorerCommand = original.AzureDataExplorerCommand
type AzureDataExplorerCommandActivityTypeProperties = original.AzureDataExplorerCommandActivityTypeProperties
type AzureDataExplorerDatasetTypeProperties = original.AzureDataExplorerDatasetTypeProperties
type AzureDataExplorerLinkedService = original.AzureDataExplorerLinkedService
type AzureDataExplorerLinkedServiceTypeProperties = original.AzureDataExplorerLinkedServiceTypeProperties
Expand Down
3 changes: 3 additions & 0 deletions profiles/preview/datafactory/mgmt/datafactory/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,7 @@ type TypeBasicActivity = original.TypeBasicActivity
const (
TypeActivity TypeBasicActivity = original.TypeActivity
TypeAppendVariable TypeBasicActivity = original.TypeAppendVariable
TypeAzureDataExplorerCommand TypeBasicActivity = original.TypeAzureDataExplorerCommand
TypeAzureFunctionActivity TypeBasicActivity = original.TypeAzureFunctionActivity
TypeAzureMLBatchExecution TypeBasicActivity = original.TypeAzureMLBatchExecution
TypeAzureMLUpdateResource TypeBasicActivity = original.TypeAzureMLUpdateResource
Expand Down Expand Up @@ -1102,6 +1103,8 @@ type AzureBlobStorageLinkedServiceTypeProperties = original.AzureBlobStorageLink
type AzureBlobStorageLocation = original.AzureBlobStorageLocation
type AzureBlobStorageReadSettings = original.AzureBlobStorageReadSettings
type AzureBlobStorageWriteSettings = original.AzureBlobStorageWriteSettings
type AzureDataExplorerCommand = original.AzureDataExplorerCommand
type AzureDataExplorerCommandActivityTypeProperties = original.AzureDataExplorerCommandActivityTypeProperties
type AzureDataExplorerDatasetTypeProperties = original.AzureDataExplorerDatasetTypeProperties
type AzureDataExplorerLinkedService = original.AzureDataExplorerLinkedService
type AzureDataExplorerLinkedServiceTypeProperties = original.AzureDataExplorerLinkedServiceTypeProperties
Expand Down
Loading