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

SSIS File System Support #5588

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
Original file line number Diff line number Diff line change
Expand Up @@ -2075,6 +2075,10 @@
"additionalProperties": {
"$ref": "#/definitions/SSISPropertyOverride"
}
},
"logLocation": {
"description": "SSIS package execution log location.",
"$ref": "#/definitions/SSISLogLocation"
}
},
"required": [
Expand All @@ -2089,12 +2093,47 @@
"packagePath": {
"description": "The SSIS package path. Type: string (or Expression with resultType string).",
"type": "object"
},
"type": {
"description": "The type of SSIS package location.",
"type": "string",
"enum": [
"SSISDB",
"File"
],
"x-ms-enum": {
"name": "SsisPackageLocationType",
"modelAsString": true
}
},
"typeProperties": {
"x-ms-client-flatten": true,
"description": "SSIS package location properties.",
"$ref": "#/definitions/SSISPackageLocationTypeProperties"
}
},
"required": [
"packagePath"
]
},
"SSISPackageLocationTypeProperties": {
"description": "SSIS package location properties.",
"type": "object",
"properties": {
"packagePassword": {
"$ref": "../datafactory.json#/definitions/SecureString",
"description": "Password of the package."
},
"accessCredential": {
"description": "The package access credential.",
"$ref": "#/definitions/SSISAccessCredential"
},
"configurationPath": {
"description": "The configuration file of the package execution. Type: string (or Expression with resultType string).",
"type": "object"
}
}
},
"SSISConnectionManager": {
"description": "SSIS Connection Manager.",
"type": "object",
Expand Down Expand Up @@ -2155,6 +2194,68 @@
"password"
]
},
"SSISAccessCredential": {
"description": "SSIS access credential.",
"type":"object",
"properties": {
"domain": {
"type": "object",
"description": "Domain for windows authentication."
},
"userName": {
"type": "object",
"description": "UseName for windows authentication."
},
"password": {
"$ref": "../datafactory.json#/definitions/SecureString",
"description": "Password for windows authentication."
}
},
"required": [
"domain",
"userName",
"password"
]
},
"SSISLogLocation": {
"description": "SSIS package execution log location",
"type": "object",
"properties": {
"logPath": {
"description": "The SSIS package execution log path. Type: string (or Expression with resultType string).",
"type": "object"
},
"type": {
"description": "The type of SSIS log location.",
"type": "string",
"enum": [
"File"
],
"x-ms-enum": {
"name": "SsisLogLocationType",
"modelAsString": true
}
},
"typeProperties": {
"x-ms-client-flatten": true,
"description": "SSIS package execution log location properties.",
"$ref": "#/definitions/SSISLogLocationTypeProperties"
}
},
"required": [
"logPath","type","typeProperties"
]
},
"SSISLogLocationTypeProperties": {
"description": "SSIS package execution log location properties.",
"type": "object",
"properties": {
"accessCredential": {
"description": "The package execution log access credential.",
"$ref": "#/definitions/SSISAccessCredential"
}
}
},
"CustomActivity": {
"description": "Custom activity type.",
"x-ms-discriminator-value": "Custom",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2424,6 +2424,10 @@
"additionalProperties": {
"$ref": "#/definitions/SSISPropertyOverride"
}
},
"logLocation": {
"description": "SSIS package execution log location.",
"$ref": "#/definitions/SSISLogLocation"
}
},
"required": [
Expand All @@ -2438,12 +2442,47 @@
"packagePath": {
"description": "The SSIS package path. Type: string (or Expression with resultType string).",
"type": "object"
},
"type": {
"description": "The type of SSIS package location.",
"type": "string",
"enum": [
"SSISDB",
"File"
],
"x-ms-enum": {
"name": "SsisPackageLocationType",
"modelAsString": true
}
},
"typeProperties": {
"x-ms-client-flatten": true,
"description": "SSIS package location properties.",
"$ref": "#/definitions/SSISPackageLocationTypeProperties"
}
},
"required": [
"packagePath"
]
},
"SSISPackageLocationTypeProperties": {
"description": "SSIS package location properties.",
"type": "object",
"properties": {
"packagePassword": {
"$ref": "../datafactory.json#/definitions/SecureString",
"description": "Password of the package."
},
"accessCredential": {
"description": "The package access credential.",
"$ref": "#/definitions/SSISAccessCredential"
},
"configurationPath": {
"description": "The configuration file of the package execution. Type: string (or Expression with resultType string).",
"type": "object"
}
}
},
"SSISConnectionManager": {
"description": "SSIS Connection Manager.",
"type": "object",
Expand Down Expand Up @@ -2504,6 +2543,68 @@
"password"
]
},
"SSISAccessCredential": {
"description": "SSIS access credential.",
"type":"object",
"properties": {
"domain": {
"type": "object",
"description": "Domain for windows authentication."
},
"userName": {
"type": "object",
"description": "UseName for windows authentication."
},
"password": {
"$ref": "../datafactory.json#/definitions/SecureString",
"description": "Password for windows authentication."
}
},
"required": [
"domain",
"userName",
"password"
]
},
"SSISLogLocation": {
"description": "SSIS package execution log location",
"type": "object",
"properties": {
"logPath": {
"description": "The SSIS package execution log path. Type: string (or Expression with resultType string).",
"type": "object"
},
"type": {
"description": "The type of SSIS log location.",
"type": "string",
"enum": [
"File"
],
"x-ms-enum": {
"name": "SsisLogLocationType",
"modelAsString": true
}
},
"typeProperties": {
"x-ms-client-flatten": true,
"description": "SSIS package execution log location properties.",
"$ref": "#/definitions/SSISLogLocationTypeProperties"
}
},
"required": [
"logPath","type","typeProperties"
]
},
"SSISLogLocationTypeProperties": {
"description": "SSIS package execution log location properties.",
"type": "object",
"properties": {
"accessCredential": {
"description": "The package execution log access credential.",
"$ref": "#/definitions/SSISAccessCredential"
}
}
},
"CustomActivity": {
"description": "Custom activity type.",
"x-ms-discriminator-value": "Custom",
Expand Down