すべてのPowerShellのgurusを呼び出してください!AzureRMモジュールを使用中にPowerShellエラー - HTTPステータスコード:NotFound
Get-AzureRmDataFactoryV2ActivityRun
コマンドレットをazurerm
PowerShellモジュールで使用しようとしています。
私は、クエリを試み、それは言う:
Get-AzureRmDataFactoryV2ActivityRun : HTTP Status Code: NotFound Error Code: NotFound Error Message: Operation returned an invalid status code 'NotFound' Request Id: aea5f9c5-fced-4b03-929f-e071eaeb0d9e Timestamp (Utc):10/25/2017 19:56:43 At line:1 char:1 + Get-AzureRmDataFactoryV2ActivityRun -DataFactoryName nwmovdatafactory ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : CloseError: (:) [Get-AzureRmDataFactoryV2ActivityRun], ErrorResponseException + FullyQualifiedErrorId : Microsoft.Azure.Commands.DataFactoryV2.GetAzureDataFactoryActivityRunCommand
私がしようとすると、このコマンドレットの以前の実装を使用する場合は、Get-AzureRmDataFactoryRun
それだけで正常に動作します。しかし、最初にSelect-AzureRMSubscription
を実行しないと、上記と同じエラーが発生します。
さらに、Get-AzureRMDataFactoryV2ActivityRun
を実行する前にSelect-AzureRMSubscription
を実行しても問題は解決しません。アクティブなサブスクリプションを設定する別の方法はありますか?または単に偽の解決策ですか?
EDIT:
Login-AzureRMAccount -SubscriptionID SUBID
Get-AzureRmDataFactoryRun -DataFactoryName DATAFACTORY -DatasetName DATASET -StartDateTime 2017-10-25T19:34:18+00:00 -ResourceGroupName RESGROUP
は動作します。
Login-AzureRMAccount -SubscriptionID SUBID
Get-AzureRmDataFactoryV2ActivityRun -DataFactoryName DATAFACTORY -ResourceGroupName RESGROUP -PipelineRunId PIPELINENAME -RunStartedAfter 2017-10-25T19:34:18+00:00 -RunStartedBefore 2017-10-26T19:34:18+00:00
動作しません。