次の方法で共有


Az 14.0.0 の移行ガイド

Az.Accounts

Get-AzAccessToken

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 既定の出力の種類は、 PSAccessToken から PSSecureAccessToken に変更されます。つまり、プレーンテキストの PSAccessToken.TokenSecureString PSSecureAccessToken.Token
    • この変更は、Az.Accounts バージョン 5.0.0 および Az バージョン 14.0.0 から有効になると予想されます。

以前は

$authHeader = @{
    'Content-Type'  = 'application/json'
    'Authorization' = 'Bearer ' + (Get-AccessToken)
}
$response = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri

クリック後

$secureToken = (Get-AzAccessToken).Token
$ssPtr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($Securetoken)
try {
     $plaintextToken = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($ssPtr)
} 
finally {
     [System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($ssPtr) 
}
$authHeader = @{
    'Content-Type'  = 'application/json'
    'Authorization' = 'Bearer ' + $plaintextToken
}
$response = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri

Az.Aks

Get-AzAksMaintenanceConfiguration

  • 出力の種類は、既存の型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' から新しい型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IMaintenanceConfiguration' に変更されています
  • 出力の種類の次のプロパティは非推奨になっています: 'TimeInWeek Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek' 'NotAllowedTime Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan'
  • 出力の種類に次のプロパティが追加されています: 'TimeInWeek System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek]' 'NotAllowedTime System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan]'
  • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' のプロパティ 'TimeInWeek' の型が 'Microsoft.Azure.Power' から変更されましたShell.Cmdlets.Aks.Models.ITimeInWeek[]' to 'System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek]',The type of property 'NotAllowedTime' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan' to 'System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan]'
  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です
  • 変更はバージョン '2.0.0' から有効になると予想されます

以前は

Get-AzAksMaintenanceConfiguration -ResourceGroupName mygroup -ResourceName myCluster

クリック後

Get-AzAksMaintenanceConfiguration -ResourceGroupName mygroup -ResourceName myCluster

Get-AzAksManagedClusterOSOption

  • 出力の種類は、既存の型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IOSOptionProfile' から新しい型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOSOptionProfile' に変更されています
  • 出力の種類の次のプロパティは非推奨になっています: 'OSOptionPropertyList Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOSOptionProperty'
  • 出力の種類に次のプロパティが追加されています: 'OSOptionPropertyList System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOSOptionProperty]'
  • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IOSOptionProfile' のプロパティ 'OSOptionPropertyList' の型が 'Microsoft.Azure. PowerShell.Cmdlets.Aks.Models.IOSOptionProperty' to 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOSOptionProperty]'。
  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です
  • 変更はバージョン '2.0.0' から有効になると予想されます

以前は

Get-AzAksManagedClusterOSOption -Location eastus

クリック後

Get-AzAksManagedClusterOSOption -Location eastus

Get-AzAksManagedClusterOutboundNetworkDependencyEndpoint

  • 出力の種類は、既存の型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IOutboundEnvironmentEndpoint' から新しい型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOutboundEnvironmentEndpoint' に変更されています
  • 出力の種類の次のプロパティは非推奨になっています: 'Endpoint Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IEndpointDependency'
  • 出力の種類に次のプロパティが追加されています: 'Endpoint System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IEndpointDependency]'
  • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IOutboundEnvironmentEndpoint' のプロパティ 'Endpoint' の型が 'Microsoft.Azure.Power' から変更されましたShell.Cmdlets.Aks.Models.IEndpointDependency' を 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IEndpointDependency]' に変更します。
  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です
  • 変更はバージョン '2.0.0' から有効になると予想されます

以前は

$result = Get-AzAksManagedClusterOutboundNetworkDependencyEndpoint -ResourceGroupName mygroup -ResourceName mycluster
$result | select Category,Endpoint

クリック後

$result = Get-AzAksManagedClusterOutboundNetworkDependencyEndpoint -ResourceGroupName mygroup -ResourceName mycluster
$result | select Category,Endpoint

Get-AzAksNodePoolUpgradeProfile

  • 出力の種類は、既存の型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IAgentPoolUpgradeProfile' から新しい型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAgentPoolUpgradeProfile' に変更されています
  • 出力の種類の次のプロパティは非推奨になっています: 'Upgrade Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAgentPoolUpgradeProfilePropertiesUpgradesItem'
  • 出力の種類に次のプロパティが追加されています: 'Upgrade System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAgentPoolUpgradeProfilePropertiesUpgradesItem]'
  • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IAgentPoolUpgradeProfile' のプロパティ 'Upgrade' の型が 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models' から変更されました .IAgentPoolUpgradeProfilePropertiesUpgradesItem' to 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAgentPoolUpgradeProfilePropertiesUpgradesItem]'。
  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です
  • 変更はバージョン '2.0.0' から有効になると予想されます

以前は

Get-AzAksNodePoolUpgradeProfile -ResourceGroupName group -ClusterName myCluster -AgentPoolName default

クリック後

Get-AzAksNodePoolUpgradeProfile -ResourceGroupName group -ClusterName myCluster -AgentPoolName default

