From 47c4e1924eb0b2688ec89567283db9f059512d3e Mon Sep 17 00:00:00 2001 From: Kalyan C Kesireddy Date: Sat, 6 Feb 2021 14:01:25 -0800 Subject: [PATCH 1/5] Add pipeline policy and ElapsedTime Policy --- .../stable/2018-06-01/entityTypes/Pipeline.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json index 1fcf5e134fb2..bd89754e8831 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json @@ -70,8 +70,14 @@ } } } + }, + "policy": { + "description": "Pipeline Policy", + "type": "object", + "$ref": "#/definitions/PipelinePolicy" } }, + "Activity": { "discriminator": "type", "description": "A pipeline activity.", From 4587af41670de8dc7c3ececf6bf7f602f9ec7adc Mon Sep 17 00:00:00 2001 From: Kalyan C Kesireddy Date: Sat, 6 Feb 2021 14:06:16 -0800 Subject: [PATCH 2/5] adding missing objects --- .../2018-06-01/entityTypes/Pipeline.json | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json index bd89754e8831..00257d1c40e4 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json @@ -77,7 +77,27 @@ "$ref": "#/definitions/PipelinePolicy" } }, - + "PipelinePolicy": { + "description": "Pipeline Policy.", + "type": "object", + "properties": { + "elapsedTimeMetric": { + "description": "Pipeline ElapsedTime Metric Policy.", + "type": "object", + "$ref": "#/definitions/PipelineElapsedTimeMetricPolicy" + } + } + }, + "PipelineElapsedTimeMetricPolicy": { + "description": "Pipeline ElapsedTime Metric Policy.", + "type": "object", + "properties": { + "duration": { + "description": "TimeSpan value, after which an Azure Monitoring Metric is fired.", + "type": "object" + } + } + }, "Activity": { "discriminator": "type", "description": "A pipeline activity.", From a5ebf7f09771367529c0b05890dcd15b1a9e85d6 Mon Sep 17 00:00:00 2001 From: Kalyan C Kesireddy Date: Thu, 18 Feb 2021 12:12:22 -0800 Subject: [PATCH 3/5] fix schema validation --- .../stable/2018-06-01/entityTypes/Pipeline.json | 12 ++++-------- .../stable/2018-06-01/examples/Pipelines_Create.json | 5 +++++ .../stable/2018-06-01/examples/Pipelines_Get.json | 5 +++++ .../stable/2018-06-01/examples/Pipelines_Update.json | 5 +++++ 4 files changed, 19 insertions(+), 8 deletions(-) diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json index 00257d1c40e4..8d30e9b62024 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json @@ -69,12 +69,10 @@ "type": "string" } } + }, + "policy": { + "$ref": "#/definitions/PipelinePolicy" } - }, - "policy": { - "description": "Pipeline Policy", - "type": "object", - "$ref": "#/definitions/PipelinePolicy" } }, "PipelinePolicy": { @@ -82,8 +80,6 @@ "type": "object", "properties": { "elapsedTimeMetric": { - "description": "Pipeline ElapsedTime Metric Policy.", - "type": "object", "$ref": "#/definitions/PipelineElapsedTimeMetricPolicy" } } @@ -7017,4 +7013,4 @@ } } } -} +} \ No newline at end of file diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json index 244732eeda4b..15d83fd35d9c 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json @@ -76,6 +76,11 @@ "value": "@pipeline().parameters.JobId", "type": "Expression" } + }, + "policy": { + "elapsedTimeMetric": { + "duration": "0.00:10:00" + } } } }, diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json index 82a21a869f01..a4f1a93c68c0 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json @@ -83,6 +83,11 @@ "TestVariableArray": { "type": "Array" } + }, + "policy": { + "elapsedTimeMetric": { + "duration": "0.00:10:00" + } } }, "etag": "1500504f-0000-0200-0000-5cbe090f0000" diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json index d8f17d97dca1..423cdd1bd882 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json @@ -63,6 +63,11 @@ "OutputBlobNameList": { "type": "Array" } + }, + "policy": { + "elapsedTimeMetric": { + "duration": "0.00:10:00" + } } } }, From 497733c5b83b52578840daeb3f0a6c3755082898 Mon Sep 17 00:00:00 2001 From: Kalyan C Kesireddy Date: Thu, 18 Feb 2021 22:58:25 -0800 Subject: [PATCH 4/5] fix prettier issues --- .../stable/2018-06-01/entityTypes/Pipeline.json | 2 +- .../stable/2018-06-01/examples/Pipelines_Create.json | 2 +- .../stable/2018-06-01/examples/Pipelines_Get.json | 2 +- .../stable/2018-06-01/examples/Pipelines_Update.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json index 8d30e9b62024..5d527f70fc10 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json @@ -7013,4 +7013,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json index 15d83fd35d9c..1a041c5457ba 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json @@ -79,7 +79,7 @@ }, "policy": { "elapsedTimeMetric": { - "duration": "0.00:10:00" + "duration": "0.00:10:00" } } } diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json index a4f1a93c68c0..f49ec1dd6d7f 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json @@ -86,7 +86,7 @@ }, "policy": { "elapsedTimeMetric": { - "duration": "0.00:10:00" + "duration": "0.00:10:00" } } }, diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json index 423cdd1bd882..ccecef5ec9de 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json @@ -66,7 +66,7 @@ }, "policy": { "elapsedTimeMetric": { - "duration": "0.00:10:00" + "duration": "0.00:10:00" } } } From 72c3a3430cbff548e58d3c981c740fc24f0a946a Mon Sep 17 00:00:00 2001 From: Kalyan Kesireddy Date: Wed, 16 Mar 2022 12:01:22 -0700 Subject: [PATCH 5/5] add disable cert validation in webactivity --- .../preview/2021-06-01-preview/entityTypes/Pipeline.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/specification/synapse/data-plane/Microsoft.Synapse/preview/2021-06-01-preview/entityTypes/Pipeline.json b/specification/synapse/data-plane/Microsoft.Synapse/preview/2021-06-01-preview/entityTypes/Pipeline.json index 7c9801518e66..9560856bd594 100644 --- a/specification/synapse/data-plane/Microsoft.Synapse/preview/2021-06-01-preview/entityTypes/Pipeline.json +++ b/specification/synapse/data-plane/Microsoft.Synapse/preview/2021-06-01-preview/entityTypes/Pipeline.json @@ -5990,6 +5990,10 @@ "description": "Authentication method used for calling the endpoint.", "$ref": "#/definitions/WebActivityAuthentication" }, + "disableCertValidation": { + "type": "boolean", + "description": "When set to true, Certificate validation will be disabled." + }, "datasets": { "type": "array", "description": "List of datasets passed to web endpoint.",