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] Fix for issue 14555 #4440

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
89 changes: 77 additions & 12 deletions schemas/2017-09-01-preview/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -3318,8 +3318,18 @@
"type": "object",
"properties": {
"level": {
"type": "object",
"properties": {},
"oneOf": [
{
"type": "string",
"enum": [
"Optimal",
"Fastest"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The Deflate compression level."
},
"type": {
Expand All @@ -3338,8 +3348,18 @@
"type": "object",
"properties": {
"level": {
"type": "object",
"properties": {},
"oneOf": [
{
"type": "string",
"enum": [
"Optimal",
"Fastest"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The GZip compression level."
},
"type": {
Expand Down Expand Up @@ -3434,8 +3454,18 @@
"type": "object",
"properties": {
"level": {
"type": "object",
"properties": {},
"oneOf": [
{
"type": "string",
"enum": [
"Optimal",
"Fastest"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The ZipDeflate compression level."
},
"type": {
Expand Down Expand Up @@ -3700,13 +3730,33 @@
"type": "object",
"properties": {
"authenticationType": {
"type": "object",
"properties": {},
"oneOf": [
{
"type": "string",
"enum": [
"Office365",
"Ifd"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. Type: string (or Expression with resultType string)."
},
"deploymentType": {
"type": "object",
"properties": {},
"oneOf": [
{
"type": "string",
"enum": [
"Online",
"OnPremisesWithIfd"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string)."
},
"encryptedCredential": {
Expand Down Expand Up @@ -11237,8 +11287,23 @@
"type": "object",
"properties": {
"type": {
"type": "object",
"properties": {},
"oneOf": [
{
"type": "string",
"enum": [
"String",
"Int",
"Int64",
"Decimal",
"Guid",
"Boolean",
"Date"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Stored procedure parameter type."
},
"value": {
Expand Down
Loading