Get-AzAksUpgradeProfile

  • 出力の種類は、既存の型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IManagedClusterUpgradeProfile' から新しい型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterUpgradeProfile' に変更されています
  • 出力の種類の次のプロパティは非推奨になっています: 'AgentPoolProfile Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfile' 'ControlPlaneProfileUpgrade Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfileUpgradesItem'
  • 出力の種類に次のプロパティが追加されています: 'AgentPoolProfile System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfile]' 'ControlPlaneProfileUpgrade System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfileUpgradesItem]'
  • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IManagedClusterUpgradeProfile' のプロパティ 'AgentPoolProfile' の型が 'Microsoft.Azure.PowerShell.Cmdlets.Aks' から変更されました .Models.IManagedClusterPoolUpgradeProfile' to 'System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfile]'.,The type of property 'ControlPlaneProfileUpgrade' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IManagedClusterUpgradeProfile' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfileUpgradesItem' to 'System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfileUpgradesItem]'.
  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です
  • 変更はバージョン '2.0.0' から有効になると予想されます

以前は

Get-AzAksUpgradeProfile -ResourceGroupName group -Name myCluster

クリック後

Get-AzAksUpgradeProfile -ResourceGroupName group -Name myCluster

Get-AzAksVersion

  • 出力の種類は、既存の型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfileListResult' から新しい型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOrchestratorVersionProfileListResult' に変更されています
  • 出力の種類の次のプロパティは非推奨になっています: 'Orchestrator Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOrchestratorVersionProfile'
  • 出力の種類に次のプロパティが追加されています: 'Orchestrator System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOrchestratorVersionProfile]'
  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です
  • 変更はバージョン '2.0.0' から有効になると予想されます

以前は

Get-AzAksVersion -___location eastus

クリック後

Get-AzAksVersion -___location eastus

New-AzAksCluster

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • クォータと容量に基づいて AKS リソース プロバイダーによって動的に選択される "Standard_D2_V2" から New-AzAksNodePool の New-AzAksCluster パラメーターと -VmSize パラメーターの既定値 -NodeVmSize。
    • この変更は、Az.Aks バージョン 7.0.0 と Az version: 14.0.0 から有効になると予想されます。

以前は

If '-NodeVmSize' is not provided, the default NodeVmSize is ‘Standard_D2_V2’。 

クリック後

If '-NodeVmSize' is not provided, the default NodeVmSize is dynamically selected by the AKS resource provider based on quota and capacity.

New-AzAksNodePool

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • クォータと容量に基づいて AKS リソース プロバイダーによって動的に選択される "Standard_D2_V2" から New-AzAksNodePool の New-AzAksCluster パラメーターと -VmSize パラメーターの既定値 -NodeVmSize。
    • この変更は、Az.Aks バージョン 7.0.0 と Az version: 14.0.0 から有効になると予想されます。

以前は

If '-VmSize' is not provided, the default VmSize is ‘Standard_D2_V2’。 

クリック後

If '-VmSize' is not provided, the default VmSize is dynamically selected by the AKS resource provider based on quota and capacity.

New-AzAksMaintenanceConfiguration

  • 出力の種類は、既存の型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' から新しい型 :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IMaintenanceConfiguration' に変更されています
  • 出力の種類の次のプロパティは非推奨になっています: 'TimeInWeek Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek' 'NotAllowedTime Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan'
  • 出力の種類に次のプロパティが追加されています: 'TimeInWeek System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek]' 'NotAllowedTime System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan]'
  • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' のプロパティ 'TimeInWeek' の型が 'Microsoft.Azure.Power' から変更されましたShell.Cmdlets.Aks.Models.ITimeInWeek[]' to 'System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek]',The type of property 'NotAllowedTime' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan' to 'System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan]'
  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です
  • 変更はバージョン '2.0.0' から有効になると予想されます

以前は

$TimeSpan = New-AzAksTimeSpanObject -Start (Get-Date -Year 2023 -Month 3 -Day 1) -End (Get-Date -Year 2023 -Month 3 -Day 2)
$TimeInWeek = New-AzAksTimeInWeekObject -Day 'Sunday' -HourSlot 1,2
$MaintenanceConfig = New-AzAksMaintenanceConfiguration -ResourceGroupName mygroup -ResourceName myCluster -ConfigName 'aks_maintenance_config' -TimeInWeek $TimeInWeek -NotAllowedTime $TimeSpan

クリック後

$TimeSpan = New-AzAksTimeSpanObject -Start (Get-Date -Year 2023 -Month 3 -Day 1) -End (Get-Date -Year 2023 -Month 3 -Day 2)
$TimeInWeek = New-AzAksTimeInWeekObject -Day Sunday -HourSlot 1,2
$MaintenanceConfig = New-AzAksMaintenanceConfiguration -ResourceGroupName mygroup -ResourceName myCluster -ConfigName 'aks_maintenance_config' -TimeInWeek $TimeInWeek -NotAllowedTime $TimeSpan

Az.AppConfiguration

Get-AzAppConfigurationStore

  • 出力の種類は、既存の型 :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore' から新しい型 :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IConfigurationStore' に変更されています
  • 出力の種類の次のプロパティは非推奨になっています: 'PrivateEndpointConnection Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference'
  • 出力の種類に次のプロパティが追加されています: 'PrivateEndpointConnection System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]'
  • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore' のプロパティ 'PrivateEndpointConnection' の型が 'Microsoft.Azure.PowerShell.Cmdlets' から変更されました。 AppConfiguration.Models.IPrivateEndpointConnectionReference' to 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]'
  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です
  • 変更はバージョン '2.0.0' から有効になると予想されます

