Update-AzFrontDoorCdnProfileSku
將配置檔從 Standard_AzureFrontDoor 升級至 Premium_AzureFrontDoor。
語法
Update-AzFrontDoorCdnProfileSku
-ProfileName <String>
-ResourceGroupName <String>
[-SubscriptionId <String>]
-ProfileUpgradeParameter <IProfileUpgradeParameters>
[-DefaultProfile <PSObject>]
[-AsJob]
[-NoWait]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
將配置檔從 Standard_AzureFrontDoor 升級至 Premium_AzureFrontDoor。
範例
範例 1:當配置檔未與 WAF 原則相關聯時。
$nullUpgradePara = @{}
Update-AzFrontDoorCdnProfileSku -ProfileName profileName -ResourceGroupName rgName -ProfileUpgradeParameter $nullUpgradePara
Location Name Kind ResourceGroupName
-------- ---- ---- -----------------
Global profileName frontdoor rgName
當配置檔未與 WAF 原則相關聯時。 將配置檔從 Standard_AzureFrontDoor 升級至 Premium_AzureFrontDoor。
範例 2:當與 WAF 相關聯的 CDN 配置檔並複製到新的 waf 原則時...
$waf = New-AzFrontDoorCdnProfileChangeSkuWafMappingObject -SecurityPolicyName waf -ChangeToWafPolicyId /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/resourcegroups/rgName/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/newWAFName
$upgrade = New-AzFrontDoorCdnProfileUpgradeParametersObject -WafMappingList $waf
Update-AzFrontDoorCdnProfileSku -ProfileName profileName -ResourceGroupName rgName -ProfileUpgradeParameter $upgrade
Location Name Kind ResourceGroupName
-------- ---- ---- -----------------
Global profileName frontdoor rgName
當與 WAF 相關聯的 CDN 配置檔並複製到新的 WAF 原則時,新 WAF 原則的訂用帳戶和資源群組應該與配置檔的 相同。 將配置檔從 Standard_AzureFrontDoor 升級至 Premium_AzureFrontDoor。
範例 2:當與 WAF 相關聯的 CDN 配置檔,並選取 exsting WAF 原則時...
$waf1 = New-AzFrontDoorCdnProfileChangeSkuWafMappingObject -SecurityPolicyName waf1 -ChangeToWafPolicyId /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/resourcegroups/rgtest01/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/existingWAFName1
$waf2 = New-AzFrontDoorCdnProfileChangeSkuWafMappingObject -SecurityPolicyName waf2 -ChangeToWafPolicyId /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/resourcegroups/rgtest02/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/existingWAFName2
$upgrade = New-AzFrontDoorCdnProfileUpgradeParametersObject -WafMappingList @($waf1, $waf2)
Update-AzFrontDoorCdnProfileSku -ProfileName profileName -ResourceGroupName rgName -ProfileUpgradeParameter $upgrade
Location Name Kind ResourceGroupName
-------- ---- ---- -----------------
Global profileName frontdoor rgName
當與 WAF 相關聯的 CDN 配置檔並選取 exsting WAF 原則時,您只能選取與配置檔相同訂用帳戶中的 WAF 原則。 將配置檔從 Standard_AzureFrontDoor 升級至 Premium_AzureFrontDoor。
範例 4:與 WAF 相關聯的 CDN 配置檔,當配置檔的訂用帳戶與本機子憑證不同時
$waf = New-AzFrontDoorCdnProfileChangeSkuWafMappingObject -SecurityPolicyName waf -ChangeToWafPolicyId /subscriptions/testSubId01/resourcegroups/rgtest01/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ExistingPremiumWAFName
$upgrade = New-AzFrontDoorCdnProfileUpgradeParametersObject -WafMappingList $waf
Update-AzFrontDoorCdnProfileSku -ProfileName profileName -ResourceGroupName rgName -ProfileUpgradeParameter $upgrade -SubscriptionId testSubId01
Location Name Kind ResourceGroupName
-------- ---- ---- -----------------
Global profileName frontdoor rgName
與 WAF 相關聯的 CDN 配置檔,當配置檔的訂用帳戶與本機子憑證不同時。
參數
-AsJob
以作業身分執行命令
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Confirm
在執行 Cmdlet 之前,提示您進行確認。
類型: | SwitchParameter |
別名: | cf |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-DefaultProfile
用於與 Azure 通訊的認證、帳戶、租用戶和訂用帳戶。
類型: | PSObject |
別名: | AzureRMContext, AzureCredential |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-NoWait
以異步方式執行命令
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-ProfileName
Azure Front Door Standard 或 Azure Front Door Premium 的名稱,在資源群組中是唯一的。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-ProfileUpgradeParameter
配置文件升級所需的參數。 若要建構,請參閱 PROFILEUPGRADEPARAMETER 屬性的 NOTES 區段並建立哈希表。
類型: | IProfileUpgradeParameters |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-ResourceGroupName
Azure 訂用帳戶內的資源組名。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-SubscriptionId
Azure 訂用帳戶標識碼。
類型: | String |
Position: | Named |
預設值: | (Get-AzContext).Subscription.Id |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-WhatIf
顯示 Cmdlet 執行時會發生什麼事。 Cmdlet 未執行。
類型: | SwitchParameter |
別名: | wi |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |