Skip to content

Commit a155e32

Browse files
authored
Merge pull request #25471 from yifanz7/mergestorage
[Storage][Do Not Squash] Merge recent chanegs from main to Az.Storage-preview
2 parents 6d9835a + e04b92d commit a155e32

File tree

2,828 files changed

+269900
-145567
lines changed

Some content is hidden

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

2,828 files changed

+269900
-145567
lines changed

.azure-pipelines/security-tools.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ jobs:
5353
outputFormat: sarif
5454
scanFolder: SecurityTmp
5555
suppressionsFile: tools/SecurityTools/CredScanSuppressions.json
56-
5756
- task: PowerShell@2
5857
displayName: Generate a response text file for BinSkim
5958
inputs:
@@ -88,3 +87,19 @@ jobs:
8887
inputs:
8988
artifactName: artifacts
9089
targetPath: artifacts
90+
- task: securedevelopmentteam.vss-secure-development-tools.build-task-publishsecurityanalysislogs.PublishSecurityAnalysisLogs@3
91+
# see https://eng.ms/docs/microsoft-security/microsoft-threat-protection-mtp/cloud-and-enterprise-security-cesec/security-integration/guardian-wiki/sdl-azdo-extension/publish-security-analysis-logs
92+
displayName: 'Publish Security Analysis Logs'
93+
inputs:
94+
ArtifactName: CodeAnalysisLogs
95+
ArtifactType: Container
96+
PublishProcessedResults: false
97+
AllTools: true
98+
- task: securedevelopmentteam.vss-secure-development-tools.build-task-postanalysis.PostAnalysis@2
99+
# see https://eng.ms/docs/microsoft-security/microsoft-threat-protection-mtp/cloud-and-enterprise-security-cesec/security-integration/guardian-wiki/sdl-azdo-extension/secure-development-tools-extension-for-azure-devops#post-analysis-build-break:~:text=To%20introduce%20a%20build%20break
100+
displayName: Analyze Results (may block build)
101+
inputs:
102+
GdnBreakAllTools: false
103+
GdnBreakGdnToolBinSkim: true
104+
GdnBreakGdnToolCredScan: true
105+
GdnBreakGdnToolPoliCheck: true

.azure-pipelines/util/live-test-steps.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,9 @@ jobs:
7070
definition: $(SignPipelineDefinitionId)
7171
buildVersionToDownload: 'latestFromBranch'
7272
branchName: 'refs/heads/internal/release'
73-
artifactName: 'artifacts'
73+
artifactName: $(ArtifactName)
7474
targetPath: $(Pipeline.Workspace)
75+
itemPattern: '**/artifacts/**'
7576

7677
- task: DownloadPipelineArtifact@2
7778
condition: and(succeeded(), ne(variables['skipLatest'], 'true'), eq(variables['GalleryName'], 'Sign'), ne(variables['PipelineBuildId'], ''))
@@ -82,9 +83,9 @@ jobs:
8283
definition: $(SignPipelineDefinitionId)
8384
buildVersionToDownload: 'specific'
8485
pipelineId: $(PipelineBuildId)
85-
artifactName: 'artifacts'
86+
artifactName: $(ArtifactName)
8687
targetPath: $(Pipeline.Workspace)
87-
88+
itemPattern: '**/artifacts/**'
8889
- task: PowerShell@2
8990
condition: and(succeeded(), ne(variables['skipLatest'], 'true'), ne(variables['GalleryName'], 'PSGallery'))
9091
displayName: Copy artifacts to local repository
@@ -93,7 +94,7 @@ jobs:
9394
targetType: inline
9495
script: |
9596
$azPackagesDir = New-Item -Name AzPreviewPackages -Path $(DataLocation) -ItemType Directory -Force
96-
$azPackagesFiles = Join-Path -Path $(Pipeline.Workspace) -ChildPath *.nupkg
97+
$azPackagesFiles = Get-ChildItem -Path "$(Pipeline.Workspace)" -Recurse -Filter "*.nupkg"
9798
Move-Item -Path $azPackagesFiles -Destination $azPackagesDir
9899
Get-ChildItem -LiteralPath $azPackagesDir
99100