以前は

Get-AzAppConfigurationStore -Name azpstest-appstore -ResourceGroupName azpstest_gp

クリック後

Get-AzAppConfigurationStore -Name azpstest-appstore -ResourceGroupName azpstest_gp

New-AzAppConfigurationStore

IdentityType は削除されます。 EnableSystemAssignedIdentity を使用してシステム割り当て ID を有効または無効にし、UserAssignedIdentity を使用してユーザー割り当て ID を指定します。

  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です

  • 変更はバージョン '2.0.0' から有効になると予想されます

  • 出力の種類は、既存の型 :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore' から新しい型 :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IConfigurationStore' に変更されています

  • 出力の種類の次のプロパティは非推奨になっています: 'PrivateEndpointConnection Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference'

  • 次のプロパティが出力の種類に追加されています: 'PrivateEndpointConnection System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]'

  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です

  • 変更はバージョン '2.0.0' から有効になると予想されます

以前は

$storeName = "azpstest-appstore-recover"
$resourceGroupName = "azpstest_gp"
$___location = "eastus"
New-AzAppConfigurationStore -Name $storeName -ResourceGroupName $resourceGroupName -Location $___location -Sku Standard
Remove-AzAppConfigurationStore -Name $storeName -ResourceGroupName $resourceGroupName
Get-AzAppConfigurationDeletedStore -Location $___location -Name $storeName
New-AzAppConfigurationStore -Name $storeName -ResourceGroupName $resourceGroupName -Location $___location -Sku Standard -CreateMode 'Recover' -IdentityType SystemAssigned -UserAssignedIdentity "/subscriptions/xxxx/resourceGroups/azpstest_gp/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azpstest-uai"

クリック後

$storeName = "azpstest-appstore-recover"
$resourceGroupName = "azpstest_gp"
$___location = "eastus"
New-AzAppConfigurationStore -Name $storeName -ResourceGroupName $resourceGroupName -Location $___location -Sku Standard
Remove-AzAppConfigurationStore -Name $storeName -ResourceGroupName $resourceGroupName
Get-AzAppConfigurationDeletedStore -Location $___location -Name $storeName
New-AzAppConfigurationStore -Name $storeName -ResourceGroupName $resourceGroupName -Location $___location -Sku Standard -CreateMode 'Recover' -EnableSystemAssignedIdentity:$true -UserAssignedIdentity "/subscriptions/xxxx/resourceGroups/azpstest_gp/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azpstest-uai"

Update-AzAppConfigurationStore

IdentityType は削除されます。 EnableSystemAssignedIdentity を使用してシステム割り当て ID を有効または無効にし、UserAssignedIdentity を使用してユーザー割り当て ID を指定します。

  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です

  • 変更はバージョン '2.0.0' から有効になると予想されます

  • 出力の種類は、既存の型 :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore' から新しい型 :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IConfigurationStore' に変更されています

  • 出力の種類の次のプロパティは非推奨になっています: 'PrivateEndpointConnection Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference'

  • 次のプロパティが出力の種類に追加されています: 'PrivateEndpointConnection System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]'

  • この変更は '2025-05-19' に反映されます。変更は Az バージョン :'14.0.0' から有効になる予定です

  • 変更はバージョン '2.0.0' から有効になると予想されます

以前は

Update-AzAppConfigurationStore -Name azpstest-appstore -ResourceGroupName azpstest_gp -DisableLocalAuth -EnablePurgeProtection -PublicNetworkAccess 'Enabled' -IdentityType SystemAssigned -UserAssignedIdentity "/subscriptions/xxxx/resourceGroups/azpstest_gp/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azpstest-uai"

クリック後

Update-AzAppConfigurationStore -Name azpstest-appstore -ResourceGroupName azpstest_gp -DisableLocalAuth -EnablePurgeProtection -PublicNetworkAccess 'Enabled' -EnableSystemAssignedIdentity:$true -UserAssignedIdentity "/subscriptions/xxxx/resourceGroups/azpstest_gp/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azpstest-uai"

Az.Cdn

Clear-AzCdnEndpointContent

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IPurgeParameters' のプロパティ 'ContentPath, Domain' の型が 'System.String[]' から 'System.Collections.Generic.List'1[System.String]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Clear-AzCdnEndpointContent -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] -ContentPath <String[]>

クリック後

Clear-AzCdnEndpointContent -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] -ContentPath <String[]>

Clear-AzFrontDoorCdnEndpointContent

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IPurgeParameters' のプロパティ 'ContentPath, Domain' の型が 'System.String[]' から 'System.Collections.Generic.List'1[System.String]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Clear-AzFrontDoorCdnEndpointContent -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] -ContentPath <String[]> [-Domain <String[]>]

クリック後

Clear-AzFrontDoorCdnEndpointContent -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] -ContentPath <String[]> [-Domain <String[]>]

Get-AzCdnEdgeNode

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IEdgeNode' のプロパティ 'IPAddressGroup' の種類が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IIPAddressGroup' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IIPAddressGroup]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Get-AzCdnEdgeNode

クリック後

Get-AzCdnEdgeNode

Get-AzCdnEndpoint

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' のプロパティ 'Origin' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Get-AzCdnEndpoint -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]

クリック後

Get-AzCdnEndpoint -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]

