Skip to content

Commit 8a27c26

Browse files
authored
[DataFactory]Added new features into 4.19.0 (Azure#21018)
* [DataFactory]Added new features into 4.18.0 * [DataFactory]Added new features into 4.19.0
1 parent 4448d5f commit 8a27c26

21 files changed

+290
-48
lines changed

eng/mgmt/mgmtmetadata/datafactory_resource-manager.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ Commencing code generation
44
Generating CSharp code
55
Executing AutoRest command
66
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/datafactory/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=D:\Projects\azure-sdk-for-net\sdk
7-
2021-04-19 06:02:05 UTC
7+
2021-05-12 01:26:47 UTC
88
Azure-rest-api-specs repository information
99
GitHub fork: Azure
1010
Branch: master
11-
Commit: 2917973fd886553c6277b66d786dc2827d11c386
11+
Commit: 1c03f492f52ebd076626f2dd00af01b25bbfa727
1212
AutoRest information
1313
Requested version: v2
1414
Bootstrapper version: autorest@2.0.4413

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog for the Azure Data Factory V2 .NET SDK
22

3+
## Version 4.19.0
4+
### Feature Additions
5+
- Support sheetIndex in excel and set sheetName from required to optional
6+
- Set filePattern to object type to allow expressions
7+
- Support user-assigned managed identity in SSIS-IR
8+
39
## Version 4.18.0
410
### Feature Additions
511
- Added MongoDB/MongoDBAtlas sink
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
using Microsoft.Rest;
2+
using Microsoft.Rest.Serialization;
3+
using Newtonsoft.Json;
4+
using System.Collections;
5+
using System.Collections.Generic;
6+
using System.Linq;
7+
8+
namespace Microsoft.Azure.Management.DataFactory.Models
9+
{
10+
public partial class ExcelDataset : Dataset
11+
{
12+
/// <summary>
13+
/// Initializes a new instance of the ExcelDataset class.
14+
/// </summary>
15+
/// <param name="linkedServiceName">Linked service reference.</param>
16+
/// <param name="location">The location of the excel storage.</param>
17+
/// <param name="sheetName">The sheet of excel file. Type: string (or
18+
/// Expression with resultType string).</param>
19+
/// <param name="additionalProperties">Unmatched properties from the
20+
/// message are deserialized this collection</param>
21+
/// <param name="description">Dataset description.</param>
22+
/// <param name="structure">Columns that define the structure of the
23+
/// dataset. Type: array (or Expression with resultType array),
24+
/// itemType: DatasetDataElement.</param>
25+
/// <param name="schema">Columns that define the physical type schema
26+
/// of the dataset. Type: array (or Expression with resultType array),
27+
/// itemType: DatasetSchemaDataElement.</param>
28+
/// <param name="parameters">Parameters for dataset.</param>
29+
/// <param name="annotations">List of tags that can be used for
30+
/// describing the Dataset.</param>
31+
/// <param name="folder">The folder that this Dataset is in. If not
32+
/// specified, Dataset will appear at the root level.</param>
33+
/// <param name="range">The partial data of one sheet. Type: string (or
34+
/// Expression with resultType string).</param>
35+
/// <param name="firstRowAsHeader">When used as input, treat the first
36+
/// row of data as headers. When used as output,write the headers into
37+
/// the output as the first row of data. The default value is false.
38+
/// Type: boolean (or Expression with resultType boolean).</param>
39+
/// <param name="compression">The data compression method used for the
40+
/// json dataset.</param>
41+
/// <param name="nullValue">The null value string. Type: string (or
42+
/// Expression with resultType string).</param>
43+
public ExcelDataset(LinkedServiceReference linkedServiceName, DatasetLocation location, object sheetName, IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), string description = default(string), object structure = default(object), object schema = default(object), IDictionary<string, ParameterSpecification> parameters = default(IDictionary<string, ParameterSpecification>), IList<object> annotations = default(IList<object>), DatasetFolder folder = default(DatasetFolder), object range = default(object), object firstRowAsHeader = default(object), DatasetCompression compression = default(DatasetCompression), object nullValue = default(object))
44+
: base(linkedServiceName, additionalProperties, description, structure, schema, parameters, annotations, folder)
45+
{
46+
Location = location;
47+
SheetName = sheetName;
48+
Range = range;
49+
FirstRowAsHeader = firstRowAsHeader;
50+
Compression = compression;
51+
NullValue = nullValue;
52+
CustomInit();
53+
}
54+
}
55+
}

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CommonDataServiceForAppsLinkedService.cs

Lines changed: 7 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CompressionCodec.cs

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/DatasetCompressionLevel.cs

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/DelimitedTextDataset.cs

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/DynamicsCrmLinkedService.cs

Lines changed: 7 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/EntityReference.cs

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)