Azure Cloud Shellにて以下コマンドを実行すると、Application Gatewayを停止することができます。
$AppGw = Get-AzApplicationGateway -Name “アプリケーションゲートウェイ名” -ResourceGroupName “リソースグループ名“
Stop-AzApplicationGateway -ApplicationGateway $AppGw
コマンド実行後にApplication Gatewayのプロパティを確認すると、動作状態が「停止済み」になっています。


(←参考になった場合はハートマークを押して評価お願いします)