From 83eef9f5a22bc7796d8b5ad51cd2077d2ac8a0e0 Mon Sep 17 00:00:00 2001 From: Jingshu Pan Date: Tue, 24 Oct 2023 08:06:07 +0800 Subject: [PATCH 1/3] [Synapse]Fix Credential OperationId Not UnifiedIssue --- .../Microsoft.Synapse/stable/2020-12-01/credential.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/credential.json b/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/credential.json index 23e4772992d2..8dfe4801ea2b 100644 --- a/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/credential.json +++ b/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/credential.json @@ -31,7 +31,7 @@ "tags": [ "credentials" ], - "operationId": "Credentials_ListByWorkspace", + "operationId": "Credential_ListByWorkspace", "x-ms-examples": { "Credentials_ListByWorkspace": { "$ref": "./examples/Credentials_ListByWorkspace.json" @@ -67,7 +67,7 @@ "tags": [ "credentials" ], - "operationId": "Credentials_CreateOrUpdate", + "operationId": "Credential_CreateOrUpdate", "x-ms-examples": { "Credentials_Create": { "$ref": "./examples/Credentials_Create.json" From adbe91fe87e25a4da54186852463342e1707bd65 Mon Sep 17 00:00:00 2001 From: Jingshu Pan Date: Thu, 26 Oct 2023 11:38:01 +0800 Subject: [PATCH 2/3] Revert "[Synapse]Fix Credential OperationId Not UnifiedIssue" This reverts commit 83eef9f5a22bc7796d8b5ad51cd2077d2ac8a0e0. --- .../Microsoft.Synapse/stable/2020-12-01/credential.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/credential.json b/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/credential.json index 8dfe4801ea2b..23e4772992d2 100644 --- a/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/credential.json +++ b/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/credential.json @@ -31,7 +31,7 @@ "tags": [ "credentials" ], - "operationId": "Credential_ListByWorkspace", + "operationId": "Credentials_ListByWorkspace", "x-ms-examples": { "Credentials_ListByWorkspace": { "$ref": "./examples/Credentials_ListByWorkspace.json" @@ -67,7 +67,7 @@ "tags": [ "credentials" ], - "operationId": "Credential_CreateOrUpdate", + "operationId": "Credentials_CreateOrUpdate", "x-ms-examples": { "Credentials_Create": { "$ref": "./examples/Credentials_Create.json" From 102a9c1d801acad9c0e5053c64ae6253325547e8 Mon Sep 17 00:00:00 2001 From: Jingshu Pan Date: Thu, 26 Oct 2023 11:47:35 +0800 Subject: [PATCH 3/3] Support ParquetReadSettings In ADF And Synapse --- .../2018-06-01/entityTypes/Pipeline.json | 19 +++++++++++++++++++ .../2020-12-01/entityTypes/Pipeline.json | 19 +++++++++++++++++++ 2 files changed, 38 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 6b1a78bc2a1a..3780f61183bd 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 @@ -1271,6 +1271,21 @@ } } }, + "ParquetReadSettings": { + "description": "Parquet read settings.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/FormatReadSettings" + } + ], + "properties": { + "compressionProperties": { + "$ref": "#/definitions/CompressionReadSettings", + "description": "Compression settings." + } + } + }, "DelimitedTextReadSettings": { "description": "Delimited text read settings.", "type": "object", @@ -1555,6 +1570,10 @@ "$ref": "#/definitions/StoreReadSettings", "description": "Parquet store settings." }, + "formatSettings": { + "$ref": "#/definitions/ParquetReadSettings", + "description": "Parquet format settings." + }, "additionalColumns": { "type": "object", "description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)." diff --git a/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/Pipeline.json b/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/Pipeline.json index 68c5c3399860..a85de1e88575 100644 --- a/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/Pipeline.json +++ b/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/Pipeline.json @@ -992,6 +992,21 @@ } } }, + "ParquetReadSettings": { + "description": "Parquet read settings.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/FormatReadSettings" + } + ], + "properties": { + "compressionProperties": { + "$ref": "#/definitions/CompressionReadSettings", + "description": "Compression settings." + } + } + }, "DelimitedTextReadSettings": { "description": "Delimited text read settings.", "type": "object", @@ -1262,6 +1277,10 @@ "$ref": "#/definitions/StoreReadSettings", "description": "Parquet store settings." }, + "formatSettings": { + "$ref": "#/definitions/ParquetReadSettings", + "description": "Parquet format settings." + }, "additionalColumns": { "type": "object", "description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)."