Package version:

Interface SsisPackageLocation

SSIS package location.

interface SsisPackageLocation {
    accessCredential?: SsisAccessCredential;
    childPackages?: SsisChildPackage[];
    configurationAccessCredential?: SsisAccessCredential;
    configurationPath?: any;
    packageContent?: any;
    packageLastModifiedDate?: string;
    packageName?: string;
    packagePassword?: SecretBaseUnion;
    packagePath?: any;
    type?: string;
}

Properties

accessCredential?: SsisAccessCredential

The package access credential.

childPackages?: SsisChildPackage[]

The embedded child package list.

configurationAccessCredential?: SsisAccessCredential

The configuration file access credential.

configurationPath?: any

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

packageContent?: any

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

packageLastModifiedDate?: string

The embedded package last modified date.

packageName?: string

The package name.

packagePassword?: SecretBaseUnion

Password of the package.

packagePath?: any

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

type?: string

The type of SSIS package location.