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] Add pipeline policy and Elapsed Time Metric #1723

Closed
wants to merge 1 commit into from
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
2 changes: 1 addition & 1 deletion schemas/2017-09-01-preview/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -12175,4 +12175,4 @@
"description": "Zoho server dataset."
}
}
}
}
41 changes: 40 additions & 1 deletion schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -20382,6 +20382,17 @@
],
"description": "Definition of all parameters for an entity."
},
"policy": {
"oneOf": [
{
"$ref": "#/definitions/PipelinePolicy"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Pipeline Policy."
},
"runDimensions": {
"oneOf": [
{
Expand Down Expand Up @@ -20416,6 +20427,17 @@
},
"description": "A data factory pipeline."
},
"PipelineElapsedTimeMetricPolicy": {
"type": "object",
"properties": {
"duration": {
"type": "object",
"properties": {},
"description": "TimeSpan value, after which an Azure Monitoring Metric is fired."
}
},
"description": "Pipeline ElapsedTime Metric Policy."
},
"PipelineFolder": {
"type": "object",
"properties": {
Expand All @@ -20426,6 +20448,23 @@
},
"description": "The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level."
},
"PipelinePolicy": {
"type": "object",
"properties": {
"elapsedTimeMetric": {
"oneOf": [
{
"$ref": "#/definitions/PipelineElapsedTimeMetricPolicy"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Pipeline ElapsedTime Metric Policy."
}
},
"description": "Pipeline Policy."
},
"PipelineReference": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -28296,4 +28335,4 @@
"description": "A copy activity Zoho server source."
}
}
}
}