Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR datafactory/resource-manager] [Azure Data Factory] Change Ssis activity property type to support expression #857

Closed
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
32 changes: 13 additions & 19 deletions packages/@azure/arm-datafactory/lib/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12966,9 +12966,10 @@ export interface SSISExecutionParameter {
*/
export interface SSISPackageLocation {
/**
* @member {string} packagePath The SSIS package path.
* @member {any} packagePath The SSIS package path. Type: string (or
* Expression with resultType string).
*/
packagePath: string;
packagePath: any;
}

/**
Expand Down Expand Up @@ -13012,20 +13013,21 @@ export interface ExecuteSSISPackageActivity {
*/
packageLocation: SSISPackageLocation;
/**
* @member {SSISExecutionRuntime} [runtime] Specifies the runtime to execute
* SSIS package. Possible values include: 'x64', 'x86'
* @member {any} [runtime] Specifies the runtime to execute SSIS package. The
* value should be "x86" or "x64". Type: string (or Expression with
* resultType string).
*/
runtime?: SSISExecutionRuntime;
runtime?: any;
/**
* @member {string} [loggingLevel] The logging level of SSIS package
* execution.
* @member {any} [loggingLevel] The logging level of SSIS package execution.
* Type: string (or Expression with resultType string).
*/
loggingLevel?: string;
loggingLevel?: any;
/**
* @member {string} [environmentPath] The environment path to execute the
* SSIS package.
* @member {any} [environmentPath] The environment path to execute the SSIS
* package. Type: string (or Expression with resultType string).
*/
environmentPath?: string;
environmentPath?: any;
/**
* @member {IntegrationRuntimeReference} connectVia The integration runtime
* reference.
Expand Down Expand Up @@ -16484,14 +16486,6 @@ export type StoredProcedureParameterType = 'String' | 'Int' | 'Decimal' | 'Guid'
*/
export type SalesforceSourceReadBehavior = 'Query' | 'QueryAll';

/**
* Defines values for SSISExecutionRuntime.
* Possible values include: 'x64', 'x86'
* @readonly
* @enum {string}
*/
export type SSISExecutionRuntime = 'x64' | 'x86';

/**
* Defines values for HDInsightActivityDebugInfoOption.
* Possible values include: 'None', 'Always', 'Failure'
Expand Down
8 changes: 4 additions & 4 deletions packages/@azure/arm-datafactory/lib/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11490,7 +11490,7 @@ export const SSISPackageLocation: msRest.CompositeMapper = {
required: true,
serializedName: "packagePath",
type: {
name: "String"
name: "Object"
}
}
}
Expand All @@ -11517,19 +11517,19 @@ export const ExecuteSSISPackageActivity: msRest.CompositeMapper = {
runtime: {
serializedName: "typeProperties.runtime",
type: {
name: "String"
name: "Object"
}
},
loggingLevel: {
serializedName: "typeProperties.loggingLevel",
type: {
name: "String"
name: "Object"
}
},
environmentPath: {
serializedName: "typeProperties.environmentPath",
type: {
name: "String"
name: "Object"
}
},
connectVia: {
Expand Down