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
Generate .NET SDK Base for 2025-02-01 API version (Azure#49320)
* Generate .NET SDK Base for 2025-02-01 API version
* update all tests to use the 2025-02-01 API version
* Updating Custom code
* update tests
* fixing ci test
* fixing ci test
* update API
* fixing ci test
* update Changelog.md
* add back the missing APIs through customization
* rerun Export-API.ps1
* fixing dotnet build
* update csproj version to match with changelog.md
* rerun dotnet build /t:GenerateCode
* Add new cluster manager tests recording
* L2 and L3 network Scenario test
* Add cluster test recordings
* CSN and trunked network Scenario test
* RackSku and Racks tests updated for 2025-02-01 api version
* updated recording for storageAppliance
* updated bmm tests
* update virtualmachine test
* Update with redaction script
* update asset for virtualMachines recording
* update recording for volume tests
* Add test for kubernetes cluster, kubernetes cluster feature, and agent pool
* bmm key set tests
* ClusterMetricsConfiguration tests recording updated for Api version 2025-02-01
* Restore updated AgentPool, KubernetesCluster, and KubernetesClusterFeature recordings
* Restore Volumes recording
* Restore bmm recording
* Re-record k8s cluster feature tests
* updated recordings for virtual machine console
* Re-record bmmkeyset test
* Fix sanitization + redaction
* updated bmcKeySet test
* rerecord bmcKeySet tests
* rerecord bmcKeySet + update test
---------
Co-authored-by: Mike Pham <[email protected]>
Co-authored-by: Anna Pankiewicz <[email protected]>
Co-authored-by: linquanlyu <[email protected]>
Co-authored-by: priya shet <[email protected]>
Co-authored-by: Jonathan Malcomb <[email protected]>
Co-authored-by: vicky <[email protected]>
Copy file name to clipboardExpand all lines: sdk/networkcloud/Azure.ResourceManager.NetworkCloud/CHANGELOG.md
+2-7Lines changed: 2 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,9 @@
1
1
# Release History
2
2
3
-
## 1.2.0-beta.2 (Unreleased)
3
+
## 1.2.0 (Unreleased)
4
4
5
5
### Features Added
6
-
7
-
### Breaking Changes
8
-
9
-
### Bugs Fixed
10
-
11
-
### Other Changes
6
+
- Upgraded api-version tag from 'package-2024-07-01' to 'package-2025-02-01'. Tag detail available at https://github.com/Azure/azure-rest-api-specs/blob/08973141b0d31a7e75d4dc43a5224a1814a0994f/specification/networkcloud/resource-manager/readme.md.
Copy file name to clipboardExpand all lines: sdk/networkcloud/Azure.ResourceManager.NetworkCloud/api/Azure.ResourceManager.NetworkCloud.netstandard2.0.cs
// Copyright (c) Microsoft Corporation. All rights reserved.
2
+
// Licensed under the MIT License.
3
+
4
+
#nullable disable
5
+
6
+
usingSystem;
7
+
usingSystem.Collections;
8
+
usingSystem.Collections.Generic;
9
+
usingSystem.Globalization;
10
+
usingSystem.Threading;
11
+
usingSystem.Threading.Tasks;
12
+
usingAutorest.CSharp.Core;
13
+
usingAzure.Core;
14
+
usingAzure.Core.Pipeline;
15
+
16
+
namespaceAzure.ResourceManager.NetworkCloud
17
+
{
18
+
/// <summary>
19
+
/// A class representing a collection of <see cref="NetworkCloudAgentPoolResource"/> and their operations.
20
+
/// Each <see cref="NetworkCloudAgentPoolResource"/> in the collection will belong to the same instance of <see cref="NetworkCloudKubernetesClusterResource"/>.
21
+
/// To get a <see cref="NetworkCloudAgentPoolCollection"/> instance call the GetNetworkCloudAgentPools method from an instance of <see cref="NetworkCloudKubernetesClusterResource"/>.
/// <param name="waitUntil"> <see cref="WaitUntil.Completed"/> if the method should wait to return until the long-running operation has completed on the service; <see cref="WaitUntil.Started"/> if it should return after starting the operation. For more information on long-running operations, please see <see href="https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/samples/LongRunningOperations.md"> Azure.Core Long-Running Operation samples</see>. </param>
47
+
/// <param name="agentPoolName"> The name of the Kubernetes cluster agent pool. </param>
48
+
/// <param name="data"> The request body. </param>
49
+
/// <param name="cancellationToken"> The cancellation token to use. </param>
50
+
/// <exception cref="ArgumentException"> <paramref name="agentPoolName"/> is an empty string, and was expected to be non-empty. </exception>
51
+
/// <exception cref="ArgumentNullException"> <paramref name="agentPoolName"/> or <paramref name="data"/> is null. </exception>
/// <param name="waitUntil"> <see cref="WaitUntil.Completed"/> if the method should wait to return until the long-running operation has completed on the service; <see cref="WaitUntil.Started"/> if it should return after starting the operation. For more information on long-running operations, please see <see href="https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/samples/LongRunningOperations.md"> Azure.Core Long-Running Operation samples</see>. </param>
79
+
/// <param name="agentPoolName"> The name of the Kubernetes cluster agent pool. </param>
80
+
/// <param name="data"> The request body. </param>
81
+
/// <param name="cancellationToken"> The cancellation token to use. </param>
82
+
/// <exception cref="ArgumentException"> <paramref name="agentPoolName"/> is an empty string, and was expected to be non-empty. </exception>
83
+
/// <exception cref="ArgumentNullException"> <paramref name="agentPoolName"/> or <paramref name="data"/> is null. </exception>
0 commit comments