Get-AzCdnOriginGroup

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' のプロパティ 'HttpErrorRange' の型が 'Microsoft. Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Get-AzCdnOriginGroup -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String[]>]

クリック後

Get-AzCdnOriginGroup -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String[]>]

Get-AzFrontDoorCdnEndpoint

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' のプロパティ 'Origin' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Get-AzFrontDoorCdnEndpoint -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]

クリック後

Get-AzFrontDoorCdnEndpoint -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]

Get-AzFrontDoorCdnOriginGroup

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' のプロパティ 'HttpErrorRange' の型が 'Microsoft. Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Get-AzFrontDoorCdnOriginGroup -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]

クリック後

Get-AzFrontDoorCdnOriginGroup -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]

Get-AzFrontDoorCdnRoute

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRoute' のプロパティ 'PatternsToMatch, CompressionSettingContentTypesToCompress' の型が 'System.String[]' から 'System.Collections.Generic.List'1[System.String]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Get-AzFrontDoorCdnRoute -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String[]>]

クリック後

Get-AzFrontDoorCdnRoute -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String[]>]

Get-AzFrontDoorCdnRule

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRule' のプロパティ 'Condition' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Get-AzFrontDoorCdnRule -ProfileName <String> -ResourceGroupName <String> -SetName <String>
 [-SubscriptionId <String[]>]

クリック後

Get-AzFrontDoorCdnRule -ProfileName <String> -ResourceGroupName <String> -SetName <String>
 [-SubscriptionId <String[]>]

Import-AzCdnEndpointContent

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IPurgeParameters' のプロパティ 'ContentPath, Domain' の型が 'System.String[]' から 'System.Collections.Generic.List'1[System.String]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Import-AzCdnEndpointContent -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] -ContentPath <String[]>

クリック後

Import-AzCdnEndpointContent -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] -ContentPath <String[]>

New-AzCdnEndpoint

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' のプロパティ 'Origin' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

New-AzCdnEndpoint -Name <String> -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String>]
 -Location <String> [-ContentTypesToCompress <String[]>] [-DefaultOriginGroupId <String>]
 [-DeliveryPolicyDescription <String>] [-DeliveryPolicyRule <IDeliveryRule[]>] [-GeoFilter <IGeoFilter[]>]
 [-IsCompressionEnabled] [-IsHttpAllowed] [-IsHttpsAllowed] [-OptimizationType <OptimizationType>]
 [-Origin <IDeepCreatedOrigin[]>] [-OriginGroup <IDeepCreatedOriginGroup[]>] [-OriginHostHeader <String>]
 [-OriginPath <String>] [-ProbePath <String>] [-QueryStringCachingBehavior <QueryStringCachingBehavior>]
 [-Tag <Hashtable>] [-UrlSigningKey <IUrlSigningKey[]>] [-WebApplicationFirewallPolicyLinkId <String>]

クリック後

New-AzCdnEndpoint -Name <String> -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String>]
 -Location <String> [-ContentTypesToCompress <String[]>] [-DefaultOriginGroupId <String>]
 [-DeliveryPolicyDescription <String>] [-DeliveryPolicyRule <IDeliveryRule[]>] [-GeoFilter <IGeoFilter[]>]
 [-IsCompressionEnabled] [-IsHttpAllowed] [-IsHttpsAllowed] [-OptimizationType <String>]
 [-Origin <IDeepCreatedOrigin[]>] [-OriginGroup <IDeepCreatedOriginGroup[]>] [-OriginHostHeader <String>]
 [-OriginPath <String>] [-ProbePath <String>] [-QueryStringCachingBehavior <String>] [-Tag <Hashtable>]
 [-UrlSigningKey <IUrlSigningKey[]>] [-WebApplicationFirewallPolicyLinkId <String>]

New-AzCdnManagedHttpsParametersObject

  • コマンドレットの破壊的変更は、すべてのパラメーター セットに対して行われます。新しい必須パラメーター CertificateSourceParameterTypeName を追加します。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

New-AzCdnManagedHttpsParametersObject -CertificateSourceParameterCertificateType <CertificateType>
 -CertificateSource <CertificateSource> -ProtocolType <ProtocolType> [-MinimumTlsVersion <MinimumTlsVersion>]

クリック後

New-AzCdnManagedHttpsParametersObject -CertificateSourceParameterCertificateType <String>
 -CertificateSourceParameterTypeName <String> -ProtocolType <String> -CertificateSource <String>
 [-MinimumTlsVersion <String>]

New-AzCdnOriginGroup

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' のプロパティ 'HttpErrorRange' の型が 'Microsoft. Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

New-AzCdnOriginGroup -EndpointName <String> -Name <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-HealthProbeSetting <IHealthProbeParameters>] [-Origin <IResourceReference[]>]
 [-ResponseBasedOriginErrorDetectionSetting <IResponseBasedOriginErrorDetectionParameters>]
 [-TrafficRestorationTimeToHealedOrNewEndpointsInMinute <Int32>]

クリック後

New-AzCdnOriginGroup -Name <String> -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-HealthProbeSetting <IHealthProbeParameters>] [-Origin <IResourceReference[]>]
 [-ResponseBasedOriginErrorDetectionSetting <IResponseBasedOriginErrorDetectionParameters>]
 [-TrafficRestorationTimeToHealedOrNewEndpointsInMinute <Int32>]

