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] [Data Factory] Add data flow compute property in IR. #5884

Closed
Closed
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
14 changes: 14 additions & 0 deletions profiles/latest/datafactory/mgmt/datafactory/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ const (
TWO CassandraSourceReadConsistencyLevels = original.TWO
)

type DataFlowComputeType = original.DataFlowComputeType

const (
ComputeOptimized DataFlowComputeType = original.ComputeOptimized
General DataFlowComputeType = original.General
MemoryOptimized DataFlowComputeType = original.MemoryOptimized
)

type DataFlowDebugCommandType = original.DataFlowDebugCommandType

const (
Expand Down Expand Up @@ -1369,6 +1377,8 @@ type DataFlowDebugCommandResponse = original.DataFlowDebugCommandResponse
type DataFlowDebugPackage = original.DataFlowDebugPackage
type DataFlowDebugPackageDebugSettings = original.DataFlowDebugPackageDebugSettings
type DataFlowDebugSessionClient = original.DataFlowDebugSessionClient
type DataFlowDebugSessionCreateFuture = original.DataFlowDebugSessionCreateFuture
type DataFlowDebugSessionExecuteCommandFuture = original.DataFlowDebugSessionExecuteCommandFuture
type DataFlowDebugSessionInfo = original.DataFlowDebugSessionInfo
type DataFlowFolder = original.DataFlowFolder
type DataFlowListResponse = original.DataFlowListResponse
Expand Down Expand Up @@ -1573,6 +1583,7 @@ type IntegrationRuntimeAuthKeys = original.IntegrationRuntimeAuthKeys
type IntegrationRuntimeComputeProperties = original.IntegrationRuntimeComputeProperties
type IntegrationRuntimeConnectionInfo = original.IntegrationRuntimeConnectionInfo
type IntegrationRuntimeCustomSetupScriptProperties = original.IntegrationRuntimeCustomSetupScriptProperties
type IntegrationRuntimeDataFlowProperties = original.IntegrationRuntimeDataFlowProperties
type IntegrationRuntimeDataProxyProperties = original.IntegrationRuntimeDataProxyProperties
type IntegrationRuntimeListResponse = original.IntegrationRuntimeListResponse
type IntegrationRuntimeListResponseIterator = original.IntegrationRuntimeListResponseIterator
Expand Down Expand Up @@ -2166,6 +2177,9 @@ func PossibleBlobEventTypesValues() []BlobEventTypes {
func PossibleCassandraSourceReadConsistencyLevelsValues() []CassandraSourceReadConsistencyLevels {
return original.PossibleCassandraSourceReadConsistencyLevelsValues()
}
func PossibleDataFlowComputeTypeValues() []DataFlowComputeType {
return original.PossibleDataFlowComputeTypeValues()
}
func PossibleDataFlowDebugCommandTypeValues() []DataFlowDebugCommandType {
return original.PossibleDataFlowDebugCommandTypeValues()
}
Expand Down
14 changes: 14 additions & 0 deletions profiles/preview/datafactory/mgmt/datafactory/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ const (
TWO CassandraSourceReadConsistencyLevels = original.TWO
)

type DataFlowComputeType = original.DataFlowComputeType

const (
ComputeOptimized DataFlowComputeType = original.ComputeOptimized
General DataFlowComputeType = original.General
MemoryOptimized DataFlowComputeType = original.MemoryOptimized
)

type DataFlowDebugCommandType = original.DataFlowDebugCommandType

const (
Expand Down Expand Up @@ -1369,6 +1377,8 @@ type DataFlowDebugCommandResponse = original.DataFlowDebugCommandResponse
type DataFlowDebugPackage = original.DataFlowDebugPackage
type DataFlowDebugPackageDebugSettings = original.DataFlowDebugPackageDebugSettings
type DataFlowDebugSessionClient = original.DataFlowDebugSessionClient
type DataFlowDebugSessionCreateFuture = original.DataFlowDebugSessionCreateFuture
type DataFlowDebugSessionExecuteCommandFuture = original.DataFlowDebugSessionExecuteCommandFuture
type DataFlowDebugSessionInfo = original.DataFlowDebugSessionInfo
type DataFlowFolder = original.DataFlowFolder
type DataFlowListResponse = original.DataFlowListResponse
Expand Down Expand Up @@ -1573,6 +1583,7 @@ type IntegrationRuntimeAuthKeys = original.IntegrationRuntimeAuthKeys
type IntegrationRuntimeComputeProperties = original.IntegrationRuntimeComputeProperties
type IntegrationRuntimeConnectionInfo = original.IntegrationRuntimeConnectionInfo
type IntegrationRuntimeCustomSetupScriptProperties = original.IntegrationRuntimeCustomSetupScriptProperties
type IntegrationRuntimeDataFlowProperties = original.IntegrationRuntimeDataFlowProperties
type IntegrationRuntimeDataProxyProperties = original.IntegrationRuntimeDataProxyProperties
type IntegrationRuntimeListResponse = original.IntegrationRuntimeListResponse
type IntegrationRuntimeListResponseIterator = original.IntegrationRuntimeListResponseIterator
Expand Down Expand Up @@ -2166,6 +2177,9 @@ func PossibleBlobEventTypesValues() []BlobEventTypes {
func PossibleCassandraSourceReadConsistencyLevelsValues() []CassandraSourceReadConsistencyLevels {
return original.PossibleCassandraSourceReadConsistencyLevelsValues()
}
func PossibleDataFlowComputeTypeValues() []DataFlowComputeType {
return original.PossibleDataFlowComputeTypeValues()
}
func PossibleDataFlowDebugCommandTypeValues() []DataFlowDebugCommandType {
return original.PossibleDataFlowDebugCommandTypeValues()
}
Expand Down

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