Skip to content

Commit

Permalink
SSIS File System Support
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoQian-MS committed Apr 10, 2019
1 parent 67d6bf5 commit a1b23a2
Show file tree
Hide file tree
Showing 2 changed files with 202 additions and 0 deletions.
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

0 comments on commit a1b23a2

Please sign in to comment.