New-AzCdnUserManagedHttpsParametersObject

  • コマンドレットの破壊的変更は、すべてのパラメーター セットに対して行われます。新しい必須パラメーター CertificateSourceParameterTypeName を追加します。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

New-AzCdnUserManagedHttpsParametersObject -CertificateSourceParameterResourceGroupName <String>
 -CertificateSourceParameterSecretName <String> -CertificateSourceParameterSubscriptionId <String>
 -CertificateSourceParameterVaultName <String> -CertificateSource <CertificateSource>
 -ProtocolType <ProtocolType> [-CertificateSourceParameterSecretVersion <String>]
 [-MinimumTlsVersion <MinimumTlsVersion>]

クリック後

New-AzCdnUserManagedHttpsParametersObject -CertificateSourceParameterResourceGroupName <String>
 -CertificateSourceParameterSecretName <String> -CertificateSourceParameterSubscriptionId <String>
 -CertificateSourceParameterTypeName <String> -CertificateSourceParameterVaultName <String>
 -CertificateSource <String> -ProtocolType <String> [-CertificateSourceParameterSecretVersion <String>]
 [-MinimumTlsVersion <String>]

New-AzFrontDoorCdnEndpoint

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' のプロパティ 'Origin' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

New-AzFrontDoorCdnEndpoint -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] -Location <String>
 [-AutoGeneratedDomainNameLabelScope <AutoGeneratedDomainNameLabelScope>] [-EnabledState <EnabledState>]
 [-Tag <Hashtable>]

クリック後

New-AzFrontDoorCdnEndpoint -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] -Location <String> [-AutoGeneratedDomainNameLabelScope <String>]
 [-EnabledState <String>] [-Tag <Hashtable>]

New-AzFrontDoorCdnOriginGroup

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' のプロパティ 'HttpErrorRange' の型が 'Microsoft. Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

New-AzFrontDoorCdnOriginGroup -OriginGroupName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-HealthProbeSetting <IHealthProbeParameters>]
 [-LoadBalancingSetting <ILoadBalancingSettingsParameters>] [-SessionAffinityState <EnabledState>]
 [-TrafficRestorationTimeToHealedOrNewEndpointsInMinute <Int32>]

クリック後

New-AzFrontDoorCdnOriginGroup -OriginGroupName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-HealthProbeSetting <IHealthProbeParameters>]
 [-LoadBalancingSetting <ILoadBalancingSettingsParameters>] [-SessionAffinityState <String>]
 [-TrafficRestorationTimeToHealedOrNewEndpointsInMinute <Int32>]

New-AzFrontDoorCdnRoute

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRoute' のプロパティ 'PatternsToMatch, CompressionSettingContentTypesToCompress' の型が 'System.String[]' から 'System.Collections.Generic.List'1[System.String]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

New-AzFrontDoorCdnRoute -EndpointName <String> -Name <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-CacheConfigurationQueryParameter <String>]
 [-CacheConfigurationQueryStringCachingBehavior <AfdQueryStringCachingBehavior>]
 [-CompressionSettingContentTypesToCompress <String[]>] [-CompressionSettingIsCompressionEnabled]
 [-CustomDomain <IActivatedResourceReference[]>] [-EnabledState <EnabledState>]
 [-ForwardingProtocol <ForwardingProtocol>] [-HttpsRedirect <HttpsRedirect>]
 [-LinkToDefaultDomain <LinkToDefaultDomain>] [-OriginGroupId <String>] [-OriginPath <String>]
 [-PatternsToMatch <String[]>] [-RuleSet <IResourceReference[]>] [-SupportedProtocol <AfdEndpointProtocols[]>]

クリック後

New-AzFrontDoorCdnRoute -Name <String> -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-CacheConfigurationQueryParameter <String>]
 [-CacheConfigurationQueryStringCachingBehavior <String>]
 [-CompressionSettingContentTypesToCompress <String[]>] [-CompressionSettingIsCompressionEnabled]
 [-CustomDomain <IActivatedResourceReference[]>] [-EnabledState <String>] [-ForwardingProtocol <String>]
 [-HttpsRedirect <String>] [-LinkToDefaultDomain <String>] [-OriginGroupId <String>] [-OriginPath <String>]
 [-PatternsToMatch <String[]>] [-RuleSet <IResourceReference[]>] [-SupportedProtocol <String[]>]

New-AzFrontDoorCdnRule

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます

    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRule' のプロパティ 'Condition' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます
  • パラメーターの破壊的変更は、すべてのパラメーター セットに対して行われます

    • -Action
      • パラメーター :'Action' が変更されています。 パラメーターの種類が 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeliveryRuleAction1' から 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleAction' に変更されています。
      • 変更の説明: パラメーター 'Action' の要素の種類が 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeliveryRuleAction1' から 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleAction' に変更されました。
      • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
      • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

New-AzFrontDoorCdnRule -Name <String> -ProfileName <String> -ResourceGroupName <String> -SetName <String>
 [-SubscriptionId <String>] [-Action <IDeliveryRuleAction1[]>] [-Condition <IDeliveryRuleCondition[]>]
 [-MatchProcessingBehavior <MatchProcessingBehavior>] [-Order <Int32>]

クリック後

