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

Added missing continuation settings for execute dataflow activity #29230

Merged
merged 6 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from 5 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 @@ -8359,6 +8359,10 @@
"description": "The integration runtime reference.",
"$ref": "../datafactory.json#/definitions/IntegrationRuntimeReference"
},
"continuationSettings": {
"description": "Continuation settings for execute data flow activity.",
"$ref": "#/definitions/ContinuationSettingsReference"
},
"compute": {
"description": "Compute properties for data flow activity.",
"type": "object",
Expand Down Expand Up @@ -8400,6 +8404,27 @@
"dataFlow"
]
},
"ContinuationSettingsReference": {
"description": "Continuation settings for execute data flow activity.",
"type": "object",
"properties": {
"continuationTtlInMinutes": {
"description": "Continuation TTL in minutes.",
"x-ms-format": "dfe-int",
"type": "object"
},
"idleCondition": {
"description": "Idle condition.",
"x-ms-format": "dfe-string",
"type": "object"
},
"customizedCheckpointKey": {
"description": "Customized checkpoint key.",
"x-ms-format": "dfe-string",
"type": "object"
}
}
},
"ExecutePowerQueryActivityTypeProperties": {
"description": "Execute power query data flow activity properties.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7411,6 +7411,10 @@
"description": "The integration runtime reference.",
"$ref": "../artifacts.json#/definitions/IntegrationRuntimeReference"
},
"continuationSettings": {
"description": "Continuation settings for execute data flow activity.",
"$ref": "#/definitions/ContinuationSettingsReference"
},
"compute": {
"description": "Compute properties for data flow activity.",
"type": "object",
Expand Down Expand Up @@ -7446,6 +7450,27 @@
"dataflow"
]
},
"ContinuationSettingsReference": {
"description": "Continuation settings for execute data flow activity.",
"type": "object",
"properties": {
"continuationTtlInMinutes": {
"description": "Continuation TTL in minutes.",
"x-ms-format": "dfe-int",
anand-bulusu marked this conversation as resolved.
Show resolved Hide resolved
"type": "object"
},
"idleCondition": {
"description": "Idle condition.",
"x-ms-format": "dfe-string",
"type": "object"
},
"customizedCheckpointKey": {
"description": "Customized checkpoint key.",
"x-ms-format": "dfe-string",
"type": "object"
}
}
},
"DataFlowComputeType": {
"description": "All available DataFlowComputeType values.",
"type": "string",
Expand Down