You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Feature/mgmt track2 storage2 (Azure#23468)
* generate code and add storage account test
* add blob container test cases an record the test
* modify azure manager version and regenerate code
* regenerate code and add test cases
* regenerate code and add queue, table test cases
* regenerate code using remote spec and rerun tests
* add Properties and change Helpers position
* Add support for 'files' configuration (Azure#23327)
* add and change some test cases
* add some storage account test cases
* regenerate code using autorest c# v3.0.0 beta.20210825.1
* add some storage account test cases
* modify some test cases
* regenerate code using autorest c# v3.0.0-beta20210825.2
* update api
* generate code using autorest c# v3.0.0-beta.20210826.2
* update api and README.md
* update changelog
* change README.md file
* change README.md
* bump storage version
* modify samples' typos
* modify samples and update snippets
* regenerate using autorest c# 3.0.0-beta.20210830.1
* modify createResourceGroup method due to ResourceManager's version change
* update snippets
* add storage account test case
* add one blob container test case
* change mgmt storage version
* fix compile errors in eventhub and network; modify typos in storage csproj file
* fix merge conflicts
* ignore storage account list key test
* remove records that are not used
* update with prepare release
Co-authored-by: m-nash <[email protected]>
Copy file name to clipboardExpand all lines: sdk/eventhub/Azure.ResourceManager.EventHubs/tests/SessionRecords/ScenarioTests/EventCreateGetUpdateDelete.json
Copy file name to clipboardExpand all lines: sdk/eventhub/Azure.ResourceManager.EventHubs/tests/SessionRecords/ScenarioTests/EventCreateGetUpdateDeleteAsync.json
//return (await ArmClient.DefaultSubscription.GetGenericResources().CreateOrUpdateAsync(storageAccountId, new GenericResourceData(TestEnvironment.Location)
Copy file name to clipboardExpand all lines: sdk/storage/Azure.ResourceManager.Storage/CHANGELOG.md
+15-27Lines changed: 15 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,6 @@
1
1
# Release History
2
2
3
-
## 1.0.0-preview.3 (Unreleased)
4
-
5
-
6
-
## 1.0.0-preview.2 (2020-09-23)
7
-
8
-
- Accept header added to all requests.
9
-
- Collections are now always initialized and collection properties are readonly by default.
10
-
11
-
## 1.0.0-preview.1
3
+
## 1.0.0-beta.1 (2021-09-01)
12
4
13
5
This package follows the [Azure SDK Design Guidelines for .NET](https://azure.github.io/azure-sdk/dotnet_introduction.html) which provide a number of core capabilities that are shared amongst all Azure SDKs, including the intuitive Azure Identity library, an HTTP Pipeline with custom policies, error-handling, distributed tracing, and much more.
14
6
@@ -24,8 +16,6 @@ This is a Public Preview version, so expect incompatible changes in subsequent r
24
16
25
17
> NOTE: For more information about unified authentication, please refer to [Azure Identity documentation for .NET](https://docs.microsoft.com//dotnet/api/overview/azure/identity-readme?view=azure-dotnet)
26
18
27
-
### Migration from Previous Version of Azure Management SDK
28
-
29
19
#### Package Name
30
20
The package name has been changed from `Microsoft.Azure.Management.Storage` to `Azure.ResourceManager.Storage`
31
21
@@ -58,24 +48,22 @@ storageManagementClient.StorageAccounts.Create(resourceGroupName, accountName, p
More information and different authentication approaches using Azure Identity can be found in [this document](https://docs.microsoft.com/dotnet/api/overview/azure/identity-readme?view=azure-dotnet).
18
24
19
25
### Authenticate the Client
20
26
21
-
To create an authenticated client and start interacting with Azure resources, please see the [quickstart guide here](https://github.com/Azure/azure-sdk-for-net/blob/main/doc/mgmt_preview_quickstart.md)
27
+
The default option to create an authenticated client is to use `DefaultAzureCredential`. Since all management APIs go through the same endpoint, in order to interact with resources, only one top-level `ArmClient` has to be created.
22
28
23
-
## Key concepts
29
+
To authenticate to Azure and create an `ArmClient`, do the following:
24
30
25
-
Key concepts of the Azure .NET SDK can be found [here](https://azure.github.io/azure-sdk/dotnet_introduction.html)
Additional documentation for the `Azure.Identity.DefaultAzureCredential` class can be found in [this document](https://docs.microsoft.com/dotnet/api/azure.identity.defaultazurecredential).
28
39
29
-
Documentation is available to help you learn how to use this package
Key concepts of the Azure .NET SDK can be found [here](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/resourcemanager/Azure.ResourceManager/README.md#key-concepts)
34
43
35
44
## Examples
36
45
37
-
Code samples for using the management library for .NET can be found in the following locations
For more detailed examples, take a look at [samples](https://github.com/Azure/azure-sdk-for-net/tree/feature/mgmt-track2-storage/sdk/storage/Azure.ResourceManager.Storage/samples) we have available.
- If you find a bug or have a suggestion, file an issue via [GitHub issues](https://github.com/Azure/azure-sdk-for-net/issues) and make sure you add the "Preview" label to the issue.
or ask new ones on Stack Overflow using azure and .net tags.
135
+
or ask new ones on StackOverflow using azure and .NET tags.
136
+
- If having trouble with authentication, go to [DefaultAzureCredential documentation](https://docs.microsoft.com/dotnet/api/azure.identity.defaultazurecredential?view=azure-dotnet)
47
137
48
138
49
139
## Next steps
50
140
51
-
For more information on Azure SDK, please refer to [this website](https://azure.github.io/azure-sdk/)
0 commit comments