New-AzFrontDoorCdnRule -Name <String> -ProfileName <String> -ResourceGroupName <String> -SetName <String>
 [-SubscriptionId <String>] [-Action <IDeliveryRuleAction[]>] [-Condition <IDeliveryRuleCondition[]>]
 [-MatchProcessingBehavior <String>] [-Order <Int32>]

Remove-AzCdnEndpoint

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' のプロパティ 'Origin' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Remove-AzCdnEndpoint -Name <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>]

クリック後

Remove-AzCdnEndpoint -Name <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>]

Remove-AzCdnOriginGroup

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' のプロパティ 'HttpErrorRange' の型が 'Microsoft. Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Remove-AzCdnOriginGroup -EndpointName <String> -Name <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>]

クリック後

Remove-AzCdnOriginGroup -EndpointName <String> -Name <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>]

Remove-AzFrontDoorCdnEndpoint

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' のプロパティ 'Origin' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Remove-AzFrontDoorCdnEndpoint -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>]

クリック後

Remove-AzFrontDoorCdnEndpoint -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>]

Remove-AzFrontDoorCdnOriginGroup

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' のプロパティ 'HttpErrorRange' の型が 'Microsoft. Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Remove-AzFrontDoorCdnOriginGroup -OriginGroupName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>]

クリック後

Remove-AzFrontDoorCdnOriginGroup -OriginGroupName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>]

Remove-AzFrontDoorCdnRoute

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRoute' のプロパティ 'PatternsToMatch, CompressionSettingContentTypesToCompress' の型が 'System.String[]' から 'System.Collections.Generic.List'1[System.String]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Remove-AzFrontDoorCdnRoute -EndpointName <String> -Name <String> -ProfileName <String>
 -ResourceGroupName <String> [-SubscriptionId <String>]

クリック後

Remove-AzFrontDoorCdnRoute -EndpointName <String> -Name <String> -ProfileName <String>
 -ResourceGroupName <String> [-SubscriptionId <String>]

Remove-AzFrontDoorCdnRule

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRule' のプロパティ 'Condition' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Remove-AzFrontDoorCdnRule -Name <String> -ProfileName <String> -ResourceGroupName <String> -SetName <String>
 [-SubscriptionId <String>]

クリック後

Remove-AzFrontDoorCdnRule -Name <String> -ProfileName <String> -ResourceGroupName <String> -SetName <String>
 [-SubscriptionId <String>]

Start-AzCdnEndpoint

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' のプロパティ 'Origin' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Start-AzCdnEndpoint -Name <String> -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String>]

クリック後

Start-AzCdnEndpoint -Name <String> -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String>]

Stop-AzCdnEndpoint

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' のプロパティ 'Origin' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Stop-AzCdnEndpoint -Name <String> -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String>]

クリック後

Stop-AzCdnEndpoint -Name <String> -ProfileName <String> -ResourceGroupName <String> [-SubscriptionId <String>]

Update-AzCdnEndpoint

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' のプロパティ 'Origin' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Update-AzCdnEndpoint -Name <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-ContentTypesToCompress <String[]>] [-DefaultOriginGroupId <String>]
 [-DeliveryPolicyDescription <String>] [-DeliveryPolicyRule <IDeliveryRule[]>] [-GeoFilter <IGeoFilter[]>]
 [-IsCompressionEnabled] [-IsHttpAllowed] [-IsHttpsAllowed] [-OptimizationType <OptimizationType>]
 [-OriginHostHeader <String>] [-OriginPath <String>] [-ProbePath <String>]
 [-QueryStringCachingBehavior <QueryStringCachingBehavior>] [-Tag <Hashtable>]
 [-UrlSigningKey <IUrlSigningKey[]>] [-WebApplicationFirewallPolicyLinkId <String>]

クリック後

Update-AzCdnEndpoint -Name <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-ContentTypesToCompress <String[]>] [-DefaultOriginGroupId <String>]
 [-DeliveryPolicyDescription <String>] [-DeliveryPolicyRule <IDeliveryRule[]>] [-GeoFilter <IGeoFilter[]>]
 [-IsCompressionEnabled] [-IsHttpAllowed] [-IsHttpsAllowed] [-OptimizationType <String>]
 [-OriginHostHeader <String>] [-OriginPath <String>] [-ProbePath <String>]
 [-QueryStringCachingBehavior <String>] [-Tag <Hashtable>] [-UrlSigningKey <IUrlSigningKey[]>]
 [-WebApplicationFirewallPolicyLinkId <String>]

Update-AzCdnOriginGroup

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' のプロパティ 'HttpErrorRange' の型が 'Microsoft. Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Update-AzCdnOriginGroup -EndpointName <String> -Name <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-HealthProbeSetting <IHealthProbeParameters>] [-Origin <IResourceReference[]>]
 [-ResponseBasedOriginErrorDetectionSetting <IResponseBasedOriginErrorDetectionParameters>]
 [-TrafficRestorationTimeToHealedOrNewEndpointsInMinute <Int32>]

クリック後

Update-AzCdnOriginGroup -EndpointName <String> -Name <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-HealthProbeSetting <IHealthProbeParameters>] [-Origin <IResourceReference[]>]
 [-ResponseBasedOriginErrorDetectionSetting <IResponseBasedOriginErrorDetectionParameters>]
 [-TrafficRestorationTimeToHealedOrNewEndpointsInMinute <Int32>]

