-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from d49776e18492f84c9ef7c0fe7659ffc5f533f842
Improved description message according to review comments
- Loading branch information
SDK Automation
committed
Jul 26, 2019
1 parent
ad35404
commit f91e65a
Showing
38 changed files
with
23,686 additions
and
16,015 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,37 @@ | ||
import rollup from "rollup"; | ||
import nodeResolve from "rollup-plugin-node-resolve"; | ||
import sourcemaps from "rollup-plugin-sourcemaps"; | ||
|
||
/** | ||
* @type {import('rollup').RollupFileOptions} | ||
* @type {rollup.RollupFileOptions} | ||
*/ | ||
const config = { | ||
input: './esm/dataFactoryManagementClient.js', | ||
external: ["@azure/ms-rest-js", "@azure/ms-rest-azure-js"], | ||
input: "./esm/dataFactoryManagementClient.js", | ||
external: [ | ||
"@azure/core-http", | ||
"@azure/core-arm" | ||
], | ||
output: { | ||
file: "./dist/arm-datafactory.js", | ||
format: "umd", | ||
name: "Azure.ArmDatafactory", | ||
sourcemap: true, | ||
globals: { | ||
"@azure/ms-rest-js": "msRest", | ||
"@azure/ms-rest-azure-js": "msRestAzure" | ||
"@azure/core-http": "coreHttp", | ||
"@azure/core-arm": "coreArm" | ||
}, | ||
banner: `/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
* Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
*/` | ||
}, | ||
plugins: [ | ||
nodeResolve({ module: true }) | ||
nodeResolve({ module: true }), | ||
sourcemaps() | ||
] | ||
}; | ||
|
||
export default config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 6 additions & 9 deletions
15
sdk/datafactory/arm-datafactory/src/models/activityRunsMappers.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
* Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
*/ | ||
|
||
export { | ||
discriminators, | ||
ActivityRun, | ||
ActivityRunsQueryResponse, | ||
CloudError, | ||
RunFilterParameters, | ||
RunQueryFilter, | ||
RunQueryOrderBy, | ||
ActivityRunsQueryResponse, | ||
ActivityRun, | ||
CloudError | ||
RunQueryOrderBy | ||
} from "../models/mappers"; | ||
|
Oops, something went wrong.