Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
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
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 @@ -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
17 changes: 17 additions & 0 deletions lib/services/datafactoryManagement/lib/models/factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@ class Factory extends models['Resource'] {
* @member {date} [createTime] Time the factory was created in ISO8601
* format.
* @member {string} [version] Version of the factory.
* @member {object} [vstsConfiguration] VSTS repo information of the factory.
* @member {string} [vstsConfiguration.accountName] VSTS account name.
* @member {string} [vstsConfiguration.projectName] VSTS project name.
* @member {string} [vstsConfiguration.repositoryName] VSTS repository name.
* @member {string} [vstsConfiguration.collaborationBranch] VSTS
* collaboration branch.
* @member {string} [vstsConfiguration.rootFolder] VSTS root folder.
* @member {string} [vstsConfiguration.lastCommitId] VSTS last commit id.
* @member {string} [vstsConfiguration.tenantId] VSTS tenant id.
*/
constructor() {
super();
Expand Down Expand Up @@ -135,6 +144,14 @@ class Factory extends models['Resource'] {
type: {
name: 'String'
}
},
vstsConfiguration: {
required: false,
serializedName: 'properties.vstsConfiguration',
type: {
name: 'Composite',
className: 'FactoryVSTSConfiguration'
}
}
}
}
Expand Down
79 changes: 79 additions & 0 deletions lib/services/datafactoryManagement/lib/models/factoryRepoUpdate.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* 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.
*/

'use strict';

const models = require('./index');

/**
* Factory's VSTS repo information.
*
*/
class FactoryRepoUpdate {
/**
* Create a FactoryRepoUpdate.
* @member {string} [factoryResourceId] The factory resource id.
* @member {string} [resourceGroupName] The resource group name.
* @member {object} [vstsConfiguration] VSTS repo information of the factory.
* @member {string} [vstsConfiguration.accountName] VSTS account name.
* @member {string} [vstsConfiguration.projectName] VSTS project name.
* @member {string} [vstsConfiguration.repositoryName] VSTS repository name.
* @member {string} [vstsConfiguration.collaborationBranch] VSTS
* collaboration branch.
* @member {string} [vstsConfiguration.rootFolder] VSTS root folder.
* @member {string} [vstsConfiguration.lastCommitId] VSTS last commit id.
* @member {string} [vstsConfiguration.tenantId] VSTS tenant id.
*/
constructor() {
}

/**
* Defines the metadata of FactoryRepoUpdate
*
* @returns {object} metadata of FactoryRepoUpdate
*
*/
mapper() {
return {
required: false,
serializedName: 'FactoryRepoUpdate',
type: {
name: 'Composite',
className: 'FactoryRepoUpdate',
modelProperties: {
factoryResourceId: {
required: false,
serializedName: 'factoryResourceId',
type: {
name: 'String'
}
},
resourceGroupName: {
required: false,
serializedName: 'resourceGroupName',
type: {
name: 'String'
}
},
vstsConfiguration: {
required: false,
serializedName: 'vstsConfiguration',
type: {
name: 'Composite',
className: 'FactoryVSTSConfiguration'
}
}
}
}
};
}
}

module.exports = FactoryRepoUpdate;
Loading