Skip to content

Commit 53b4e0f

Browse files
[AutoPR @azure-arm-containerservice]-generated-from-SDK Generation - JS-6274121 (#38482)
Configurations: 'specification/containerservice/resource-manager/Microsoft.ContainerService/aks/tspconfig.yaml', API Version: 2026-03-01, SDK Release Type: stable, and CommitSHA: '0e3000dfffe6c32c8ed124140dd972dafae67cfa' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=6274121 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. **Release plan link:** [https://apps.powerapps.com/apps/821ab569-ae60-420d-8264-d7b5d5ef734c?release-plan-id=cc8f77e2-544b-f111-bec6-000d3a3b829d](https://apps.powerapps.com/apps/821ab569-ae60-420d-8264-d7b5d5ef734c?release-plan-id=cc8f77e2-544b-f111-bec6-000d3a3b829d) **Submitted by**: fumingzhang@microsoft.com ## Release Plan Details - Release Plan: https://aka.ms/sdk-release-planner?release-plan-id=cc8f77e2-544b-f111-bec6-000d3a3b829d Spec pull request: Azure/azure-rest-api-specs#42502 Spec API version: --------- Co-authored-by: Fuming Zhang <fumingzhang@microsoft.com>
1 parent 0ad1ddd commit 53b4e0f

229 files changed

Lines changed: 673 additions & 663 deletions

File tree

Some content is hidden

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

sdk/containerservice/arm-containerservice/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Release History
22

3+
## 25.2.0 (2026-05-09)
4+
5+
### Features Added
6+
- Added Interface AgentPoolArtifactStreamingProfile
7+
- Interface AgentPool has a new optional parameter artifactStreamingProfile
8+
- Interface ManagedClusterAgentPoolProfile has a new optional parameter artifactStreamingProfile
9+
- Interface ManagedClusterAgentPoolProfileProperties has a new optional parameter artifactStreamingProfile
10+
- Enum KnownOssku has a new value AzureContainerLinux
11+
- Enum KnownVersions has a new value V20260301
12+
313
## 25.1.0 (2026-04-21)
414

515
### Features Added

sdk/containerservice/arm-containerservice/assets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"AssetsRepo": "Azure/azure-sdk-assets",
33
"AssetsRepoPrefixPath": "js",
44
"TagPrefix": "js/containerservice/arm-containerservice",
5-
"Tag": "js/containerservice/arm-containerservice_80826fdd0e"
5+
"Tag": "js/containerservice/arm-containerservice_a9426371d4"
66
}

sdk/containerservice/arm-containerservice/metadata.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"apiVersions": {
3-
"Microsoft.ContainerService": "2026-02-01"
3+
"Microsoft.ContainerService": "2026-03-01"
44
},
5-
"emitterVersion": "0.52.2",
5+
"emitterVersion": "0.52.3",
66
"crossLanguageDefinitions": {
77
"CrossLanguagePackageId": "Microsoft.ContainerService",
88
"CrossLanguageDefinitionId": {
@@ -21,6 +21,7 @@
2121
"@azure/arm-containerservice!AgentPoolSecurityProfile:interface": "Microsoft.ContainerService.AgentPoolSecurityProfile",
2222
"@azure/arm-containerservice!GPUProfile:interface": "Microsoft.ContainerService.GPUProfile",
2323
"@azure/arm-containerservice!AgentPoolGatewayProfile:interface": "Microsoft.ContainerService.AgentPoolGatewayProfile",
24+
"@azure/arm-containerservice!AgentPoolArtifactStreamingProfile:interface": "Microsoft.ContainerService.AgentPoolArtifactStreamingProfile",
2425
"@azure/arm-containerservice!VirtualMachinesProfile:interface": "Microsoft.ContainerService.VirtualMachinesProfile",
2526
"@azure/arm-containerservice!ScaleProfile:interface": "Microsoft.ContainerService.ScaleProfile",
2627
"@azure/arm-containerservice!ManualScaleProfile:interface": "Microsoft.ContainerService.ManualScaleProfile",

sdk/containerservice/arm-containerservice/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure/arm-containerservice",
3-
"version": "25.1.0",
3+
"version": "25.2.0",
44
"description": "A generated SDK for ContainerServiceClient.",
55
"engines": {
66
"node": ">=20.0.0"

sdk/containerservice/arm-containerservice/review/arm-containerservice-models-node.api.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export type AdvancedNetworkPolicies = string;
5656

5757
// @public
5858
export interface AgentPool extends ProxyResource {
59+
artifactStreamingProfile?: AgentPoolArtifactStreamingProfile;
5960
availabilityZones?: string[];
6061
capacityReservationGroupID?: string;
6162
count?: number;
@@ -112,6 +113,11 @@ export interface AgentPool extends ProxyResource {
112113
workloadRuntime?: WorkloadRuntime;
113114
}
114115

116+
// @public
117+
export interface AgentPoolArtifactStreamingProfile {
118+
enabled?: boolean;
119+
}
120+
115121
// @public
116122
export interface AgentPoolAvailableVersions {
117123
agentPoolVersions?: AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem[];
@@ -759,6 +765,7 @@ export enum KnownOSDiskType {
759765

760766
// @public
761767
export enum KnownOssku {
768+
AzureContainerLinux = "AzureContainerLinux",
762769
AzureLinux = "AzureLinux",
763770
AzureLinux3 = "AzureLinux3",
764771
CBLMariner = "CBLMariner",
@@ -910,7 +917,8 @@ export enum KnownUpgradeChannel {
910917
export enum KnownVersions {
911918
V20251001 = "2025-10-01",
912919
V20260101 = "2026-01-01",
913-
V20260201 = "2026-02-01"
920+
V20260201 = "2026-02-01",
921+
V20260301 = "2026-03-01"
914922
}
915923

916924
// @public
@@ -1167,6 +1175,7 @@ export interface ManagedClusterAgentPoolProfile extends ManagedClusterAgentPoolP
11671175

11681176
// @public
11691177
export interface ManagedClusterAgentPoolProfileProperties {
1178+
artifactStreamingProfile?: AgentPoolArtifactStreamingProfile;
11701179
availabilityZones?: string[];
11711180
capacityReservationGroupID?: string;
11721181
count?: number;

sdk/containerservice/arm-containerservice/review/arm-containerservice-node.api.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export type AdvancedNetworkPolicies = string;
6666

6767
// @public
6868
export interface AgentPool extends ProxyResource {
69+
artifactStreamingProfile?: AgentPoolArtifactStreamingProfile;
6970
availabilityZones?: string[];
7071
capacityReservationGroupID?: string;
7172
count?: number;
@@ -122,6 +123,11 @@ export interface AgentPool extends ProxyResource {
122123
workloadRuntime?: WorkloadRuntime;
123124
}
124125

126+
// @public
127+
export interface AgentPoolArtifactStreamingProfile {
128+
enabled?: boolean;
129+
}
130+
125131
// @public
126132
export interface AgentPoolAvailableVersions {
127133
agentPoolVersions?: AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem[];
@@ -887,6 +893,7 @@ export enum KnownOSDiskType {
887893

888894
// @public
889895
export enum KnownOssku {
896+
AzureContainerLinux = "AzureContainerLinux",
890897
AzureLinux = "AzureLinux",
891898
AzureLinux3 = "AzureLinux3",
892899
CBLMariner = "CBLMariner",
@@ -1038,7 +1045,8 @@ export enum KnownUpgradeChannel {
10381045
export enum KnownVersions {
10391046
V20251001 = "2025-10-01",
10401047
V20260101 = "2026-01-01",
1041-
V20260201 = "2026-02-01"
1048+
V20260201 = "2026-02-01",
1049+
V20260301 = "2026-03-01"
10421050
}
10431051

10441052
// @public
@@ -1333,6 +1341,7 @@ export interface ManagedClusterAgentPoolProfile extends ManagedClusterAgentPoolP
13331341

13341342
// @public
13351343
export interface ManagedClusterAgentPoolProfileProperties {
1344+
artifactStreamingProfile?: AgentPoolArtifactStreamingProfile;
13361345
availabilityZones?: string[];
13371346
capacityReservationGroupID?: string;
13381347
count?: number;

sdk/containerservice/arm-containerservice/samples-dev/agentPoolsAbortLatestOperationSample.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { DefaultAzureCredential } from "@azure/identity";
88
* This sample demonstrates how to aborts the currently running operation on the agent pool. The Agent Pool will be moved to a Canceling state and eventually to a Canceled state when cancellation finishes. If the operation completes before cancellation can take place, a 409 error code is returned.
99
*
1010
* @summary aborts the currently running operation on the agent pool. The Agent Pool will be moved to a Canceling state and eventually to a Canceled state when cancellation finishes. If the operation completes before cancellation can take place, a 409 error code is returned.
11-
* x-ms-original-file: 2026-02-01/AgentPoolsAbortOperation.json
11+
* x-ms-original-file: 2026-03-01/AgentPoolsAbortOperation.json
1212
*/
1313
async function abortOperationOnAgentPool(): Promise<void> {
1414
const credential = new DefaultAzureCredential();

sdk/containerservice/arm-containerservice/samples-dev/agentPoolsCreateOrUpdateSample.ts

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { DefaultAzureCredential } from "@azure/identity";
88
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
99
*
1010
* @summary creates or updates an agent pool in the specified managed cluster.
11-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_CRG.json
11+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_CRG.json
1212
*/
1313
async function createAgentPoolWithCapacityReservationGroup(): Promise<void> {
1414
const credential = new DefaultAzureCredential();
@@ -29,7 +29,7 @@ async function createAgentPoolWithCapacityReservationGroup(): Promise<void> {
2929
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
3030
*
3131
* @summary creates or updates an agent pool in the specified managed cluster.
32-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_CustomNodeConfig.json
32+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_CustomNodeConfig.json
3333
*/
3434
async function createAgentPoolWithKubeletConfigAndLinuxOSConfig(): Promise<void> {
3535
const credential = new DefaultAzureCredential();
@@ -69,7 +69,7 @@ async function createAgentPoolWithKubeletConfigAndLinuxOSConfig(): Promise<void>
6969
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
7070
*
7171
* @summary creates or updates an agent pool in the specified managed cluster.
72-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_DedicatedHostGroup.json
72+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_DedicatedHostGroup.json
7373
*/
7474
async function createAgentPoolWithDedicatedHostGroup(): Promise<void> {
7575
const credential = new DefaultAzureCredential();
@@ -90,7 +90,7 @@ async function createAgentPoolWithDedicatedHostGroup(): Promise<void> {
9090
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
9191
*
9292
* @summary creates or updates an agent pool in the specified managed cluster.
93-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_EnableEncryptionAtHost.json
93+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_EnableEncryptionAtHost.json
9494
*/
9595
async function createAgentPoolWithEncryptionAtHostEnabled(): Promise<void> {
9696
const credential = new DefaultAzureCredential();
@@ -110,7 +110,7 @@ async function createAgentPoolWithEncryptionAtHostEnabled(): Promise<void> {
110110
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
111111
*
112112
* @summary creates or updates an agent pool in the specified managed cluster.
113-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_EnableFIPS.json
113+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_EnableFIPS.json
114114
*/
115115
async function createAgentPoolWithFipsEnabledOS(): Promise<void> {
116116
const credential = new DefaultAzureCredential();
@@ -130,7 +130,7 @@ async function createAgentPoolWithFipsEnabledOS(): Promise<void> {
130130
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
131131
*
132132
* @summary creates or updates an agent pool in the specified managed cluster.
133-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_EnableUltraSSD.json
133+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_EnableUltraSSD.json
134134
*/
135135
async function createAgentPoolWithUltraSSDEnabled(): Promise<void> {
136136
const credential = new DefaultAzureCredential();
@@ -150,7 +150,7 @@ async function createAgentPoolWithUltraSSDEnabled(): Promise<void> {
150150
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
151151
*
152152
* @summary creates or updates an agent pool in the specified managed cluster.
153-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_Ephemeral.json
153+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_Ephemeral.json
154154
*/
155155
async function createAgentPoolWithEphemeralOSDisk(): Promise<void> {
156156
const credential = new DefaultAzureCredential();
@@ -171,7 +171,7 @@ async function createAgentPoolWithEphemeralOSDisk(): Promise<void> {
171171
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
172172
*
173173
* @summary creates or updates an agent pool in the specified managed cluster.
174-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_GPUMIG.json
174+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_GPUMIG.json
175175
*/
176176
async function createAgentPoolWithGpumig(): Promise<void> {
177177
const credential = new DefaultAzureCredential();
@@ -212,7 +212,7 @@ async function createAgentPoolWithGpumig(): Promise<void> {
212212
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
213213
*
214214
* @summary creates or updates an agent pool in the specified managed cluster.
215-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_MessageOfTheDay.json
215+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_MessageOfTheDay.json
216216
*/
217217
async function createAgentPoolWithMessageOfTheDay(): Promise<void> {
218218
const credential = new DefaultAzureCredential();
@@ -234,7 +234,7 @@ async function createAgentPoolWithMessageOfTheDay(): Promise<void> {
234234
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
235235
*
236236
* @summary creates or updates an agent pool in the specified managed cluster.
237-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_OSSKU.json
237+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_OSSKU.json
238238
*/
239239
async function createAgentPoolWithOssku(): Promise<void> {
240240
const credential = new DefaultAzureCredential();
@@ -275,7 +275,7 @@ async function createAgentPoolWithOssku(): Promise<void> {
275275
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
276276
*
277277
* @summary creates or updates an agent pool in the specified managed cluster.
278-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_PPG.json
278+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_PPG.json
279279
*/
280280
async function createAgentPoolWithPPG(): Promise<void> {
281281
const credential = new DefaultAzureCredential();
@@ -296,7 +296,7 @@ async function createAgentPoolWithPPG(): Promise<void> {
296296
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
297297
*
298298
* @summary creates or updates an agent pool in the specified managed cluster.
299-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_Snapshot.json
299+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_Snapshot.json
300300
*/
301301
async function createAgentPoolUsingAnAgentPoolSnapshot(): Promise<void> {
302302
const credential = new DefaultAzureCredential();
@@ -320,7 +320,7 @@ async function createAgentPoolUsingAnAgentPoolSnapshot(): Promise<void> {
320320
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
321321
*
322322
* @summary creates or updates an agent pool in the specified managed cluster.
323-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_Spot.json
323+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_Spot.json
324324
*/
325325
async function createSpotAgentPool(): Promise<void> {
326326
const credential = new DefaultAzureCredential();
@@ -344,7 +344,7 @@ async function createSpotAgentPool(): Promise<void> {
344344
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
345345
*
346346
* @summary creates or updates an agent pool in the specified managed cluster.
347-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_TypeVirtualMachines.json
347+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_TypeVirtualMachines.json
348348
*/
349349
async function createAgentPoolWithVirtualMachinesPoolType(): Promise<void> {
350350
const credential = new DefaultAzureCredential();
@@ -373,7 +373,7 @@ async function createAgentPoolWithVirtualMachinesPoolType(): Promise<void> {
373373
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
374374
*
375375
* @summary creates or updates an agent pool in the specified managed cluster.
376-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_Update.json
376+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_Update.json
377377
*/
378378
async function createOrUpdateAgentPool(): Promise<void> {
379379
const credential = new DefaultAzureCredential();
@@ -398,7 +398,7 @@ async function createOrUpdateAgentPool(): Promise<void> {
398398
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
399399
*
400400
* @summary creates or updates an agent pool in the specified managed cluster.
401-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_WasmWasi.json
401+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_WasmWasi.json
402402
*/
403403
async function createAgentPoolWithKrustletAndTheWasiRuntime(): Promise<void> {
404404
const credential = new DefaultAzureCredential();
@@ -420,7 +420,7 @@ async function createAgentPoolWithKrustletAndTheWasiRuntime(): Promise<void> {
420420
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
421421
*
422422
* @summary creates or updates an agent pool in the specified managed cluster.
423-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_WindowsDisableOutboundNAT.json
423+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_WindowsDisableOutboundNAT.json
424424
*/
425425
async function createWindowsAgentPoolWithDisablingOutboundNAT(): Promise<void> {
426426
const credential = new DefaultAzureCredential();
@@ -441,7 +441,7 @@ async function createWindowsAgentPoolWithDisablingOutboundNAT(): Promise<void> {
441441
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
442442
*
443443
* @summary creates or updates an agent pool in the specified managed cluster.
444-
* x-ms-original-file: 2026-02-01/AgentPoolsCreate_WindowsOSSKU.json
444+
* x-ms-original-file: 2026-03-01/AgentPoolsCreate_WindowsOSSKU.json
445445
*/
446446
async function createAgentPoolWithWindowsOssku(): Promise<void> {
447447
const credential = new DefaultAzureCredential();
@@ -461,7 +461,7 @@ async function createAgentPoolWithWindowsOssku(): Promise<void> {
461461
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
462462
*
463463
* @summary creates or updates an agent pool in the specified managed cluster.
464-
* x-ms-original-file: 2026-02-01/AgentPools_Start.json
464+
* x-ms-original-file: 2026-03-01/AgentPools_Start.json
465465
*/
466466
async function startAgentPool(): Promise<void> {
467467
const credential = new DefaultAzureCredential();
@@ -477,7 +477,7 @@ async function startAgentPool(): Promise<void> {
477477
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
478478
*
479479
* @summary creates or updates an agent pool in the specified managed cluster.
480-
* x-ms-original-file: 2026-02-01/AgentPools_Stop.json
480+
* x-ms-original-file: 2026-03-01/AgentPools_Stop.json
481481
*/
482482
async function stopAgentPool(): Promise<void> {
483483
const credential = new DefaultAzureCredential();
@@ -493,7 +493,7 @@ async function stopAgentPool(): Promise<void> {
493493
* This sample demonstrates how to creates or updates an agent pool in the specified managed cluster.
494494
*
495495
* @summary creates or updates an agent pool in the specified managed cluster.
496-
* x-ms-original-file: 2026-02-01/AgentPools_Update.json
496+
* x-ms-original-file: 2026-03-01/AgentPools_Update.json
497497
*/
498498
async function updateAgentPool(): Promise<void> {
499499
const credential = new DefaultAzureCredential();

sdk/containerservice/arm-containerservice/samples-dev/agentPoolsDeleteMachinesSample.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { DefaultAzureCredential } from "@azure/identity";
88
* This sample demonstrates how to deletes specific machines in an agent pool.
99
*
1010
* @summary deletes specific machines in an agent pool.
11-
* x-ms-original-file: 2026-02-01/AgentPoolsDeleteMachines.json
11+
* x-ms-original-file: 2026-03-01/AgentPoolsDeleteMachines.json
1212
*/
1313
async function deleteSpecificMachinesInAnAgentPool(): Promise<void> {
1414
const credential = new DefaultAzureCredential();

sdk/containerservice/arm-containerservice/samples-dev/agentPoolsDeleteSample.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { DefaultAzureCredential } from "@azure/identity";
88
* This sample demonstrates how to deletes an agent pool in the specified managed cluster.
99
*
1010
* @summary deletes an agent pool in the specified managed cluster.
11-
* x-ms-original-file: 2026-02-01/AgentPoolsDelete.json
11+
* x-ms-original-file: 2026-03-01/AgentPoolsDelete.json
1212
*/
1313
async function deleteAgentPool(): Promise<void> {
1414
const credential = new DefaultAzureCredential();

0 commit comments

Comments
 (0)