SSISPackageLocation Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SSISPackageLocation() |
Initializes a new instance of the SSISPackageLocation class. |
SSISPackageLocation(Object, String, SecretBase, SSISAccessCredential, Object, SSISAccessCredential, String, Object, String, IList<SSISChildPackage>) |
Initializes a new instance of the SSISPackageLocation class. |
SSISPackageLocation()
Initializes a new instance of the SSISPackageLocation class.
public SSISPackageLocation ();
Public Sub New ()
Applies to
SSISPackageLocation(Object, String, SecretBase, SSISAccessCredential, Object, SSISAccessCredential, String, Object, String, IList<SSISChildPackage>)
Initializes a new instance of the SSISPackageLocation class.
public SSISPackageLocation (object packagePath = default, string type = default, Microsoft.Azure.Management.DataFactory.Models.SecretBase packagePassword = default, Microsoft.Azure.Management.DataFactory.Models.SSISAccessCredential accessCredential = default, object configurationPath = default, Microsoft.Azure.Management.DataFactory.Models.SSISAccessCredential configurationAccessCredential = default, string packageName = default, object packageContent = default, string packageLastModifiedDate = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.SSISChildPackage> childPackages = default);
new Microsoft.Azure.Management.DataFactory.Models.SSISPackageLocation : obj * string * Microsoft.Azure.Management.DataFactory.Models.SecretBase * Microsoft.Azure.Management.DataFactory.Models.SSISAccessCredential * obj * Microsoft.Azure.Management.DataFactory.Models.SSISAccessCredential * string * obj * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.SSISChildPackage> -> Microsoft.Azure.Management.DataFactory.Models.SSISPackageLocation
Public Sub New (Optional packagePath As Object = Nothing, Optional type As String = Nothing, Optional packagePassword As SecretBase = Nothing, Optional accessCredential As SSISAccessCredential = Nothing, Optional configurationPath As Object = Nothing, Optional configurationAccessCredential As SSISAccessCredential = Nothing, Optional packageName As String = Nothing, Optional packageContent As Object = Nothing, Optional packageLastModifiedDate As String = Nothing, Optional childPackages As IList(Of SSISChildPackage) = Nothing)
Parameters
- packagePath
- Object
The SSIS package path. Type: string (or Expression with resultType string).
- type
- String
The type of SSIS package location. Possible values include: 'SSISDB', 'File', 'InlinePackage', 'PackageStore'
- packagePassword
- SecretBase
Password of the package.
- accessCredential
- SSISAccessCredential
The package access credential.
- configurationPath
- Object
The configuration file of the package execution. Type: string (or Expression with resultType string).
- configurationAccessCredential
- SSISAccessCredential
The configuration file access credential.
- packageName
- String
The package name.
- packageContent
- Object
The embedded package content. Type: string (or Expression with resultType string).
- packageLastModifiedDate
- String
The embedded package last modified date.
- childPackages
- IList<SSISChildPackage>
The embedded child package list.
Applies to
Azure SDK for .NET