Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Holding for validation

Original file line number Diff line number Diff line change
Expand Up @@ -1109,6 +1109,7 @@ resource dataFactory 'Microsoft.DataFactory/factories@2018-06-01' existing = {
}
}
fieldList: [
'exists'
'childItems'
]
storeSettings: {
Expand All @@ -1135,7 +1136,7 @@ resource dataFactory 'Microsoft.DataFactory/factories@2018-06-01' existing = {
userProperties: []
typeProperties: {
items: {
value: '@if(contains(activity(\'Get Existing Parquet Files\').output, \'childItems\'), activity(\'Get Existing Parquet Files\').output.childItems, json(\'[]\'))'
value: '@if(and(activity(\'Get Existing Parquet Files\').output.exists, contains(activity(\'Get Existing Parquet Files\').output, \'childItems\')), activity(\'Get Existing Parquet Files\').output.childItems, json(\'[]\'))'
Comment thread
RolandKrummenacher marked this conversation as resolved.
type: 'Expression'
}
condition: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1694,6 +1694,7 @@ resource pipeline_ExecuteIngestionETL 'Microsoft.DataFactory/factories/pipelines
}
}
fieldList: [
'exists'
Comment thread
RolandKrummenacher marked this conversation as resolved.
'childItems'
]
storeSettings: {
Expand All @@ -1720,7 +1721,7 @@ resource pipeline_ExecuteIngestionETL 'Microsoft.DataFactory/factories/pipelines
userProperties: []
typeProperties: {
items: {
value: '@if(contains(activity(\'Get Existing Parquet Files\').output, \'childItems\'), activity(\'Get Existing Parquet Files\').output.childItems, json(\'[]\'))'
value: '@if(and(activity(\'Get Existing Parquet Files\').output.exists, contains(activity(\'Get Existing Parquet Files\').output, \'childItems\')), activity(\'Get Existing Parquet Files\').output.childItems, json(\'[]\'))'
type: 'Expression'
}
condition: {
Expand Down