Skip to content

Commit

Permalink
[AutoPR datafactory/resource-manager] [Azure Data Factory] Change Ssi…
Browse files Browse the repository at this point in the history
…s activity property type to support expression (#878)

* Generated from f9be2a6b0020602b14ff1e64cfb47c38f096fffa

Change type of Ssis actitvity's packagePath, runtime, loggingLevel and
environmentPath from string to object, so that we can use expression for
these properties

* Generated from f9be2a6b0020602b14ff1e64cfb47c38f096fffa

Change type of Ssis actitvity's packagePath, runtime, loggingLevel and
environmentPath from string to object, so that we can use expression for
these properties
  • Loading branch information
AutorestCI authored Jan 3, 2019
1 parent 400236b commit 520827d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 24 deletions.
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

0 comments on commit 520827d

Please sign in to comment.