Skip to content

Commit b69e9e4

Browse files
authored
[DataFactory] Polish and prepare for new beta release (Azure#37958)
1 parent 953aaf1 commit b69e9e4

File tree

669 files changed

+8308
-7644
lines changed

Some content is hidden

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

669 files changed

+8308
-7644
lines changed

sdk/datafactory/Azure.ResourceManager.DataFactory/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
# Release History
22

3-
## 1.0.0-beta.3 (Unreleased)
3+
## 1.0.0-beta.3 (2023-08-02)
44

55
### Features Added
66

77
- Supported the new `DataFactoryElement<T>` expression type property.
8+
- Upgraded API version.
89

910
### Other Changes
1011

11-
- Upgraded API version.
12+
- Upgraded Azure.Core to 1.34.0.
13+
- Upgraded Azure.ResourceManager to 1.7.0.
1214

1315
## 1.0.0-beta.2 (2022-08-29)
1416

sdk/datafactory/Azure.ResourceManager.DataFactory/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Code samples for using the management library for .NET can be found in the follo
5151
#### Assign `DataFactoryElement` with different literal types
5252
- int
5353
```C# Snippet:Readme_DataFactoryElementInt
54-
var policy = new ActivityPolicy
54+
var policy = new PipelineActivityPolicy
5555
{
5656
Retry = DataFactoryElement<int>.FromLiteral(1),
5757
};
@@ -82,7 +82,7 @@ Dictionary<string, string> DictionaryValue = new()
8282
};
8383
var activity = new AzureMLExecutePipelineActivity("name")
8484
{
85-
MlPipelineParameters = DataFactoryElement<IDictionary<string, string>?>.FromLiteral(DictionaryValue),
85+
MLPipelineParameters = DataFactoryElement<IDictionary<string, string>?>.FromLiteral(DictionaryValue),
8686
};
8787
```
8888

sdk/datafactory/Azure.ResourceManager.DataFactory/api/Azure.ResourceManager.DataFactory.netstandard2.0.cs

Lines changed: 882 additions & 709 deletions
Large diffs are not rendered by default.

sdk/datafactory/Azure.ResourceManager.DataFactory/samples/Generated/Samples/Sample_DataFactoryChangeDataCaptureCollection.cs

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

sdk/datafactory/Azure.ResourceManager.DataFactory/samples/Generated/Samples/Sample_DataFactoryChangeDataCaptureResource.cs

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

sdk/datafactory/Azure.ResourceManager.DataFactory/samples/Generated/Samples/Sample_DataFactoryDataFlowCollection.cs

Lines changed: 2 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)