.azure-pipelines/util/smoke-test-steps.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
buildVersionToDownload: 'latest'
5555
artifactName: $(ArtifactName)
5656
targetPath: $(Pipeline.Workspace)
57+
itemPattern: '**/artifacts/**'
5758

5859
- task: DownloadPipelineArtifact@2
5960
condition: and(succeeded(), eq(variables['GalleryName'], 'LocalRepo'), ne(variables['PipelineId'], ''))
@@ -66,6 +67,7 @@ jobs:
6667
pipelineId: $(PipelineId)
6768
artifactName: '$(ArtifactName)'
6869
targetPath: '$(Pipeline.Workspace)'
70+
itemPattern: '**/artifacts/**'
6971

7072
- task: PowerShell@2
7173
condition: and(succeeded(), eq(variables['GalleryName'], 'LocalRepo'))
@@ -74,7 +76,8 @@ jobs:
7476
targetType: 'inline'
7577
script: |
7678
New-Item -Path "$(Pipeline.Workspace)" -Name "LocalRepo" -ItemType "directory"
77-
Copy-Item -Path "$(Pipeline.Workspace)\\*.nupkg" -Destination "$(Pipeline.Workspace)\\LocalRepo\\"
79+
$fileList = Get-ChildItem -Path "$(Pipeline.Workspace)" -Recurse -Filter "*.nupkg"
80+
$fileList | ForEach-Object { Copy-Item -Path $_.FullName -Destination "$(Pipeline.Workspace)\LocalRepo\" -Force }
7881
Write-Host "List artifacts..."
7982
Get-ChildItem "$(Pipeline.Workspace)\\LocalRepo\\"
8083

.github/policies/resourceManagement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3263,7 +3263,7 @@ configuration:
32633263
then:
32643264
- mentionUsers:
32653265
mentionees:
3266-
- sunilagarwal
3266+
- gbowerman
32673267
- sr-msft
32683268
- niklarin
32693269
replyTemplate: Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc ${mentionees}.

.github/workflows/pr-labeled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
shell: pwsh
2323
env:
2424
LABEL: ${{ github.event.label.name }}
25-
run: .github/workflows/script/PrLabeled.ps1 -LabelName "$LABEL" -PrUrl $env:PR
25+
run: .github/workflows/script/PrLabeled.ps1 -LabelName $env:LABEL -PrUrl $env:PR

.github/workflows/script/PrLabeled.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ This PR was labeled "Breaking Change Release" because it contains breaking chang
2525
"needs-revision" = @"
2626
This PR was labeled "needs-revision" because it has unresolved review comments or CI failures.
2727
Please resolve all open review comments and make sure all CI checks are green. Refer to our [guide](https://eng.ms/docs/cloud-ai-platform/azure-core/azure-management-and-platforms/control-plane-bburns/azure-cli-tools-azure-cli-powershell-and-terraform/azure-cli-tools/devguide/azps/ci_tsg) to troubleshoot common CI failures.
28+
"@
29+
"codegen-survey" = @"
30+
Thanks for using autorest.powershell to develop your PowerShell module! Would you like to take [a 5-minute survey](https://forms.office.com/r/j6rQuFUqUf?origin=lprLink) to help us improve the tool? Much appreciated :)
2831
"@
2932
}
3033

ChangeLog.md

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,138 @@
1+
## 12.1.0 - July 2024
2+
#### Az.Accounts 3.0.1
3+
* Disable WAM when the customers login with device code flow or username password (ROPC) flow to prevent a potential issue with token cache.
4+
* Fixed [CVE-2024-35255](https://github.com/advisories/GHSA-m5vv-6r4h-3vj9)
5+
* Updated 'Microsoft.Identity.Client.NativeInterop' to fix the WAM pop window issue in elevated mode [#24967]
6+
* Updated the reference of Azure PowerShell Common to 1.3.98-preview.
7+
* Limited promotional message to interactive scenarios only
8+
9+
#### Az.Batch 3.6.2
10+
* Fixed a bug where 'New-AzBatchApplicationPackage' wouldn't work if the application 'AllowUpdates' parameter was set to 'False'.
11+
12+
#### Az.Compute 8.1.0
13+
* Added parameter '-SourceResourceId' to cmdlet 'Add-AzVMDataDisk'.
14+
* Added parameter '-IdentityType' to cmdlet 'Update-AzDiskEncryptionSet'.
15+
* Added 'Invoke-AzSpotPlacementScore' cmdlet, which calls the latest Spot Placement Score API. Set the original 'Invoke-AzSpotPlacementRecommender' as alias to avoid breaking changes.
16+
17+
#### Az.CosmosDB 1.14.4
18+
* Fixed the issue that Azure.Core.AccessToken is used before assigned.
19+
20+
#### Az.Databricks 1.8.0
21+
* Updated the Az Databricks cmdlets to 2024-05-01 api version.
22+
23+
#### Az.DataFactory 1.18.5
24+
* Added UAMI in DynamicsCrm LinkedService
25+
26+
#### Az.DataLakeStore 1.3.2
27+
* Updated signed 3rd party assembly NLog.dll to PSGallery
28+
29+
#### Az.FrontDoor 1.11.1
30+
* Fixed a not converting from string to base in CustomBlockResponseBody bug in updating waf policy
31+
32+
#### Az.Functions 4.1.0
33+
* Upgraded to Microsoft.Web API version 2023-12-01 [#25347]
34+
* Added support for creating function apps on container app [#22736]
35+
36+
#### Az.KeyVault 6.0.1
37+
* Fixed an issue during merging certificate process. [#24323]
38+
39+
#### Az.Maintenance 1.4.2
40+
* Fixed bug where rebootSettings property wasn't updating.
41+
42+
#### Az.Migrate 2.4.0
43+
* Removed 'at lease one NIC needs to be user selected' constrain when creating/updating server replication (protected item)
44+
* Added retries for calls to internal Get commands
45+
46+
#### Az.MySql 1.2.0
47+
* Added cmdlets: 'Get-AzMySqlFlexibleServerAdvancedThreatProtectionSetting' and 'Update-AzMySqlFlexibleServerAdvancedThreatProtectionSetting'
48+
49+
#### Az.Network 7.8.0
50+
* Added new cmdlets to support Save & Commit (AzureFirewallPolicy draft)
51+
- 'New-AzFirewallPolicyDraft'
52+
- 'New-AzFirewallPolicyRuleCollectionGroupDraft'
53+
- 'Get-AzFirewallPolicyDraft'
54+
- 'Get-AzFirewallPolicyRuleCollectionGroupDraft'
55+
- 'Set-AzFirewallPolicyDraft'
56+
- 'Set-AzFirewallPolicyRuleCollectionGroupDraft'
57+
- 'Remove-AzFirewallPolicyDraft'
58+
- 'Remove-AzFirewallPolicyRuleCollectionGroupDraft'
59+
- 'Deploy-AzFirewallPolicy'
60+
* Added 'NoHealthyBackendsBehavior' to 'PSProbe', and updated corresponding cmdlets.
61+
- 'New-AzLoadBalancerProbeConfig'
62+
- 'Add-AzLoadBalancerProbeConfig'
63+
- 'Set-AzLoadBalancerProbeConfig'
64+
* Upgraded API version to '2024-01-01'
65+
* Updated cmdlet to add 'Premium' as a valid value for 'Sku' parameter and 'enableSessionRecording' feature for Bastion resources
66+
- 'New-AzBastion'
67+
- 'Set-AzBastion'
68+
* Updated cmdlet 'Add-AzVirtualNetworkSubnetConfig', 'Set-AzVirtualNetworkSubnetConfig' and 'New-AzVirtualNetworkSubnetConfig' to support Network Identifier for Subnet Service Endpoint.
69+
* Added cmdlet 'Restart-AzNetworkVirtualAppliance' for allowing a restart of Network Virtual Appliance instances from the customer subscription.
70+
* Fixed a bug in 'Update-AzNetworkVirtualApplianceConnection'
71+
* Updated the Azure Firewall and Azure Firewall Policy setter for their respective Private Range properties
72+
- Fixed a bug that prevented using /32 in private ranges on classic Azure Firewalls
73+
- Updated the error message to provide a suggested private range when the supplied range is not correctly masked by the host identifier
74+
- Added a new Allocate function for Azure Firewall that allows allocating customer public ip address to the firewall
75+
- Fixed a bug that caused firewalls and policies to lose their private range property value when using their 'Get' cmdlets
76+
77+
#### Az.Resources 7.2.0
78+
* Fixed 'Set-AzPolicyAssignment' loses description and Display Name [#25362]
79+
* Fixed 'New-AzPolicyAssignment' string ID value handling for parameter '-PolicyDefinition'
80+
* Fixed policy import issue with OP (requires serialization of null values)
81+
* Fixed '-Scope' parameter handling at resource instance level
82+
* Fixed error 'Get-AzPolicySetDefinition'cannot find matched parameter '-Name' [#25334]
83+
* Fixed serialization issue with empty arrays in PolicyParameterObject
84+
* Addressed a rare case where a service principal does not have AppId
85+
* Introduced validation of MG scoped deployment stack during New/Set cmdlet execution.
86+
* Updated Remove/New stack cmdlets with warnings for management groups ActionOnUnmanage and removed DeleteResourcesAndResourceGroups as valid ActionOnUnmanage value.
87+
* Supported get and assign versioned policy definitions and sets
88+
* Fixed syntax incompatible with windows powershell [#24971]
89+
* Fixed bug with 'Get-AzPolicyExemption' requesting 'ParentResourcePath'
90+
* Supported 'ServiceManagementReference' of Entra App
91+
* 'Get-AzADApplication'
92+
* 'New-AzADApplication'
93+
* 'Update-AzADApplication'
94+
* Fixed deployment stack validation error surfacing.
95+
* Fixed default formatting for output objects
96+
* Removed '-InputObject' for
97+
* 'Get-AzPolicyAssignment'
98+
* 'Get-AzPolicyDefinition'
99+
* 'Get-AzPolicyExemption'
100+
* 'Get-AzPolicySetDefinition'
101+
* 'New-AzPolicyAssignment'
102+
* 'New-AzPolicyDefinition'
103+
* 'New-AzPolicySetDefinition'
104+
* Implemented '-Version' and '-ListVersion' parameters on 'Get-AzPolicyDefinition' and 'Get-AzPolicySetDefinition'
105+
106+
#### Az.Sql 5.1.0
107+
* Added cross-subscription support for 'Copy-AzSqlInstanceDatabase', 'Move-AzSqlInstanceDatabase'
108+
* Added new parameter SecondaryType to 'Add-AzSqlDatabaseFromFailoverGroup'
109+
110+
#### Az.SqlVirtualMachine 2.3.0
111+
* Enabled Microsoft entra id on SQL VM.
112+
113+
#### Az.Storage 7.1.0
114+
* Fixed the issue that Azure.Core.AccessToken is used before assigned.
115+
* Supported TLS1_3 when creating and updating a storage account
116+
- 'New-AzStorageAccount'
117+
- 'Set-AzStorageAccount'
118+
* Fixed sync copy blob issue with -AsJob is specified [#25105]
119+
- 'Copy-AzStorageBlob'
120+
* Updated Storage.Management.Sdk to support API version 2023-05-01
121+
* Updated 2 help examples of create storage account cmdlet, with MinimumTlsVersion as TLS1_2.
122+
- 'New-AzStorageAccount'
123+
124+
#### Az.StorageMover 1.4.0
125+
* Added input parameter validation set for UploadLimitWeeklyRecurrenceObject
126+
* Supported Uploaded Limit Schedule
127+
128+
#### Az.Synapse 3.0.9
129+
* Updated Azure.Analytics.Synapse.Artifacts to 1.0.0-preview.20.
130+
* Fixed the issue that Azure.Core.AccessToken is used before assigned.
131+
132+
### Thanks to our community contributors
133+
* Felipe Andrade (@andradf), Use named parameter for appPackageUrl in CreateOrUpdateApplicationTypeVersion (#25113)
134+
* JoshK (@jkonecki42), Update New-AzADGroupOwner.md (#25080)
135+
1136
## 12.0.0 - May 2024
2137
#### General
3138
* Fixed CVE-2024-29992.

documentation/SyntaxChangeLog/SyntaxChangeLog-Az12.md

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,85 @@
1+
## 12.1.0 - July 2024
2+
#### Az.Compute 8.1.0
3+
* Modified cmdlet `Add-AzVMDataDisk`
4+
- Added parameter `-SourceResourceId`
5+
* Modified cmdlet `Update-AzDiskEncryptionSet`
6+
- Added parameter `-IdentityType`
7+
* Removed cmdlet `Invoke-AzSpotPlacementRecommender`
8+
* Added cmdlet `Invoke-AzSpotPlacementScore`
9+
#### Az.Databricks 1.8.0
10+
* Modified cmdlet `New-AzDatabricksWorkspace`
11+
- Added parameters `-EnhancedSecurityMonitoringValue`, `-AutomaticClusterUpdateValue`, `-ComplianceSecurityProfileComplianceStandard`, `-ComplianceSecurityProfileValue`, `-AccessConnectorId`, `-AccessConnectorIdentityType`, `-AccessConnectorUserAssignedIdentityId`, `-DefaultStorageFirewall`
12+
* Modified cmdlet `Remove-AzDatabricksWorkspace`
13+
- Added parameter `-ForceDeletion`
14+
* Modified cmdlet `Update-AzDatabricksWorkspace`
15+
- Added parameters `-EnhancedSecurityMonitoringValue`, `-AutomaticClusterUpdateValue`, `-ComplianceSecurityProfileComplianceStandard`, `-ComplianceSecurityProfileValue`, `-AccessConnectorId`, `-AccessConnectorIdentityType`, `-AccessConnectorUserAssignedIdentityId`, `-DefaultStorageFirewall`
16+
#### Az.Functions 4.1.0
17+
* Modified cmdlet `New-AzFunctionApp`
18+
- Removed parameters `-DockerImageName`, `-DockerRegistryCredential`
19+
- Added parameters `-Environment`, `-Image`, `-RegistryCredential`, `-WorkloadProfileName`, `-ResourceCpu`, `-ResourceMemory`, `-ScaleMaxReplica`, `-ScaleMinReplica`, `-RegistryServer`
20+
#### Az.Network 7.8.0
21+
* Modified cmdlet `Add-AzLoadBalancerProbeConfig`
22+
- Added parameter `-NoHealthyBackendsBehavior`
23+
* Modified cmdlet `Add-AzVirtualNetworkSubnetConfig`
24+
- Added parameters `-NetworkIdentifier`, `-ServiceEndpointConfig`
25+
* Modified cmdlet `New-AzBastion`
26+
- Added parameter `-EnableSessionRecording`
27+
* Modified cmdlet `New-AzLoadBalancerProbeConfig`
28+
- Added parameter `-NoHealthyBackendsBehavior`
29+
* Modified cmdlet `New-AzVirtualNetworkSubnetConfig`
30+
- Added parameters `-NetworkIdentifier`, `-ServiceEndpointConfig`
31+
* Modified cmdlet `Set-AzBastion`
32+
- Added parameter `-EnableSessionRecording`
33+
* Modified cmdlet `Set-AzLoadBalancerProbeConfig`
34+
- Added parameter `-NoHealthyBackendsBehavior`
35+
* Modified cmdlet `Set-AzVirtualNetworkSubnetConfig`
36+
- Added parameters `-NetworkIdentifier`, `-ServiceEndpointConfig`
37+
* Added cmdlet `Deploy-AzFirewallPolicy`, `Get-AzFirewallPolicyDraft`, `Get-AzFirewallPolicyRuleCollectionGroupDraft`, `New-AzFirewallPolicyDraft`, `New-AzFirewallPolicyRuleCollectionGroupDraft`, `Remove-AzFirewallPolicyDraft`, `Remove-AzFirewallPolicyRuleCollectionGroupDraft`, `Restart-AzNetworkVirtualAppliance`, `Set-AzFirewallPolicyDraft`, `Set-AzFirewallPolicyRuleCollectionGroupDraft`
38+
#### Az.Resources 7.2.0
39+
* Modified cmdlet `Get-AzPolicyAssignment`
40+
- Removed parameter `-InputObject`
41+
* Modified cmdlet `Get-AzPolicyDefinition`
42+
- Removed parameter `-InputObject`
43+
- Added parameters `-ListVersion`, `-Version`
44+
* Modified cmdlet `Get-AzPolicyExemption`
45+
- Removed parameter `-InputObject`
46+
* Modified cmdlet `Get-AzPolicySetDefinition`
47+
- Removed parameter `-InputObject`
48+
- Added parameters `-ListVersion`, `-Version`
49+
* Modified cmdlet `New-AzADApplication`
50+
- Added parameter `-ServiceManagementReference`
51+
* Modified cmdlet `New-AzPolicyAssignment`
52+
- Added parameter `-DefinitionVersion`
53+
* Modified cmdlet `New-AzPolicyDefinition`
54+
- Removed parameter `-InputObject`
55+
* Modified cmdlet `New-AzPolicySetDefinition`
56+
- Removed parameter `-InputObject`
57+
* Modified cmdlet `Update-AzADApplication`
58+
- Added parameter `-ServiceManagementReference`
59+
#### Az.Sql 5.1.0
60+
* Modified cmdlet `Add-AzSqlDatabaseToFailoverGroup`
61+
- Added parameter `-SecondaryType`
62+
* Modified cmdlet `Complete-AzSqlInstanceDatabaseCopy`
63+
- Added parameter `-TargetSubscriptionId`
64+
* Modified cmdlet `Complete-AzSqlInstanceDatabaseMove`
65+
- Added parameter `-TargetSubscriptionId`
66+
* Modified cmdlet `Copy-AzSqlInstanceDatabase`
67+
- Added parameter `-TargetSubscriptionId`
68+
* Modified cmdlet `Move-AzSqlInstanceDatabase`
69+
- Added parameter `-TargetSubscriptionId`
70+
* Modified cmdlet `Stop-AzSqlInstanceDatabaseCopy`
71+
- Added parameter `-TargetSubscriptionId`
72+
* Modified cmdlet `Stop-AzSqlInstanceDatabaseMove`
73+
- Added parameter `-TargetSubscriptionId`
74+
#### Az.SqlVirtualMachine 2.3.0
75+
* Modified cmdlet `Update-AzSqlVM`
76+
- Added parameters `-ManagedIdentityClientId`, `-IdentityType`
77+
* Added cmdlet `Assert-AzSqlVMEntraAuth`
78+
#### Az.StorageMover 1.4.0
79+
* Modified cmdlet `Update-AzStorageMoverAgent`
80+
- Added parameter `-UploadLimitScheduleWeeklyRecurrence`
81+
* Added cmdlet `New-AzStorageMoverUploadLimitWeeklyRecurrenceObject`
82+
183
## 12.0.0 - May 2024
284
#### Az.Accounts 3.0.0
385
* Modified cmdlet `Clear-AzConfig`
@@ -797,3 +879,4 @@
797879
* Added cmdlet `Get-AzSupportChatTranscript`, `Get-AzSupportChatTranscriptsNoSubscription`, `Get-AzSupportCommunication`, `Get-AzSupportCommunicationsNoSubscription`, `Get-AzSupportFile`, `Get-AzSupportFilesNoSubscription`, `Get-AzSupportFileWorkspace`, `Get-AzSupportFileWorkspacesNoSubscription`, `Get-AzSupportOperation`, `Get-AzSupportTicketsNoSubscription`, `New-AzSupportCommunication`, `New-AzSupportCommunicationsNoSubscription`, `New-AzSupportFileAndUpload`, `New-AzSupportFileAndUploadNoSubscription`, `New-AzSupportFileWorkspace`, `New-AzSupportFileWorkspacesNoSubscription`, `New-AzSupportTicketsNoSubscription`, `Test-AzSupportCommunicationNameAvailability`, `Test-AzSupportCommunicationsNoSubscriptionNameAvailability`, `Test-AzSupportTicketNameAvailability`, `Test-AzSupportTicketsNoSubscriptionNameAvailability`, `Update-AzSupportTicketsNoSubscription`
798880

799881

882+

0 commit comments

Comments
 (0)