I should be able to download the json of a pipeline and then use that very same json to create a pipeline
For instance if I run
artifact_json=$(az synapse ${artifact_type} show \
--workspace-name "${SYNAPSE_WORKSPACE_NAME}" \
--name ${artifact} \
--output json)
I will be missing the top level "properties" key that contains "activities".
This means I cannot use this command
az synapse ${artifact_type} create --file "${artifact_json}" --name "${artifact_name}"\
--workspace-name "${SYNAPSE_WORKSPACE_NAME}" "${args[@]}" -o json
you will get an error
File "/opt/az/lib/python3.6/site-packages/azure/cli/command_modules/synapse/manual/operations/artifacts.py", line 80, in create_or_update_pipeline
properties = PipelineResource.from_dict(definition_file['properties'])
KeyError: 'properties'
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
I should be able to download the json of a pipeline and then use that very same json to create a pipeline
For instance if I run
I will be missing the top level "properties" key that contains "activities".
This means I cannot use this command
you will get an error
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.