-
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 dc157ce83f76b2a88a4ab1173d56ed16a4fdd8ea (#4449)
fix: datafactory model validation Remove header/null body for RESPONSE_SCHEMA_NOT_IN_SPEC errors
- Loading branch information
1 parent
3d1475c
commit e2348a8
Showing
38 changed files
with
26,107 additions
and
16,122 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.