Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -3070,6 +3070,39 @@
"$ref": "#/definitions/GenericDatasetTypeProperties"
}
}
},
"SnowflakeDataset": {
"x-ms-discriminator-value": "SnowflakeTable",
"description": "The snowflake dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
"typeProperties": {
"description": "Snowflake dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/SnowflakeDatasetTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"SnowflakeDatasetTypeProperties": {
"description": "Snowflake dataset properties.",
"properties": {
"schema": {
"type": "object",
"description": "The schema name of the Snowflake database. Type: string (or Expression with resultType string)."
},
"table": {
"type": "object",
"description": "The table name of the Snowflake database. Type: string (or Expression with resultType string)."
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5692,6 +5692,46 @@
"required": [
"functionAppUrl"
]
},
"SnowflakeLinkedService": {
"x-ms-discriminator-value": "Snowflake",
"description": "Snowflake linked service.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "Snowflake linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/SnowflakeLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"SnowflakeLinkedServiceTypeProperties": {
"description": "Snowflake linked service properties.",
"properties": {
"connectionString": {
"description": "The connection string of snowflake. Type: string, SecureString.",
"type": "object"
},
"password": {
"$ref": "../datafactory.json#/definitions/AzureKeyVaultSecretReference",
"description": "The Azure key vault secret reference of password in connection string."
},
"encryptedCredential": {
"type": "object",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)."
}
},
"required": [
"connectionString"
]
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3060,6 +3060,67 @@
"bucketName"
]
},
"SnowflakeSource": {
"description": "A copy activity snowflake source.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySource"
}
],
"properties": {
"query": {
"type": "object",
"description": "Snowflake Sql query. Type: string (or Expression with resultType string)."
},
"exportSettings": {
"$ref": "#/definitions/SnowflakeExportCopyCommand",
"description": "Snowflake export settings."
}
}
},
"ExportSettings": {
"description": "Export command settings.",
"discriminator": "type",
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The export setting type."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"type"
]
},
"SnowflakeExportCopyCommand": {
"description": "Snowflake export command settings.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/ExportSettings"
}
],
"properties": {
"additionalCopyOptions": {
"type": "object",
"description": "Additional copy options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: \"additionalCopyOptions\": { \"DATE_FORMAT\": \"MM/DD/YYYY\", \"TIME_FORMAT\": \"'HH24:MI:SS.FF'\" }",
"additionalProperties": {
"type": "object"
}
},
"additionalFormatOptions": {
"type": "object",
"description": "Additional format options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: \"additionalFormatOptions\": { \"OVERWRITE\": \"TRUE\", \"MAX_FILE_SIZE\": \"'FALSE'\" }",
"additionalProperties": {
"type": "object"
}
}
}
},
"StoredProcedureParameter": {
"description": "SQL stored procedure parameter.",
"type": "object",
Expand Down Expand Up @@ -3584,6 +3645,67 @@
}
}
},
"SnowflakeSink": {
"description": "A copy activity snowflake sink.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySink"
}
],
"properties": {
"preCopyScript": {
"type": "object",
"description": "SQL pre-copy script. Type: string (or Expression with resultType string)."
},
"importSettings": {
"$ref": "#/definitions/SnowflakeImportCopyCommand",
"description": "Snowflake import settings."
}
}
},
"ImportSettings": {
"description": "Import command settings.",
"discriminator": "type",
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The import setting type."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"type"
]
},
"SnowflakeImportCopyCommand": {
"description": "Snowflake import command settings.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/ImportSettings"
}
],
"properties": {
"additionalCopyOptions": {
"type": "object",
"description": "Additional copy options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: \"additionalCopyOptions\": { \"DATE_FORMAT\": \"MM/DD/YYYY\", \"TIME_FORMAT\": \"'HH24:MI:SS.FF'\" }",
"additionalProperties": {
"type": "object"
}
},
"additionalFormatOptions": {
"type": "object",
"description": "Additional format options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: \"additionalFormatOptions\": { \"FORCE\": \"TRUE\", \"LOAD_UNCERTAIN_FILES\": \"'FALSE'\" }",
"additionalProperties": {
"type": "object"
}
}
}
},
"LogStorageSettings": {
"description": "Log storage settings.",
"type": "object",
Expand Down