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
2 changes: 1 addition & 1 deletion packages/@azure/arm-datafactory/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 Microsoft
Copyright (c) 2019 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
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