Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Closed
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
42 changes: 21 additions & 21 deletions lib/services/datafactoryManagement/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
The MIT License (MIT)

Copyright (c) 2018 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
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
The MIT License (MIT)
Copyright (c) 2018 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
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
75 changes: 40 additions & 35 deletions lib/services/datafactoryManagement/README.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,40 @@
# Microsoft Azure SDK for Node.js - DataFactoryManagementClient
This project provides a Node.js package for accessing Azure. Right now it supports:
- **Node.js version 6.x.x or higher**

## Features


## How to Install

```bash
npm install azure-arm-datafactory
```

## How to use

### Authentication, client creation and list operations as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
const DataFactoryManagementClient = require("azure-arm-datafactory");
msRestAzure.interactiveLogin().then((creds) => {
const subscriptionId = "<Subscription_Id>";
const client = new DataFactoryManagementClient(creds, subscriptionId);
return client.operations.list().then((result) => {
console.log("The result is:");
console.log(result);
});
}).catch((err) => {
console.log('An error ocurred:');
console.dir(err, {depth: null, colors: true});
});

## Related projects

- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node)
---
uid: azure-arm-datafactory
summary: *content

---
# Microsoft Azure SDK for Node.js - DataFactoryManagementClient
This project provides a Node.js package for accessing Azure. Right now it supports:
- **Node.js version 6.x.x or higher**

## Features


## How to Install

```bash
npm install azure-arm-datafactory
```

## How to use

### Authentication, client creation and list operations as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
const DataFactoryManagementClient = require("azure-arm-datafactory");
msRestAzure.interactiveLogin().then((creds) => {
const subscriptionId = "<Subscription_Id>";
const client = new DataFactoryManagementClient(creds, subscriptionId);
return client.operations.list().then((result) => {
console.log("The result is:");
console.log(result);
});
}).catch((err) => {
console.log('An error occurred:');
console.dir(err, {depth: null, colors: true});
});

## Related projects

- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node)
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ class Db2LinkedService extends models['LinkedService'] {
* Expression with resultType string).
* @member {object} database Database name for connection. Type: string (or
* Expression with resultType string).
* @member {object} [schema] Schema name for connection. Type: string (or
* Expression with resultType string).
* @member {string} [authenticationType] AuthenticationType to be used for
* connection. Possible values include: 'Basic'
* @member {object} [username] Username for authentication. Type: string (or
Expand Down Expand Up @@ -125,13 +123,6 @@ class Db2LinkedService extends models['LinkedService'] {
name: 'Object'
}
},
schema: {
required: false,
serializedName: 'typeProperties.schema',
type: {
name: 'Object'
}
},
authenticationType: {
required: false,
serializedName: 'typeProperties.authenticationType',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,23 @@ class ExecuteSSISPackageActivity extends models['ExecutionActivity'] {
* Possible values include: 'x64', 'x86'
* @member {string} [loggingLevel] The logging level of SSIS package
* execution.
* @member {string} [environmentPath] The environment path to execution the
* @member {string} [environmentPath] The environment path to execute the
* SSIS package.
* @member {object} connectVia The integration runtime reference.
* @member {string} [connectVia.referenceName] Reference integration runtime
* name.
* @member {object} [connectVia.parameters] Arguments for integration
* runtime.
* @member {object} [projectParameters] The project level parameters to
* execute the SSIS package.
* @member {object} [packageParameters] The package level parameters to
* execute the SSIS package.
* @member {object} [projectConnectionManagers] The project level connection
* managers to execute the SSIS package.
* @member {object} [packageConnectionManagers] The package level connection
* managers to execute the SSIS package.
* @member {object} [propertyOverrides] The property overrides to execute the
* SSIS package.
*/
constructor() {
super();
Expand Down Expand Up @@ -171,6 +181,95 @@ class ExecuteSSISPackageActivity extends models['ExecutionActivity'] {
name: 'Composite',
className: 'IntegrationRuntimeReference'
}
},
projectParameters: {
required: false,
serializedName: 'typeProperties.projectParameters',
type: {
name: 'Dictionary',
value: {
required: false,
serializedName: 'SSISExecutionParameterElementType',
type: {
name: 'Composite',
className: 'SSISExecutionParameter'
}
}
}
},
packageParameters: {
required: false,
serializedName: 'typeProperties.packageParameters',
type: {
name: 'Dictionary',
value: {
required: false,
serializedName: 'SSISExecutionParameterElementType',
type: {
name: 'Composite',
className: 'SSISExecutionParameter'
}
}
}
},
projectConnectionManagers: {
required: false,
serializedName: 'typeProperties.projectConnectionManagers',
type: {
name: 'Dictionary',
value: {
required: false,
serializedName: 'ObjectElementType',
type: {
name: 'Dictionary',
value: {
required: false,
serializedName: 'SSISExecutionParameterElementType',
type: {
name: 'Composite',
className: 'SSISExecutionParameter'
}
}
}
}
}
},
packageConnectionManagers: {
required: false,
serializedName: 'typeProperties.packageConnectionManagers',
type: {
name: 'Dictionary',
value: {
required: false,
serializedName: 'ObjectElementType',
type: {
name: 'Dictionary',
value: {
required: false,
serializedName: 'SSISExecutionParameterElementType',
type: {
name: 'Composite',
className: 'SSISExecutionParameter'
}
}
}
}
}
},
propertyOverrides: {
required: false,
serializedName: 'typeProperties.propertyOverrides',
type: {
name: 'Dictionary',
value: {
required: false,
serializedName: 'SSISPropertyOverrideElementType',
type: {
name: 'Composite',
className: 'SSISPropertyOverride'
}
}
}
}
}
}
Expand Down
Loading