SSISPackageLocation Class

SSIS package location.

Inheritance
SSISPackageLocation

Constructor

SSISPackageLocation(*, package_path: Optional[Any] = None, type: Optional[Union[str, _models.SsisPackageLocationType]] = None, package_password: Optional[_models.SecretBase] = None, access_credential: Optional[_models.SSISAccessCredential] = None, configuration_path: Optional[Any] = None, configuration_access_credential: Optional[_models.SSISAccessCredential] = None, package_name: Optional[str] = None, package_content: Optional[Any] = None, package_last_modified_date: Optional[str] = None, child_packages: Optional[List[_models.SSISChildPackage]] = None, **kwargs)

Variables

package_path
any

The SSIS package path. Type: string (or Expression with resultType string).

type
str or SsisPackageLocationType

The type of SSIS package location. Known values are: "SSISDB", "File", "InlinePackage", "PackageStore".

package_password
SecretBase

Password of the package.

access_credential
SSISAccessCredential

The package access credential.

configuration_path
any

The configuration file of the package execution. Type: string (or Expression with resultType string).

configuration_access_credential
SSISAccessCredential

The configuration file access credential.

package_name
str

The package name.

package_content
any

The embedded package content. Type: string (or Expression with resultType string).

package_last_modified_date
str

The embedded package last modified date.

child_packages
list[SSISChildPackage]

The embedded child package list.