Update-AzFrontDoorCdnEndpoint

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' のプロパティ 'Origin' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Update-AzFrontDoorCdnEndpoint -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-EnabledState <EnabledState>] [-Tag <Hashtable>]

クリック後

Update-AzFrontDoorCdnEndpoint -EndpointName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-EnabledState <String>] [-Tag <Hashtable>]

Update-AzFrontDoorCdnOriginGroup

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' のプロパティ 'HttpErrorRange' の型が 'Microsoft. Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Update-AzFrontDoorCdnOriginGroup -OriginGroupName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-HealthProbeSetting <IHealthProbeParameters>]
 [-LoadBalancingSetting <ILoadBalancingSettingsParameters>] [-SessionAffinityState <EnabledState>]
 [-TrafficRestorationTimeToHealedOrNewEndpointsInMinute <Int32>]

クリック後

Update-AzFrontDoorCdnOriginGroup -OriginGroupName <String> -ProfileName <String> -ResourceGroupName <String>
 [-SubscriptionId <String>] [-HealthProbeSetting <IHealthProbeParameters>]
 [-LoadBalancingSetting <ILoadBalancingSettingsParameters>] [-SessionAffinityState <String>]
 [-TrafficRestorationTimeToHealedOrNewEndpointsInMinute <Int32>]

Update-AzFrontDoorCdnRoute

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRoute' のプロパティ 'PatternsToMatch, CompressionSettingContentTypesToCompress' の型が 'System.String[]' から 'System.Collections.Generic.List'1[System.String]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Update-AzFrontDoorCdnRoute -EndpointName <String> -Name <String> -ProfileName <String>
 -ResourceGroupName <String> [-SubscriptionId <String>] [-CacheConfigurationQueryParameter <String>]
 [-CacheConfigurationQueryStringCachingBehavior <AfdQueryStringCachingBehavior>]
 [-CompressionSettingContentTypesToCompress <String[]>] [-CompressionSettingIsCompressionEnabled]
 [-CustomDomain <IActivatedResourceReference[]>] [-EnabledState <EnabledState>]
 [-ForwardingProtocol <ForwardingProtocol>] [-HttpsRedirect <HttpsRedirect>]
 [-LinkToDefaultDomain <LinkToDefaultDomain>] [-OriginGroupId <String>] [-OriginPath <String>]
 [-PatternsToMatch <String[]>] [-RuleSet <IResourceReference[]>] [-SupportedProtocol <AfdEndpointProtocols[]>]

クリック後

Update-AzFrontDoorCdnRoute -EndpointName <String> -Name <String> -ProfileName <String>
 -ResourceGroupName <String> [-SubscriptionId <String>] [-CacheConfigurationQueryParameter <String>]
 [-CacheConfigurationQueryStringCachingBehavior <String>]
 [-CompressionSettingContentTypesToCompress <String[]>] [-CompressionSettingIsCompressionEnabled]
 [-CustomDomain <IActivatedResourceReference[]>] [-EnabledState <String>] [-ForwardingProtocol <String>]
 [-HttpsRedirect <String>] [-LinkToDefaultDomain <String>] [-OriginGroupId <String>] [-OriginPath <String>]
 [-PatternsToMatch <String[]>] [-RuleSet <IResourceReference[]>] [-SupportedProtocol <String[]>]

Update-AzFrontDoorCdnRule

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます

    • 変更の説明: 型 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRule' のプロパティ 'Condition' の型が 、'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition' から 'System.Collections.Generic.List'1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition]' に変更されました。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '5.0.0' から有効になると予想されます
  • パラメーターの破壊的変更は、すべてのパラメーター セットに対して行われます

    • -Action
      • パラメーター :'Action' が変更されています。 パラメーターの種類が 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeliveryRuleAction1' から 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleAction' に変更されています。
      • 変更の説明: パラメーター 'Action' の要素の種類が 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeliveryRuleAction1' から 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleAction' に変更されました。
      • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
      • 変更はバージョン '5.0.0' から有効になると予想されます

以前は

Update-AzFrontDoorCdnRule -Name <String> -ProfileName <String> -ResourceGroupName <String> -SetName <String>
 [-SubscriptionId <String>] [-Action <IDeliveryRuleAction1[]>] [-Condition <IDeliveryRuleCondition[]>]
 [-MatchProcessingBehavior <MatchProcessingBehavior>] [-Order <Int32>]

クリック後

Update-AzFrontDoorCdnRule -Name <String> -ProfileName <String> -ResourceGroupName <String> -SetName <String>
 [-SubscriptionId <String>] [-Action <IDeliveryRuleAction[]>] [-Condition <IDeliveryRuleCondition[]>]
 [-MatchProcessingBehavior <String>] [-Order <Int32>]

Az.Compute

Get-AzVMSize

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • "ListVirtualMachineSize" パラメーター セットは、API として非推奨になります。"仮想マシンのサイズ - 一覧" は非推奨です。 使用可能な VM サイズをサブスクリプションまたは場所別に一覧表示するには、代わりに "Get-AzComputeResourceSku" を使用してください。 その他のパラメーター セット: "可用性セットの使用可能なサイズの一覧表示" と "仮想マシンの使用可能なサイズの一覧表示" は引き続きサポートされます。
    • この変更は、Az.Compute バージョン 10.0.0 と Az バージョン 14.0.0 から有効になると予想されます。

