Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
c36aa5b
Generated from 247c6a22105cd7c58a189359cf973edcb0ff05bd (#560)
AutorestCI Nov 26, 2018
35b6d06
Generated from daf7fe30a7e5857636a834d880f9b6345b41bfac (#585)
AutorestCI Nov 27, 2018
ad6684c
[AutoPR datafactory/resource-manager] Refactor delete activity payloa…
AutorestCI Dec 6, 2018
fa27834
[AutoPR datafactory/resource-manager] Add support for HDIinsight clus…
AutorestCI Dec 6, 2018
3632f64
[AutoPR datafactory/resource-manager] Adding refresh and get Integrat…
AutorestCI Dec 11, 2018
400236b
Generated from 948350f5d28ef4686eaa2a4ffead98655f0262cb (#850)
AutorestCI Dec 17, 2018
520827d
[AutoPR datafactory/resource-manager] [Azure Data Factory] Change Ssi…
AutorestCI Jan 3, 2019
0f6b392
[AutoPR datafactory/resource-manager] [Datafactory] Add Webhook Activ…
AutorestCI Jan 10, 2019
bcdadd5
Generated from af8bffa10fefa97dffc4d50f127481f09e74174e (#927)
AutorestCI Jan 14, 2019
2e50ec9
[AutoPR datafactory/resource-manager] [DataFactory]Support schema pro…
AutorestCI Jan 15, 2019
d8d5df8
Generated from 795e21a260c01ba1f6be0fd1699dc0cbe5150346 (#934)
AutorestCI Jan 15, 2019
2e39022
[AutoPR datafactory/resource-manager] Add exposure control APIs accor…
AutorestCI Jan 16, 2019
9b0c10b
[AutoPR datafactory/resource-manager] Fix ssis execution credential …
AutorestCI Jan 16, 2019
42381e8
Generated from f33ee24e7884fc7cdd79dfa4276779dfffcb660e (#946)
AutorestCI Jan 18, 2019
3cf7cee
[AutoPR datafactory/resource-manager] [Datafactory] Add Azure Functio…
AutorestCI Jan 18, 2019
3f82688
Merge branch 'master' into restapi_auto_datafactory/resource-manager
kpajdzik Jan 18, 2019
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
2 changes: 1 addition & 1 deletion packages/@azure/arm-datafactory/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 Microsoft
Copyright (c) 2019 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
Expand Down
53 changes: 17 additions & 36 deletions packages/@azure/arm-datafactory/README.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,24 @@
## Azure DataFactoryManagementClient SDK for JavaScript

# Azure DataFactoryManagementClient SDK for JavaScript
This package contains an isomorphic SDK for DataFactoryManagementClient.

### Currently supported environments

## Currently supported environments
- Node.js version 6.x.x or higher
- Browser JavaScript

### How to Install

## How to Install
```
npm install @azure/arm-datafactory
```

### How to use

#### nodejs - Authentication, client creation and list operations as an example written in TypeScript.

##### Install @azure/ms-rest-nodeauth

```
npm install @azure/ms-rest-nodeauth
```
## How to use

##### Sample code
### nodejs - Authentication, client creation and list operations as an example written in TypeScript.

```ts
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 * as msRest from "ms-rest-js";
import * as msRestAzure from "ms-rest-azure-js";
import * as msRestNodeAuth from "ms-rest-nodeauth";
import { DataFactoryManagementClient, DataFactoryManagementModels, DataFactoryManagementMappers } from "@azure/arm-datafactory";
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];

Expand All @@ -43,16 +33,7 @@ msRestNodeAuth.interactiveLogin().then((creds) => {
});
```

#### browser - Authentication, client creation and list operations as an example written in JavaScript.

##### Install @azure/ms-rest-browserauth

```
npm install @azure/ms-rest-browserauth
```

##### Sample code

### browser - Authentication, client creation and list operations as an example written in JavaScript.
See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to Azure in the browser.

- index.html
Expand All @@ -61,11 +42,11 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to
<html lang="en">
<head>
<title>@azure/arm-datafactory sample</title>
<script src="node_modules/@azure/ms-rest-js/dist/msRest.browser.js"></script>
<script src="node_modules/@azure/ms-rest-azure-js/dist/msRestAzure.js"></script>
<script src="node_modules/@azure/ms-rest-browserauth/dist/msAuth.js"></script>
<script src="node_modules/ms-rest-js/dist/msRest.browser.js"></script>
<script src="node_modules/ms-rest-azure-js/dist/msRestAzure.js"></script>
<script src="node_modules/ms-rest-browserauth/dist/msAuth.js"></script>
<script src="node_modules/@azure/arm-datafactory/dist/arm-datafactory.js"></script>
<script type="text/javascript">
<script>
const subscriptionId = "<Subscription_Id>";
const authManager = new msAuth.AuthManager({
clientId: "<client id for your Azure AD app>",
Expand All @@ -87,10 +68,10 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to
});
</script>
</head>
<body></body>
<body>
</body>
</html>
```

## Related projects

- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)
# Related projects
- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* regenerated.
*/

import * as msRest from "@azure/ms-rest-js";
import * as msRest from "ms-rest-js";
import * as Models from "./models";
import * as Mappers from "./models/mappers";
import * as operations from "./operations";
Expand All @@ -19,7 +19,9 @@ class DataFactoryManagementClient extends DataFactoryManagementClientContext {
// Operation groups
operations: operations.Operations;
factories: operations.Factories;
exposureControl: operations.ExposureControl;
integrationRuntimes: operations.IntegrationRuntimes;
integrationRuntimeObjectMetadata: operations.IntegrationRuntimeObjectMetadata;
integrationRuntimeNodes: operations.IntegrationRuntimeNodes;
linkedServices: operations.LinkedServices;
datasets: operations.Datasets;
Expand All @@ -40,7 +42,9 @@ class DataFactoryManagementClient extends DataFactoryManagementClientContext {
super(credentials, subscriptionId, options);
this.operations = new operations.Operations(this);
this.factories = new operations.Factories(this);
this.exposureControl = new operations.ExposureControl(this);
this.integrationRuntimes = new operations.IntegrationRuntimes(this);
this.integrationRuntimeObjectMetadata = new operations.IntegrationRuntimeObjectMetadata(this);
this.integrationRuntimeNodes = new operations.IntegrationRuntimeNodes(this);
this.linkedServices = new operations.LinkedServices(this);
this.datasets = new operations.Datasets(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
*/

import * as Models from "./models";
import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";
import * as msRest from "ms-rest-js";
import * as msRestAzure from "ms-rest-azure-js";

const packageName = "@azure/arm-datafactory";
const packageVersion = "0.1.0";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ export {
RetryPolicy,
DependencyReference,
MultiplePipelineTrigger,
ResponsysLinkedService,
AzureFunctionLinkedService,
SecretBase,
ResponsysLinkedService,
AzureDatabricksLinkedService,
AzureDataLakeAnalyticsLinkedService,
HDInsightOnDemandLinkedService,
Expand Down Expand Up @@ -210,6 +211,7 @@ export {
AvroFormat,
JsonFormat,
TextFormat,
AzureFunctionActivity,
DatabricksSparkPythonActivity,
DatabricksSparkJarActivity,
DatabricksNotebookActivity,
Expand All @@ -224,12 +226,14 @@ export {
LookupActivity,
CopySource,
DeleteActivity,
LogStorageSettings,
SqlServerStoredProcedureActivity,
StoredProcedureParameter,
CustomActivity,
CustomActivityReferenceObject,
ExecuteSSISPackageActivity,
SSISPackageLocation,
SSISExecutionCredential,
SSISExecutionParameter,
SSISPropertyOverride,
HDInsightSparkActivity,
Expand All @@ -246,6 +250,7 @@ export {
SetVariableActivity,
FilterActivity,
Expression,
ValidationActivity,
UntilActivity,
WaitActivity,
ForEachActivity,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
* 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.
*/

export {
discriminators,
ExposureControlRequest,
ExposureControlResponse,
CloudError
} from "../models/mappers";

Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ export {
FactoryUpdateParameters,
GitHubAccessTokenRequest,
GitHubAccessTokenResponse,
UserAccessPolicy,
AccessPolicyResponse,
SubResource,
IntegrationRuntimeResource,
IntegrationRuntime,
Expand Down Expand Up @@ -50,8 +52,9 @@ export {
RetryPolicy,
DependencyReference,
MultiplePipelineTrigger,
ResponsysLinkedService,
AzureFunctionLinkedService,
SecretBase,
ResponsysLinkedService,
AzureDatabricksLinkedService,
AzureDataLakeAnalyticsLinkedService,
HDInsightOnDemandLinkedService,
Expand Down Expand Up @@ -214,6 +217,7 @@ export {
AvroFormat,
JsonFormat,
TextFormat,
AzureFunctionActivity,
DatabricksSparkPythonActivity,
DatabricksSparkJarActivity,
DatabricksNotebookActivity,
Expand All @@ -228,12 +232,14 @@ export {
LookupActivity,
CopySource,
DeleteActivity,
LogStorageSettings,
SqlServerStoredProcedureActivity,
StoredProcedureParameter,
CustomActivity,
CustomActivityReferenceObject,
ExecuteSSISPackageActivity,
SSISPackageLocation,
SSISExecutionCredential,
SSISExecutionParameter,
SSISPropertyOverride,
HDInsightSparkActivity,
Expand All @@ -250,6 +256,7 @@ export {
SetVariableActivity,
FilterActivity,
Expression,
ValidationActivity,
UntilActivity,
WaitActivity,
ForEachActivity,
Expand Down
Loading