Azure.ResourceManager_1.4.0
版本发布时间: 2023-02-10 16:18:11
Azure/azure-sdk-for-net最新发布版本:Azure.Provisioning_1.0.0(2024-10-26 07:18:02)
1.4.0 (2023-02-10)
Features Added
- Added
SetApiVersionsFromProfile
method inArmClientOptions
to support setting resource API versions from an Azure Stack Profile.
Bugs Fixed
- Fixed the exception in
GenericResource
operations caused by case-sensitive comparison of resource types between user input and service results.
Other Changes
- Upgraded dependent
Azure.Core
to1.28.0
. - Upgraded resources API version to
2022-09-01
.- The
GetAll
methods ofResourceProviderCollection
,GetTenantResourceProviders
methods ofArmClient
removed thetop
parameter as it's never supported by service. We added back overloaded methods with thetop
parameter, but made it withexpand
parameter both as required. It is compatible with most previous method usages but still breaks a few cases such as (takeGetAll
as an example):- GetAll(10)
- GetAll(top: 10)
- GetAll(top: null)
- GetAll(10, cancellationToken: token)
- GetAll(top: 10, cancellationToken: token)
- GetAll(top: null, cancellationToken: token)
- The
Update
methods ofTagResource
became LRO and added awaitUntil
parameter in the beginning. The old methods without thewaitUntil
parameter is kept with obsolete warnings to keep backward-compatibility.
- The