以前は

Get-AzVMSize -Location <string>

クリック後

 Get-AzComputeResourceSku -Location <string>

Az.Resources

Get-AzResource

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • リソースの種類の API バージョンは、最新バージョンではなく既定のバージョンを使用するように更新されます。
    • この変更は、Az.Resources バージョン 8.0.0 と Az バージョン 14.0.0 から有効になると予想されます。

Invoke-AzResourceAction

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • リソースの種類の API バージョンは、最新バージョンではなく既定のバージョンを使用するように更新されます。
    • この変更は、Az.Resources バージョン 8.0.0 と Az バージョン 14.0.0 から有効になると予想されます。
    • ほとんどの場合、この変更によって中断は発生しません。 予期しない内容が表示された場合は、使用する API バージョンを手動で指定できます。

以前は

Invoke-AzResourceAction -ResourceGroupName <resource group> -Name <resource> -ResourceType <resource type> -Action <action>

クリック後

Invoke-AzResourceAction -ResourceGroupName <resource group> -Name <resource> -ResourceType <resource type> -Action <action> -ApiVersion <api version>

New-AzResource

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • リソースの種類の API バージョンは、最新バージョンではなく既定のバージョンを使用するように更新されます。
    • この変更は、Az.Resources バージョン 8.0.0 と Az バージョン 14.0.0 から有効になると予想されます。
    • ほとんどの場合、この変更によって中断は発生しません。 予期しない内容が表示された場合は、使用する API バージョンを手動で指定できます。

以前は

New-AzResource -ResourceGroupName <resource group> -Name <resource> -ResourceType <resource type>

クリック後

New-AzResource -ResourceGroupName <resource group> -Name <resource> -ResourceType <resource type> -ApiVersion <api version>

Move-AzResource

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • リソースの種類の API バージョンは、最新バージョンではなく既定のバージョンを使用するように更新されます。
    • この変更は、Az.Resources バージョン 8.0.0 と Az バージョン 14.0.0 から有効になると予想されます。
    • ほとんどの場合、この変更によって中断は発生しません。 予期しない内容が表示された場合は、使用する API バージョンを手動で指定できます。

以前は

Move-AzResource -ResourceGroupName <resource group> -Name <resource> -ResourceType <resource type>

クリック後

Move-AzResource -ResourceGroupName <resource group> -Name <resource> -ResourceType <resource type> -ApiVersion <api version>

Remove-AzResource

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • リソースの種類の API バージョンは、最新バージョンではなく既定のバージョンを使用するように更新されます。
    • この変更は、Az.Resources バージョン 8.0.0 と Az バージョン 14.0.0 から有効になると予想されます。

以前は

Remove-AzResource -ResourceGroupName <resource group> -Name <resource> -ResourceType <resource type>

クリック後

Remove-AzResource -ResourceGroupName <resource group> -Name <resource> -ResourceType <resource type> -ApiVersion <api version>

Set-AzResource

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • リソースの種類の API バージョンは、最新バージョンではなく既定のバージョンを使用するように更新されます。
    • この変更は、Az.Resources バージョン 8.0.0 と Az バージョン 14.0.0 から有効になると予想されます。
    • ほとんどの場合、この変更によって中断は発生しません。 予期しない内容が表示された場合は、使用する API バージョンを手動で指定できます。

以前は

Set-AzResource -ResourceGroupName <resource group> -Name <resource> -ResourceType <resource type>

クリック後

Set-AzResource -ResourceGroupName <resource group> -Name <resource> -ResourceType <resource type> -ApiVersion <api version>

Az.Storage

Set-AzStorageFileContent

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます
    • ファイル > サイズが 1 TB の場合、または Oauth credencial または -DisAllowTrailingDot を使用してアップロードすると、ContentHash プロパティはアップロードされた Azure ファイルから削除されます。
    • この変更は、Az.Storage バージョン 9.0.0 および Az バージョン 14.0.0 から有効になると予想されます。

以前は

Set-AzStorageFileContent -ShareName $shareName -Path $filename -Source $localSrcFile -Context $ctxoauth

クリック後

# If need contenthash in MD5, need set it after upload file
$file = Set-AzStorageFileContent -ShareName $shareName -Path $filename -Source $localSrcFile -Context $ctxoauth -PassThru
$md5 = New-Object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider
$filems5 = $md5.ComputeHash([System.IO.File]::ReadAllBytes($localSrcFile))
$file.ShareFileClient.SetHttpHeaders(@{"HttpHeaders" = @{"ContentHash" = $filems5}})

Start-AzStorageAccountMigration

  • コマンドレットの破壊的変更はすべてのパラメーター セットに対して行われます。アカウントの冗長性構成を変換するときに、ユーザーの確認を必要とするプロンプトが追加されます。 -Force で抑制します。
    • この変更は '2025 年 5 月 19 日' に有効になります。変更は Az バージョン :'14.0.0' から有効になる予定です
    • 変更はバージョン '9.0.0' から有効になると予想されます

以前は

Start-AzStorageAccountMigration -AccountName myaccount -ResourceGroupName myresourcegroup -TargetSku Standard_LRS -Name migration1 -AsJob

クリック後

Start-AzStorageAccountMigration -AccountName myaccount -ResourceGroupName myresourcegroup -TargetSku Standard_LRS -Name migration1 -Force -AsJob