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 @azure/arm-datafactory] [DataFactory]SapBwCube and Sybase Dataset #4482

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
4 changes: 2 additions & 2 deletions sdk/datafactory/arm-datafactory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ npm install @azure/ms-rest-nodeauth
##### Sample code

```typescript
import * as coreHttp from "@azure/core-http";
import * as coreArm from "@azure/core-arm";
import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
import { DataFactoryManagementClient, DataFactoryManagementModels, DataFactoryManagementMappers } from "@azure/arm-datafactory";
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
Expand Down
6 changes: 3 additions & 3 deletions sdk/datafactory/arm-datafactory/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "DataFactoryManagementClient Library with typescript type definitions for node.js and browser.",
"version": "5.3.0",
"dependencies": {
"@azure/core-arm": "^1.0.0-preview.1",
"@azure/core-http": "^1.0.0-preview.1",
"tslib": "^1.9.3"
"@azure/ms-rest-azure-js": "^2.0.0",
"@azure/ms-rest-js": "^2.0.3",
"tslib": "^1.10.0"
},
"keywords": [
"node",
Expand Down
4 changes: 2 additions & 2 deletions sdk/datafactory/arm-datafactory/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import sourcemaps from "rollup-plugin-sourcemaps";
const config = {
input: "./esm/dataFactoryManagementClient.js",
external: [
"@azure/core-http",
"@azure/core-arm"
"@azure/ms-rest-js",
"@azure/ms-rest-azure-js"
],
output: {
file: "./dist/arm-datafactory.js",
Expand Down
3 changes: 3 additions & 0 deletions sdk/datafactory/arm-datafactory/src/models/datasetsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,9 @@ export {
SalesforceServiceCloudSource,
SalesforceSink,
SalesforceSource,
SapBwCubeDataset,
SapBWLinkedService,
SapBwSource,
SapCloudForCustomerLinkedService,
SapCloudForCustomerResourceDataset,
SapCloudForCustomerSink,
Expand Down Expand Up @@ -414,6 +416,7 @@ export {
SubResource,
SybaseLinkedService,
SybaseSource,
SybaseTableDataset,
TeradataLinkedService,
TeradataPartitionSettings,
TeradataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,9 @@ export {
SalesforceServiceCloudSource,
SalesforceSink,
SalesforceSource,
SapBwCubeDataset,
SapBWLinkedService,
SapBwSource,
SapCloudForCustomerLinkedService,
SapCloudForCustomerResourceDataset,
SapCloudForCustomerSink,
Expand Down Expand Up @@ -419,6 +421,7 @@ export {
SubResource,
SybaseLinkedService,
SybaseSource,
SybaseTableDataset,
TeradataLinkedService,
TeradataPartitionSettings,
TeradataSource,
Expand Down
232 changes: 214 additions & 18 deletions sdk/datafactory/arm-datafactory/src/models/index.ts

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,9 @@ export {
SalesforceServiceCloudSource,
SalesforceSink,
SalesforceSource,
SapBwCubeDataset,
SapBWLinkedService,
SapBwSource,
SapCloudForCustomerLinkedService,
SapCloudForCustomerResourceDataset,
SapCloudForCustomerSink,
Expand Down Expand Up @@ -430,6 +432,7 @@ export {
SubResource,
SybaseLinkedService,
SybaseSource,
SybaseTableDataset,
TeradataLinkedService,
TeradataPartitionSettings,
TeradataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,9 @@ export {
SalesforceServiceCloudSource,
SalesforceSink,
SalesforceSource,
SapBwCubeDataset,
SapBWLinkedService,
SapBwSource,
SapCloudForCustomerLinkedService,
SapCloudForCustomerResourceDataset,
SapCloudForCustomerSink,
Expand Down Expand Up @@ -414,6 +416,7 @@ export {
SubResource,
SybaseLinkedService,
SybaseSource,
SybaseTableDataset,
TeradataLinkedService,
TeradataPartitionSettings,
TeradataSource,
Expand Down
Loading