While Stop integration runtime using powershell script command
i am getting error : Error Message: Operation returned an invalid status code 'MethodNotAllowed'
And While downgrade app service plan basic to free i am getting error as Conflict Command:
i want pause the integration runtime and downgrade the app service plan basic to free Integration type is : Azure I tried this command for pause the integration runtime:
Stop-AzDataFactoryV2IntegrationRuntime -ResourceGroupName 'rg-test-dfv2' -DataFactoryName 'test-df' -Name 'test-reserlved-ir'
for downgrade command:
Set-AzAppServicePlan -Name 'app-service-plan' -ResourceGroupName 'Resource-Group-Name' -Tier Free -WorkerSize Small
You can't start or stop the Aure IR or Self Hosted IR you can only stop Azure SSIS IR.
If you are trying
Stop-AzDataFactoryV2IntegrationRuntime
this PowerShell command on Aure IR or Self Hosted IR it will throw an error.The error you are facing because of
NumberofWorkers
are more than expected. to resolve it try below command.Output: