Skip to content

Commit ab2d688

Browse files
authored
arm-datafactory-release (Azure#13890)
1 parent aeaa3ee commit ab2d688

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+857
-222
lines changed

sdk/datafactory/arm-datafactory/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2020 Microsoft
3+
Copyright (c) 2021 Microsoft
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

sdk/datafactory/arm-datafactory/README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ npm install @azure/arm-datafactory
1515

1616
### How to use
1717

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

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

@@ -26,11 +26,10 @@ npm install @azure/ms-rest-nodeauth@"^3.0.0"
2626

2727
##### Sample code
2828

29+
While the below sample uses the interactive login, other authentication options can be found in the [README.md file of @azure/ms-rest-nodeauth](https://www.npmjs.com/package/@azure/ms-rest-nodeauth) package
2930
```typescript
30-
import * as msRest from "@azure/ms-rest-js";
31-
import * as msRestAzure from "@azure/ms-rest-azure-js";
32-
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
33-
import { DataFactoryManagementClient, DataFactoryManagementModels, DataFactoryManagementMappers } from "@azure/arm-datafactory";
31+
const msRestNodeAuth = require("@azure/ms-rest-nodeauth");
32+
const { DataFactoryManagementClient } = require("@azure/arm-datafactory");
3433
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
3534

3635
msRestNodeAuth.interactiveLogin().then((creds) => {

sdk/datafactory/arm-datafactory/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@azure/arm-datafactory",
33
"author": "Microsoft Corporation",
44
"description": "DataFactoryManagementClient Library with typescript type definitions for node.js and browser.",
5-
"version": "7.4.0",
5+
"version": "7.5.0",
66
"dependencies": {
77
"@azure/ms-rest-azure-js": "^2.0.1",
88
"@azure/ms-rest-js": "^2.0.4",

sdk/datafactory/arm-datafactory/rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const config = {
2121
"@azure/ms-rest-azure-js": "msRestAzure"
2222
},
2323
banner: `/*
24-
* Copyright (c) Microsoft Corporation. All rights reserved.
25-
* Licensed under the MIT License. See License.txt in the project root for license information.
24+
* Copyright (c) Microsoft Corporation.
25+
* Licensed under the MIT License.
2626
*
2727
* Code generated by Microsoft (R) AutoRest Code Generator.
2828
* Changes may cause incorrect behavior and will be lost if the code is regenerated.

sdk/datafactory/arm-datafactory/src/dataFactoryManagementClient.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/*
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for
4-
* license information.
2+
* Copyright (c) Microsoft Corporation.
3+
* Licensed under the MIT License.
54
*
65
* Code generated by Microsoft (R) AutoRest Code Generator.
76
* Changes may cause incorrect behavior and will be lost if the code is

sdk/datafactory/arm-datafactory/src/dataFactoryManagementClientContext.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/*
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for
4-
* license information.
2+
* Copyright (c) Microsoft Corporation.
3+
* Licensed under the MIT License.
54
*
65
* Code generated by Microsoft (R) AutoRest Code Generator.
76
* Changes may cause incorrect behavior and will be lost if the code is
@@ -13,7 +12,7 @@ import * as msRest from "@azure/ms-rest-js";
1312
import * as msRestAzure from "@azure/ms-rest-azure-js";
1413

1514
const packageName = "@azure/arm-datafactory";
16-
const packageVersion = "7.4.0";
15+
const packageVersion = "7.5.0";
1716

1817
export class DataFactoryManagementClientContext extends msRestAzure.AzureServiceClient {
1918
credentials: msRest.ServiceClientCredentials;
@@ -37,7 +36,7 @@ export class DataFactoryManagementClientContext extends msRestAzure.AzureService
3736
if (!options) {
3837
options = {};
3938
}
40-
if(!options.userAgent) {
39+
if (!options.userAgent) {
4140
const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
4241
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
4342
}
@@ -52,10 +51,10 @@ export class DataFactoryManagementClientContext extends msRestAzure.AzureService
5251
this.credentials = credentials;
5352
this.subscriptionId = subscriptionId;
5453

55-
if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
54+
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
5655
this.acceptLanguage = options.acceptLanguage;
5756
}
58-
if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
57+
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
5958
this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
6059
}
6160
}

sdk/datafactory/arm-datafactory/src/models/activityRunsMappers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Copyright (c) Microsoft Corporation.
3+
* Licensed under the MIT License.
44
*
55
* Code generated by Microsoft (R) AutoRest Code Generator.
66
* Changes may cause incorrect behavior and will be lost if the code is regenerated.

sdk/datafactory/arm-datafactory/src/models/dataFlowDebugSessionMappers.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Copyright (c) Microsoft Corporation.
3+
* Licensed under the MIT License.
44
*
55
* Code generated by Microsoft (R) AutoRest Code Generator.
66
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
@@ -179,6 +179,7 @@ export {
179179
MagentoLinkedService,
180180
MagentoObjectDataset,
181181
ManagedIntegrationRuntime,
182+
ManagedVirtualNetworkReference,
182183
MappingDataFlow,
183184
MariaDBLinkedService,
184185
MariaDBTableDataset,

sdk/datafactory/arm-datafactory/src/models/dataFlowsMappers.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Copyright (c) Microsoft Corporation.
3+
* Licensed under the MIT License.
44
*
55
* Code generated by Microsoft (R) AutoRest Code Generator.
66
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
@@ -119,6 +119,7 @@ export {
119119
ChainingTrigger,
120120
CloudError,
121121
CmdkeySetup,
122+
CMKIdentityDefinition,
122123
CommonDataServiceForAppsEntityDataset,
123124
CommonDataServiceForAppsLinkedService,
124125
CommonDataServiceForAppsSink,
@@ -131,6 +132,7 @@ export {
131132
ConnectionStateProperties,
132133
ControlActivity,
133134
CopyActivity,
135+
CopyActivityLogSettings,
134136
CopySink,
135137
CopySource,
136138
CosmosDbLinkedService,
@@ -148,6 +150,7 @@ export {
148150
CustomActivityReferenceObject,
149151
CustomDataset,
150152
CustomDataSourceLinkedService,
153+
CustomEventsTrigger,
151154
CustomSetupBase,
152155
DatabricksNotebookActivity,
153156
DatabricksSparkJarActivity,
@@ -207,6 +210,7 @@ export {
207210
EloquaLinkedService,
208211
EloquaObjectDataset,
209212
EloquaSource,
213+
EncryptionConfiguration,
210214
EntityReference,
211215
EnvironmentVariableSetup,
212216
ExcelDataset,
@@ -310,6 +314,8 @@ export {
310314
LinkedService,
311315
LinkedServiceReference,
312316
LinkedServiceResource,
317+
LogLocationSettings,
318+
LogSettings,
313319
LogStorageSettings,
314320
LookupActivity,
315321
MagentoLinkedService,
@@ -319,6 +325,7 @@ export {
319325
ManagedPrivateEndpoint,
320326
ManagedPrivateEndpointResource,
321327
ManagedVirtualNetwork,
328+
ManagedVirtualNetworkReference,
322329
ManagedVirtualNetworkResource,
323330
MappingDataFlow,
324331
MariaDBLinkedService,

sdk/datafactory/arm-datafactory/src/models/datasetsMappers.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Copyright (c) Microsoft Corporation.
3+
* Licensed under the MIT License.
44
*
55
* Code generated by Microsoft (R) AutoRest Code Generator.
66
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
@@ -119,6 +119,7 @@ export {
119119
ChainingTrigger,
120120
CloudError,
121121
CmdkeySetup,
122+
CMKIdentityDefinition,
122123
CommonDataServiceForAppsEntityDataset,
123124
CommonDataServiceForAppsLinkedService,
124125
CommonDataServiceForAppsSink,
@@ -131,6 +132,7 @@ export {
131132
ConnectionStateProperties,
132133
ControlActivity,
133134
CopyActivity,
135+
CopyActivityLogSettings,
134136
CopySink,
135137
CopySource,
136138
CosmosDbLinkedService,
@@ -148,6 +150,7 @@ export {
148150
CustomActivityReferenceObject,
149151
CustomDataset,
150152
CustomDataSourceLinkedService,
153+
CustomEventsTrigger,
151154
CustomSetupBase,
152155
DatabricksNotebookActivity,
153156
DatabricksSparkJarActivity,
@@ -207,6 +210,7 @@ export {
207210
EloquaLinkedService,
208211
EloquaObjectDataset,
209212
EloquaSource,
213+
EncryptionConfiguration,
210214
EntityReference,
211215
EnvironmentVariableSetup,
212216
ExcelDataset,
@@ -310,6 +314,8 @@ export {
310314
LinkedService,
311315
LinkedServiceReference,
312316
LinkedServiceResource,
317+
LogLocationSettings,
318+
LogSettings,
313319
LogStorageSettings,
314320
LookupActivity,
315321
MagentoLinkedService,
@@ -319,6 +325,7 @@ export {
319325
ManagedPrivateEndpoint,
320326
ManagedPrivateEndpointResource,
321327
ManagedVirtualNetwork,
328+
ManagedVirtualNetworkReference,
322329
ManagedVirtualNetworkResource,
323330
MappingDataFlow,
324331
MariaDBLinkedService,

0 commit comments

Comments
 (0)