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 @@ -215,6 +215,13 @@
"items": {
"$ref": "#/definitions/CustomSetupBase"
}
},
"packageStores": {
"description": "Package stores for the SSIS Integration Runtime.",
"type": "array",
"items": {
"$ref": "#/definitions/PackageStore"
}
}
},
"additionalProperties": {
Expand Down Expand Up @@ -290,6 +297,24 @@
}
}
},
"PackageStore": {
"description": "Package store for the SSIS integration runtime.",
"type": "object",
"properties": {
"name": {
"description": "The name of the package store",
"type": "string"
},
"packageStoreLinkedService": {
"description": "The package store linked service reference.",
"$ref": "#/definitions/EntityReference"
}
},
"required": [
"name",
"packageStoreLinkedService"
]
},
"CustomSetupBase": {
"description": "The base definition of the custom setup.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4525,7 +4525,8 @@
"enum": [
"SSISDB",
"File",
"InlinePackage"
"InlinePackage",
"PackageStore"
],
"x-ms-enum": {
"name": "SsisPackageLocationType",
Expand Down Expand Up @@ -4555,6 +4556,10 @@
"description": "The configuration file of the package execution. Type: string (or Expression with resultType string).",
"type": "object"
},
"configurationAccessCredential": {
"description": "The configuration file access credential.",
"$ref": "#/definitions/SSISAccessCredential"
},
"packageName": {
"description": "The package name.",
"type": "string"
Expand Down